소스 정보
- 저장소
- fabioc-aloha/ChessCoach
- 최근 소스 활동
- 2026년 5월 5일 20:58
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/fabioc-aloha/ChessCoach --skill project-registration명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| type | skill |
| lifecycle | stable |
| inheritance | inheritable |
| name | project-registration |
| description | Register projects in the fleet registry and track cross-project patterns |
| tier | standard |
| applyTo | **/*registry*,**/*fleet*,**/*project-health* |
| currency | 2026-04-22T00:00:00.000Z |
Register and update project metadata in the AI-Memory project registry for fleet-wide visibility and cross-project pattern discovery.
Enable heirs to self-register in the centralized project registry, track successful patterns, document friction points, and promote reusable solutions to the fleet.
Heirs are active contributors to the shared knowledge base, not passive consumers:
| Resource | Heir Can | Example |
|---|---|---|
project-registry.json | Update own entry | Add patterns, friction, health |
insights/ | Create new files | GI-{topic}-{date}.md |
feedback/ | Create new files | Report friction to Master |
user-profile.json | Read only | Identity is centrally managed |
Contribution flow:
successfulPatternsAI-Memory/insights/AI-Memory/patterns/~/OneDrive - Correa Family/AI-Memory/project-registry.json
The registry syncs across all machines via OneDrive. Never create local copies.
{
"path": "C:\\Development\\ProjectName",
"name": "ProjectName",
"description": "Brief project description",
"lastAccessed": "2026-04-16T10:00:00.000Z",
"status": "active|maintenance|archived",
"technologies": ["nodejs", "typescript", "alex-brain"],
"brainVersion": "8.0.0",
"health": {
"skillCount": 0,
"instructionCount": 0,
"lastMeditation": null,
"meditationCount": 0
},
"successfulPatterns"
Heirs operate WITHOUT Master Alex. Each heir maintains its own registry entry using the update-registry.cjs muscle that syncs to the shared AI-Memory.
# First-time registration
node .github/muscles/update-registry.cjs --register
# Update health metrics (run after brain changes)
node .github/muscles/update-registry.cjs
# Record meditation completion
node .github/muscles/update-registry.cjs --meditated
# Add successful pattern
node .github/muscles/update-registry.cjs --pattern "webview-state"
# Document friction point
node .github/muscles/update-registry.cjs --friction "msal-token-refresh"
The muscle:
| Trigger | Action | Command |
|---|---|---|
| First session in project | Self-register | --register |
| After meditation | Record completion | --meditated |
| Solved problem elegantly | Document pattern | --pattern "name" |
| Recurring issue | Document friction | --friction "issue" |
| Brain updated | Refresh health | (no args) |
When Master Alex scans the fleet:
# Master Alex scanner muscle:
node scripts/scan-projects.cjs
For manual registration:
When you solve a problem elegantly and it could help other projects:
{
"successfulPatterns": [
"webview-state-management",
"atomic-file-writes",
"tmdl-parsing"
]
}
Pattern names should be:
When encountering recurring issues:
{
"frictionPoints": [
"msal-token-refresh-race-condition",
"webpack-5-esm-compatibility"
]
}
Before solving a problem from scratch, check if another project already solved it:
// Query pattern
const registry = JSON.parse(fs.readFileSync(registryPath));
const solutions = registry.projects.filter(p =>
p.successfulPatterns.includes('your-problem-domain')
);
When a pattern proves valuable and should become a Master Alex capability:
promotedPatterns arrayAfter meditation or brain-qa runs:
{
"health": {
"skillCount": 176,
"instructionCount": 136,
"lastMeditation": "2026-04-16T10:00:00Z",
"meditationCount": 15
}
}
const typescriptProjects = registry.projects.filter(p =>
p.technologies.includes('typescript') &&
p.status === 'active'
);
// Find who solved SSE streaming
const sseExperts = registry.projects.filter(p =>
p.successfulPatterns.some(pat => pat.includes('sse'))
);
const needsMeditation = registry.projects.filter(p =>
p.status === 'active' &&
!p.health.lastMeditation
);
| Status | Criteria | Registry Update Frequency |
|---|---|---|
active | Modified in last 7 days | On every significant change |
maintenance | Modified in last 30 days | Weekly or on changes |
archived | Not modified in 30+ days | Rarely/never |
When an heir discovers a valuable pattern, contribute it to the shared knowledge base.
<!-- ~/AI-Memory/insights/GI-{topic}-{date}.md -->
---
project: project-name
date: 2026-04-17
category: backend|frontend|architecture|testing|devops
tags: [relevant, searchable, terms]
status: draft|validated
---
# Insight Title
## Context
What problem were you solving?
## Discovery
What pattern/solution did you find?
## Evidence
- Used in: [list files or scenarios]
- Reuse count: 3+
## Recommendation
How should other projects apply this?
After contributing an insight, update your registry entry:
// Mark that you contributed this pattern
myEntry.successfulPatterns.push('pattern-name');
Master Alex reviews AI-Memory/insights/ during meditation:
AI-Memory/patterns/GK-*.mdThe project registry powers:
master-wiki/architecture/MEMORY-SYSTEMS.md — Full memory architecture (master-only)