sdd-jc-methodology
v0.6.0
Published
Portable SDD JC methodology commands and skills for AI-assisted development.
Maintainers
Readme
JCSPECS
Supercharge Claude Code, OpenCode, and Google Antigravity with constitution-first spec intelligence
Durable product context · traceable requirements · governed releases · 100% local methodology files
Portable Claude Code, OpenCode, and Google Antigravity configuration for the SDD JC methodology.
SDD JC is a constitution-first, spec-driven methodology for AI-assisted development. It keeps product intent, UX direction, technical design, implementation tasks, tests, and validation evidence in repository documentation so humans and agents can work from the same durable context.
Docs
→ Documentation Hub: full JCSPECS documentation
→ Flow: constitution-to-archive lifecycle
→ Model Routing: capability-tier model selection per SDD phase (Claude Code + OpenCode)
→ Commands: slash command reference
→ Skills: packaged skill reference
→ CLI: sdd-jc install/update/list/doctor reference
→ OpenSpec Comparison: what JCSPECS borrows and how it differs
→ Release Checklist: controlled npm release process
Repository Structure
.claude/commands/— custom SDD command prompts.claude/skills/— required and preferred skills used by the methodology.claude/templates/— default Leader, Implementer, and Reviewer personas used by the multi-agent harness (deployed into project.agents/)docs/— human-facing documentation for the flow, CLI, commands, skills, and release processscripts/— helper scripts referenced by commands (e.g.gsc_verify.py).mcp.json.example— reference MCP server configuration (e.g.gsc)dotfiles/— environment snapshots for Neovim and tmux
Contents
.claude/commands/sdd-constitution.mdsdd-propose.mdsdd-specify.mdsdd-execute.mdsdd-test.mdsdd-validate.mdsdd-archive.mdsdd-seo.md
.claude/skills/angular-developerapi-design-principlesaws-serverlessbrainstormingerror-handling-patternsfrontend-designgsap-coregsap-frameworksgsap-performancegsap-pluginsgsap-reactgsap-scrolltriggergsap-timelinegsap-utilsnestjs-expertproduct-manager-toolkitreact-doctorshadcn-uistitch-designsystematic-debuggingtailwind-design-systemui-ux-pro-maxvercel-react-best-practices
.claude/templates/leader.mdimplementer.mdreviewer.md
docs/flow.mdcli.mdcommands/skills/openspec-comparison.md
Install
Install the methodology with the bundled CLI. The installer can target Claude, OpenCode, Google Antigravity, or multiple tools.
Prerequisites
- Node.js 18 or newer
pnpm,npm, or another Node package runner- Claude Code, OpenCode, and/or Google Antigravity installed, depending on where you want to use the methodology
Step 1: Choose The Target Tool
| Target | Use When | Default Install Path |
|---|---|---|
| Claude | You use Claude Code slash commands and Claude skills | ~/.claude |
| OpenCode | You use OpenCode commands and skills | ~/.config/opencode |
| Antigravity | You use Google Antigravity global workflows and skills | ~/.gemini |
| Both | You switch between Claude Code and OpenCode | Claude + OpenCode paths |
| All | You use Claude, OpenCode, and Google Antigravity | All three paths |
Step 2: Install With pnpm dlx
Install for Claude:
pnpm dlx sdd-jc-methodology install --tool claudeInstall for OpenCode:
pnpm dlx sdd-jc-methodology install --tool opencodeInstall for Antigravity:
pnpm dlx sdd-jc-methodology install --tool antigravityInstall for both Claude and OpenCode:
pnpm dlx sdd-jc-methodology install --tool bothInstall for all three:
pnpm dlx sdd-jc-methodology install --tool allClaude is the default, so this is equivalent to --tool claude:
pnpm dlx sdd-jc-methodology installStep 3: Verify The Installation
Check Claude installation:
pnpm dlx sdd-jc-methodology doctor --tool claudeCheck OpenCode installation:
pnpm dlx sdd-jc-methodology doctor --tool opencodeCheck Antigravity installation:
pnpm dlx sdd-jc-methodology doctor --tool antigravityCheck all:
pnpm dlx sdd-jc-methodology doctor --tool allExpected result: every command, skill, and helper resource shows OK.
Step 4: Restart Your Tool
Restart Claude Code, OpenCode, or Antigravity after installation. Running sessions may not pick up new commands or skills until the tool restarts.
Step 5: Confirm Commands Are Available
In your tool of choice, confirm JCSPECS commands are available (either as slash commands or workflows):
/sdd-constitution
/sdd-propose
/sdd-specify
/sdd-execute
/sdd-test
/sdd-validate
/sdd-archive
/sdd-seoThen start a project with:
/sdd-constitutionOr, if the project already has a strong baseline:
/sdd-propose add-my-featureLocal Checkout Install
If you are installing from this repository before publishing to npm, run:
node bin/sdd-jc.js install
node bin/sdd-jc.js install --tool opencode
node bin/sdd-jc.js install --tool bothVerify local checkout install:
node bin/sdd-jc.js doctor --tool bothGlobal Install
If you prefer a persistent global CLI:
pnpm add -g sdd-jc-methodology
sdd-jc install
sdd-jc install --tool opencode
sdd-jc doctor --tool opencodeInstall Paths
Default targets:
Claude: ~/.claude
OpenCode: ~/.config/opencodeFor Claude, the installer writes:
~/.claude/commands/
~/.claude/skills/
~/.claude/sdd-jc/scripts/
~/.claude/sdd-jc/templates/ (leader, implementer, reviewer personas used by /sdd-constitution)
~/.claude/sdd-jc/.mcp.json.exampleFor OpenCode, the installer writes:
~/.config/opencode/commands/
~/.config/opencode/skills/
~/.config/opencode/sdd-jc/scripts/
~/.config/opencode/sdd-jc/templates/
~/.config/opencode/sdd-jc/.mcp.json.exampleOpenCode loads global command markdown files from ~/.config/opencode/commands/ and skills from ~/.config/opencode/skills/. Restart OpenCode after install or update so it loads the new files.
Updating
Update Claude:
pnpm dlx sdd-jc-methodology update --tool claude --forceUpdate OpenCode:
pnpm dlx sdd-jc-methodology update --tool opencode --forceUpdate both:
pnpm dlx sdd-jc-methodology update --tool both --forceUse --force when you want packaged files to replace older installed files. Without --force, existing files are skipped.
Releasing Package Updates
Repository changes do not update the published npm package automatically. Every published package update must have a new version.
Release policy:
- Commit repository changes separately from release version changes.
- Add
CHANGELOG.mdnotes before preparing a release. - Use
npm run release:statusto detect drift between local release files, npm, tags, and GitHub Releases. - The
Release StatusGitHub Actions workflow runs the same drift check on pushes, pull requests, and manual dispatches. - Publish only from a clean working tree after verification passes.
- Confirm npm authentication before publishing.
- Do not claim npm is updated until publish and smoke tests succeed.
- If publish fails, fix the blocker and retry the same unpublished version.
Use semantic versioning:
| Bump | Use For | Example |
|---|---|---|
| Patch | Documentation fixes, small command clarifications, installer fixes | 0.2.0 to 0.2.1 |
| Minor | New commands, new install targets, meaningful workflow additions | 0.2.0 to 0.3.0 |
| Major | Breaking command behavior or package install changes | 0.2.0 to 1.0.0 |
Controlled release flow:
- Make repo changes.
- Add notes under
CHANGELOG.md>Unreleased. - Commit the changes.
- Prepare the next version:
npm run release:patchOr use release:minor / release:major when appropriate.
The release script updates package.json, moves the Unreleased changelog notes into a dated version section, and creates releases/vX.Y.Z.md.
Then verify and publish:
npm run verify:cli
npm run pack:dry-run
npm run release:status
git diff --check
git add package.json CHANGELOG.md releases/vX.Y.Z.md
git commit -m "chore(release): vX.Y.Z"
git tag vX.Y.Z
npm whoami --registry=https://registry.npmjs.org/
npm publish --access public --registry=https://registry.npmjs.org/After publish, smoke test:
pnpm dlx [email protected] list
pnpm dlx [email protected] install --tool both --dry-run
npm view sdd-jc-methodology version --registry=https://registry.npmjs.org/
npm run release:statusCLI Commands
See the full CLI Reference for options, install paths, examples, safety rules, and troubleshooting.
| Command | Purpose |
|---|---|
| sdd-jc install | Install commands, skills, and helper resources |
| sdd-jc update | Reinstall packaged commands, skills, and helper resources |
| sdd-jc list | Show packaged commands, skills, and helper resources |
| sdd-jc doctor | Check whether expected files are installed |
Useful options:
sdd-jc install --dry-run
sdd-jc install --tool claude --target ./.claude
sdd-jc install --tool opencode --target ./.config/opencode
sdd-jc install --tool both --claude-target ./.claude --opencode-target ./.config/opencode
sdd-jc update --force
sdd-jc update --tool both --force
sdd-jc doctor --commands-only
sdd-jc doctor --tool opencode --skills-onlyInstaller safety rules:
- existing files are skipped by default
- use
--forceto overwrite existing files - use
--dry-runto preview changes - use
--tool claude,--tool opencode, or--tool bothto choose the destination - use
--target <path>to install a single selected tool somewhere custom - use
--claude-target <path>and--opencode-target <path>with--tool both
The helper resources under the target sdd-jc/ folder support commands such as /sdd-seo, including the bundled Google Search Console verification helper.
Troubleshooting
If commands do not appear:
- run
sdd-jc doctor --tool <claude|opencode|both> - restart Claude Code or OpenCode
- confirm you installed into the expected target path
- rerun install with
--forceif old files should be replaced
If you want to preview installation without writing files:
sdd-jc install --tool both --dry-runManual Install
If you do not want to use the CLI, copy the repository .claude/commands and .claude/skills folders into your tool configuration location.
Typical global install target:
~/.claude/commands/~/.claude/skills/
Typical OpenCode global install target:
~/.config/opencode/commands/~/.config/opencode/skills/
Example:
cp -R .claude/commands/* ~/.claude/commands/
cp -R .claude/skills/* ~/.claude/skills/Manual OpenCode example:
mkdir -p ~/.config/opencode/commands ~/.config/opencode/skills
cp -R .claude/commands/* ~/.config/opencode/commands/
cp -R .claude/skills/* ~/.config/opencode/skills/Dotfiles
The repository also includes editor and terminal configuration snapshots under dotfiles/:
dotfiles/.config/nvim/dotfiles/.tmux/dotfiles/.tmux.conf
These are stored as portable references or backup material for the environment used with this methodology.
Restore Neovim
mkdir -p ~/.config
cp -R dotfiles/.config/nvim ~/.config/Restore tmux
cp dotfiles/.tmux.conf ~/.tmux.conf
cp -R dotfiles/.tmux ~/.tmuxIf you prefer a lighter restore, keep ~/.tmux.conf and reinstall plugins separately instead of copying the full plugin snapshot.
Start Here
See the full Flow documentation for artifacts, review gates, project modes, and spec folder shape.
Use this flow for normal feature work:
/sdd-constitution- create or strengthen the project baseline./sdd-propose <change-name-or-spec-path>- capture intent, scope, and reviewable direction./sdd-specify <spec-path>- define one feature, module, bugfix, or enhancement./sdd-execute <spec-path>- implement the next approved task./sdd-test <spec-path>- prove the behavior with tests and traceability./sdd-validate <spec-path>- audit conformance before calling the work done./sdd-archive <spec-path>- preserve completed work and remove it from active specs.
Run /sdd-constitution first in a new repository, after a major product pivot, or when the baseline docs are missing. For an established repository with a good baseline, start at /sdd-propose <change-name> or /sdd-specify <spec-path>.
/sdd-constitution classifies the repository into one of three project modes:
- Brand-new (Seed Setup): little or no code or durable docs. Creates the baseline from user intent, chosen stack, assumptions, and open questions, and copies default
.agents/personas verbatim. - Legacy (Discovery Setup): real code exists but the SDD baseline does not. Inspects code, docs, architecture, tests, package manifests, and routes before drafting baseline docs, and customizes
.agents/personas to the detected stack and design tokens. - Active SDD (Safe Update): the SDD baseline and possibly customized
.agents/already exist. Upgrades weak sections, fills missing files, and extends.agents/non-destructively — never overwrites custom persona rules.
For all three modes, /sdd-constitution creates or enhances root CLAUDE.md and root AGENTS.md so Claude Code, OpenCode, and Google Antigravity receive the same project guidance.
For existing projects, CodeGraph is an optional acceleration path. If .codegraph/ exists, agents should use it for semantic code exploration, symbol lookup, callers/callees, and impact checks. If .codegraph/ is missing and the codegraph CLI is available, the agent should ask whether to run codegraph init -i. If CodeGraph is unavailable or declined, the methodology continues with normal Glob, Grep, and file reads.
Use /sdd-propose when the change needs review before full specification. For very small, obvious work, you may start directly with /sdd-specify <spec-path>.
Command Map
See the full Command Reference for detailed pages per command.
| Command | Use When | Main Output |
|---|---|---|
| /sdd-constitution | Starting a repo or repairing weak project context | docs/prd.md, system design, detailed design, general spec templates, CLAUDE.md, AGENTS.md guidance |
| /sdd-propose <change-name-or-spec-path> | Aligning on intent before full specification | proposal.md under docs/specs/<spec-path>/ |
| /sdd-specify <spec-path> | Planning one bounded change before code | requirements.md, design.md, tasks.md under docs/specs/<spec-path>/ |
| /sdd-execute <spec-path> | Implementing approved tasks via the Leader → Implementer → Reviewer harness | Code changes, updated tasks.md, execution.md with full PASS/FAIL audit trail |
| /sdd-test <spec-path> | Adding or running test evidence | test-report.md with requirement-to-test traceability |
| /sdd-validate <spec-path> | Checking implementation against the spec | validation-report.md with pass, warning, failure, and remediation items |
| /sdd-archive <spec-path> | Closing completed work after validation | Archived spec folder under docs/specs/archive/ with archive-summary.md |
| /sdd-seo <site-domain> | Auditing deployed SEO and Search Console state | seo-setup-report.md, seo-audit-report.md |
How To Choose The Right Depth
Use the lightest documentation that still makes the work clear and verifiable.
| Work Type | Recommended Depth | What To Capture | |---|---|---| | Small bugfix or UI tweak | Lite | Problem, affected requirement, scenario, focused task, verification command | | Normal feature | Standard | Requirements, scenarios, design decisions, task breakdown, tests | | High-risk change | Full | Business context, alternatives, data/API contracts, rollout, risks, observability, rollback | | Cross-cutting architecture | Full plus constitution review | Updates to project baseline docs and affected specs |
Lite mode does not skip rigor. It keeps the documents short, but every requirement still needs a testable scenario and every task still needs a done criterion.
Core Concepts
| Concept | Meaning |
|---|---|
| Constitution | Project-wide context that should not be rediscovered every session |
| Proposal | A lightweight review document for intent, scope, options, and risks |
| Spec path | A folder under docs/specs/ for one bounded piece of work |
| Requirement | A testable statement of expected behavior |
| Scenario | A concrete Given/When/Then example that proves a requirement |
| Design | The technical and UX approach for satisfying requirements |
| Task | A small executable unit linked to requirements and design sections |
| Report | Evidence that the implementation was tested and validated |
| Archive | Completed SDD history moved under docs/specs/archive/ |
Spec Folder Shape
Each feature or change should live in one folder:
docs/specs/<spec-path>/
├── proposal.md # created by /sdd-propose, optional but recommended
├── requirements.md
├── design.md
├── tasks.md
├── execution.md # created by /sdd-execute
├── test-report.md # created by /sdd-test
├── validation-report.md # created by /sdd-validate
└── archive-summary.md # created by /sdd-archive before movingChoose paths that describe the domain and intent:
docs/specs/loan/
docs/specs/enhancements/renewals/
docs/specs/admin/user-management/
docs/specs/bugfix/login-redirect/
docs/specs/changes/add-remember-me/When /sdd-propose add-remember-me receives a bare change name, it defaults to docs/specs/changes/add-remember-me/. When it receives a nested path such as bugfix/login-redirect, it uses that path directly.
Requirement Delta Preview
Proposals can include a lightweight delta preview. This makes reviews faster for brownfield work:
## Requirement Delta Preview
### ADDED Requirements
- The system SHALL allow users to opt into extended sessions.
### MODIFIED Requirements
- Session expiration changes from a fixed timeout to configurable timeout policies.
### REMOVED Requirements
- Legacy session persistence behavior is removed after migration.During /sdd-specify, these previews become full requirements, scenarios, design decisions, and tasks.
Writing Good Requirements
Write requirements as behavior contracts, not implementation plans.
Use this shape when possible:
### Requirement: Session Expiration
The system SHALL expire inactive user sessions after the configured timeout.
#### Scenario: Idle timeout
- GIVEN an authenticated user has an active session
- WHEN the session remains inactive past the configured timeout
- THEN the system invalidates the session
- AND the user must authenticate again before accessing protected pagesGood requirements are:
- observable by a user, system, API client, or operator
- measurable enough to test
- independent from internal class names or library choices
- linked to at least one implementation task
- covered by test evidence or an explicit accepted gap
Review Points
Before implementation, review:
- whether the problem and scope are clear
- whether every requirement has at least one scenario
- whether design decisions explain trade-offs instead of only listing files
- whether tasks are small enough to execute independently
- whether every task has verification criteria
Before completion, review:
- whether all intended tasks are complete
- whether tests cover the key scenarios
- whether validation found unresolved failures
- whether the spec should be updated based on implementation discoveries
Practical Example
For a new admin user-management feature:
/sdd-constitution
/sdd-propose admin/user-management
/sdd-specify admin/user-management
/sdd-execute admin/user-management
/sdd-test admin/user-management
/sdd-validate admin/user-management
/sdd-archive admin/user-managementFor a small login redirect bugfix in an established repo:
/sdd-specify bugfix/login-redirect
/sdd-execute bugfix/login-redirect
/sdd-test bugfix/login-redirect
/sdd-validate bugfix/login-redirect
/sdd-archive bugfix/login-redirectFor a reviewable named change using the default changes/ path:
/sdd-propose add-remember-me
/sdd-specify changes/add-remember-me
/sdd-execute changes/add-remember-me
/sdd-test changes/add-remember-me
/sdd-validate changes/add-remember-me
/sdd-archive changes/add-remember-mePlanned Improvements Inspired By OpenSpec
OpenSpec has useful ideas that fit this methodology well. Some are now supported through /sdd-propose and /sdd-archive. Remaining planned improvements:
See OpenSpec Comparison for the current JCSPECS comparison and documentation-pattern notes.
- automated sync lifecycle for completed specs
- schema-style workflow templates for feature, bugfix, migration, SEO, and research-first work
- broader command portability beyond Claude-specific command files
Auxiliary commands
/sdd-seo <site-domain>— SEO setup & audit via Google Search Console. Verifies a domain through DNS TXT using a service account, adds the property to GSC, then audits index coverage, sitemaps, structured data, search analytics, server-side render, and internal linking. Producesseo-setup-report.mdandseo-audit-report.mdunderdocs/specs/seo/<domain>/, including a copy-paste implementation prompt for fixing every High-severity finding.Dependencies bundled with this repo:
scripts/gsc_verify.py— Site Verification API helper (token + verify), because thegscMCP only wraps Search Console, not Site Verification..mcp.json.example— reference MCP server entry for@mikusnuz/gsc-mcp.
Setup once per environment:
- Enable Site Verification API and Search Console API in your Google Cloud project.
- Create a service account, download its JSON key, store outside the repo.
- Install Python deps:
pip install google-auth google-api-python-client. - Copy the
gscblock from.mcp.json.exampleinto your global~/.claude.json(or a project.mcp.json) and setGSC_SERVICE_ACCOUNT_KEY_PATHto the absolute path of the key.
Spec Paths
Commands accept a relative path under docs/specs/, not only a flat module name.
Examples:
loanenhancements/renewalsadmin/user-management
Dependencies
Included skills cover the default methodology path, including ui-ux-pro-max.
Fallback rule:
- when
ui-ux-pro-maxis unavailable, usefrontend-design+stitch-designfor system-design work andfrontend-designfor UI validation/testing support.
Methodology Contract
/sdd-constitutionestablishes the project baseline docs anddocs/specs/general-setup/templates, and scaffolds the project.agents/harness (Leader, Implementer, Reviewer)./sdd-proposecreates a lightweight proposal before full specification./sdd-specifymust follow those templates when generating module specs./sdd-executeorchestrates a Leader → Implementer → Reviewer rework loop (max 3 retries) to implement tasks from an approved spec path./sdd-testvalidates requirement-to-test traceability./sdd-validateaudits implementation conformance against the spec and constitutional baseline./sdd-archivepreserves completed specs underdocs/specs/archive/after validation./sdd-seooperates outside the main spec lifecycle: it provisions Google Search Console ownership for a domain and produces a standalone SEO audit underdocs/specs/seo/<domain>/. Run it any time after deployment; rerun after major content or schema changes.
Multi-Agent Harness Engineering
/sdd-execute is not a single-agent script. It is a coordinated triad of specialized roles that share the same spec, the same constitution, and the same audit trail. The harness exists to remove confirmation bias from review (an independent auditor instead of the same agent that wrote the code), to keep each role's context window small and focused, and to enforce design-token and constitutional discipline through a hard PASS/FAIL gate.
Roles live in the project's .agents/ directory (scaffolded by /sdd-constitution):
| Role | File | Responsibilities |
|---|---|---|
| Leader | .agents/leader.md | Orchestration. Picks the next eligible task, delegates, enforces the rework loop, updates tasks.md and execution.md, commits with [SPEC:<spec-path>]. |
| Implementer | .agents/implementer.md | Writes and tests the code. Strictly task-scoped, must follow design tokens from docs/system-design/design.md, must run the verification command before reporting. |
| Reviewer | .agents/reviewer.md | Read-only spec audit. Compares the diff against requirements, design tokens, detailed-design, and stability. Outputs a structured PASS or FAIL with Discovered Issue, Violated Rule, and Remediation Suggestion for each finding. |
The Leader runs each task through this loop:
Leader picks the next task → spawns Implementer with task + persona
Implementer writes code and runs verification → reports back
Leader extracts git diff → spawns Reviewer with diff + persona
Reviewer emits STATUS: PASS or STATUS: FAIL
if PASS → update tasks.md, append execution.md, commit, advance
if FAIL → log feedback; if attempts < 3, respawn Implementer with the Reviewer's findings
if 3 consecutive FAILs → HALT, mark task [~], present full audit trail for human guidanceGuardrails:
- Maximum retries. A hard ceiling of 3 rework attempts per task prevents infinite loops and token waste.
- Structured feedback. The Reviewer's report is passed back unchanged to the next Implementer spawn — no paraphrasing.
- Pivot protocol. If discovery proves the spec itself is wrong (not the implementation), the loop stops immediately and a
## Pivot Recordis opened inexecution.mdfor user sign-off — rework retries are not consumed on a broken spec. - Cross-tool.
.agents/is pure Markdown + YAML frontmatter and is resolved relative to the active workspace, so the same harness runs under Claude Code, OpenCode, and Google Antigravity (the latter invokesinvoke_subagentusing the same persona files).
/sdd-constitution classifies the repository into one of three modes and seeds .agents/ accordingly:
| Mode | When | .agents/ Behavior |
|---|---|---|
| Brand-new | No code, no docs | Copies the default Leader/Implementer/Reviewer templates verbatim |
| Legacy | Real code, no SDD baseline | Copies defaults and customizes them with detected stack, design tokens, lint and test commands |
| Active SDD | Baseline already exists | Preserves customized .agents/ files in place and only upgrades or fills gaps non-destructively |
Capability-Tier Model Routing
Not every model is best at every job. JCSPECS routes each SDD phase to the model matched to its dominant demand using six capability tiers — Architect, Coder, Auditor, Context-Ingest, Fast-Cheap, and Multimodal. A single editable registry binds each tier to a concrete model per tool, so model upgrades are a one-line edit rather than a rewrite.
This is guidance-first and model-agnostic: no model: frontmatter is added to commands and the
installer injects nothing. You switch models yourself (Claude Code /model, OpenCode model
selector), and /sdd-constitution scaffolds a ## Model Routing registry into each project's
AGENTS.md / CLAUDE.md.
Key principles: ARCHITECT = BUILDER (the model that designs also builds), author ≠ auditor
(the Reviewer runs on a different model than the Implementer), reserve deep-reasoning models for
/sdd-propose and /sdd-validate, and use fast/cheap models for the tasks split and /sdd-archive.
See docs/model-routing.md for the tiers, the full phase→tier mapping, and the default registry for Claude Code (PRO) and OpenCode Go.
Host Assumptions
- The host Claude environment can ask follow-up questions to the user during command execution.
- The host environment can load local skills referenced by the commands.
- Repository-specific build, lint, and test commands should be preferred over hardcoded stack assumptions.
Notes
- Commands were sourced from the current global Claude command setup.
- Skills were copied with their bundled references and helper assets.
- This repository stores the current methodology baseline so it can be reused or versioned independently.
- Dotfiles are snapshots of the working environment and may include plugin source copies for portability.
