ワンクリックで
global-knowledge-sync
Synchronize insights between local projects and the Alex Global Knowledge repository
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Synchronize insights between local projects and the Alex Global Knowledge repository
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Defense-in-depth, PII protection, secrets scanning, and secure packaging for distributed software
Systematic testing for confidence without over-testing — the right test at the right level
Generate consistent visual character references across multiple scenarios using Flux and nano-banana-pro on Replicate
Create professional ultra-wide cinematic banners for GitHub READMEs using Flux and Ideogram models with typography options
Generate professional presentations using the Gamma API with expert storytelling consulting based on Duarte methodology.
Intelligent project persona identification using priority chain detection with LLM and heuristic fallback
| name | Global Knowledge Sync |
| description | Synchronize insights between local projects and the Alex Global Knowledge repository |
Manages bidirectional synchronization between local project knowledge and the centralized Alex Global Knowledge repository.
If you don't have a Global Knowledge repository yet, create one:
cd C:\Development # or your projects folder
gh repo create My-Global-Knowledge --private --description "Alex Global Knowledge Base" --clone
cd My-Global-Knowledge
My-Global-KnowledgeAfter creating the repo, initialize the structure:
# Create folders
mkdir patterns, insights, skills
# Create index.json
@'
{
"version": "1.0.0",
"lastUpdated": "$(Get-Date -Format 'yyyy-MM-ddTHH:mm:ssZ')",
"entries": []
}
'@ | Out-File -FilePath index.json -Encoding utf8
# Create README
@'
# My Global Knowledge Base
Cross-project learnings for Alex Cognitive Architecture.
## Structure
- `patterns/` - Reusable solutions (GK-*.md)
- `insights/` - Timestamped learnings (GI-*.md)
- `skills/` - Skill registry for pull-sync
- `index.json` - Master search index
## Usage
- `/knowledge <query>` - Search knowledge
- `/saveinsight` - Save a learning
- `/promote` - Make local knowledge global
'@ | Out-File -FilePath README.md -Encoding utf8
# Commit
git add -A
git commit -m "feat: initialize global knowledge structure"
git push
Default: The GK repo should be a sibling folder to your project workspace:
C:\Development\YourProject\C:\Development\My-Global-Knowledge\Configuration: Set via globalKnowledgeRepo in .github/config/alex-settings.json
Note: All heirs inherit this skill — GK sync works in any Alex-enabled project.
Save a learning from the current project to global knowledge.
Trigger: /saveinsight, save this insight, promote to global
Process:
pattern (reusable) or insight (timestamped)GK-{slug}.md or GI-{slug}-{date}.mdindex.json with metadataFind relevant knowledge from past projects.
Trigger: /knowledge <query>, have I solved this before?
Process:
index.json for matching entries (title, tags, summary)Automated sync during dream/meditation cycles.
Trigger: Dream protocol, meditation consolidation
Process:
KNOWLEDGE-INDEX.md if entries changedPromote a project's skill file to global pattern.
Trigger: /promote, make this global
Process:
.github/skills/ or skillpatterns/ folderDiscover and pull new skills from the GK repository.
Trigger: /checkskills, session start (if auto-check enabled)
Process:
skills/skill-registry.json from GK/pullskill <id>Registry Structure (skills/skill-registry.json):
{
"version": "1.0.0",
"skills": [
{
"id": "skill-development",
"version": "1.0.0",
"inheritance": "inheritable",
"priority": "core",
"source": "master-alex"
}
],
"wishlist": [...],
"projectTypeMatching": {...}
}
Project-Skill Matching: Heirs detect project type and recommend relevant wishlist skills. See skill-development for full protocol.
Add to dream checklist:
- [ ] GK sync: Pull latest, check uncommitted, regenerate index
During consolidation, prompt:
When upgrading a project:
relatedProjects of used entries# Pattern Title
**ID**: GK-pattern-slug
**Category**: category-name
**Tags**: tag1, tag2, tag3
**Source**: Original project name
**Created**: 2026-02-06T12:00:00Z
---
## Description
What this pattern solves.
## Implementation
How to apply it.
## Examples
Code samples.
# Insight Title
**ID**: GI-insight-slug-2026-02-06
**Category**: category-name
**Tags**: tag1, tag2
**Source Project**: project-name
**Date**: 2026-02-06T12:00:00Z
---
## Context
What problem you were solving.
## Insight
What you learned.
## Applicability
When to use this again.
| Category | Use For |
|---|---|
architecture | System design, patterns, structure |
api-design | REST, GraphQL, API patterns |
debugging | Troubleshooting, diagnostics |
deployment | CI/CD, infrastructure, publishing |
documentation | Docs, diagrams, formatting |
error-handling | Exception handling, recovery |
patterns | Design patterns, reusable solutions |
performance | Optimization, profiling |
refactoring | Code improvement, cleanup |
security | Auth, encryption, vulnerabilities |
testing | Unit, integration, E2E |
tooling | Dev tools, configuration |
general | Everything else |