원클릭으로
neural-sync
Sync specs (CONTEXT.md, PLAN.md, /docs) with post-implementation code
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Sync specs (CONTEXT.md, PLAN.md, /docs) with post-implementation code
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implementation planning with optional adversarial cross-review (Claude Code ⇄ Codex). Tasks are sequential vertical slices, each carrying its own testable behaviors. Pass --visual to also render the plan as a self-contained HTML page (PLAN.html). Pass --skills <skills> to preload skills that shape the plan and that execute loads before coding
Execute all fixes from a REVIEW.md — address warnings, blocking issues, and gaps found during review
Test-driven execution loop — one task at a time, red→green→refactor, atomic commits
Plan vs implementation verification with goal-backward analysis and test-quality audit
Move completed features from wip to archive
Socratic interview that captures domain language, decisions, and ADRs inside .neural/wip/<feature>/
| name | neural-sync |
| description | Sync specs (CONTEXT.md, PLAN.md, /docs) with post-implementation code |
Specs drift after implementation — refactors, bug fixes, scope changes. This skill updates CONTEXT.md and PLAN.md to match what was actually built, so the artifacts remain useful.
Core principle: Code as source of truth. Specs conform to code, never the reverse.
$ARGUMENTS. If empty, scan .neural/wip/ and .neural/archive/. One match → use it. Multiple → ask the user.DIR=.neural/<wip|archive>/<feature>/.CONTEXT.md and PLAN.md from $DIR. Both must exist — abort if missing.The goal is a lightweight scan, not a full re-read of the codebase — just enough to know what diverged.
PLAN.md.git log --oneline -- <paths> to spot post-plan changes. Focus on commits after the plan was written (use PLAN.md's date or the earliest feature commit as baseline).For each task in the plan:
[removed: <one-line reason>].## Post-Plan Additions section, same format as existing tasks.Preserve the original structure (task order, dependencies, behaviors). Only touch content that diverged.
Surgical updates only — do not rewrite from scratch:
The context should read as if it was written with knowledge of what was actually built.
If REVIEW.md exists, delete it. A review based on stale specs is misleading — the user should run /neural:neural-review fresh after sync.
Neural Sync: <feature-name>
PLAN.md: X updated, Y added, Z removed
CONTEXT.md: N decisions updated, M scope changes
If in archive/: "This feature is archived. Synced specs serve as documentation."
If in wip/: "Specs synced. Run /neural:neural-review to verify, or /neural:neural-archive to close."