adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Project initialization inventory (one-time). Use when: first onboarding a project, rebuilding cache after structural changes. Not for: day-to-day development (read cache directly), finding specific files (use code-explore). Output: project map with entrypoints + test map + next
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill repo-intake --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/repo-intakeContext preview
The summary Claude sees to decide when to auto-load this skill.
Project initialization inventory (one-time). Use when: first onboarding a project, rebuilding cache after structural changes. Not for: day-to-day development (read cache directly), finding specific files (use code-explore). Output: project map with entrypoints + test map + next
name: repo-intake description: "Project initialization inventory (one-time). Use when: first onboarding a project, rebuilding cache after structural changes. Not for: day-to-day development (read cache directly), finding specific files (use code-explore). Output: project map with entrypoints + test map + next steps." allowed-tools: Bash(git:*), Bash(node:*), Read, Write, Grep, Glob context: fork agent: Explore disable-model-invocation: true
Docs -> Entrypoints -> Tests Map -> Next Steps
bash scripts/run-skill.sh repo-intake intake_cached.js --mode auto --top 10
Monorepo / multi-package repo 的 workspace 拓撲與**宣告**依賴圖。邊語義是 `declares_dependency`——manifest 裡寫了什麼,不證明 import、呼叫或 runtime 影響。 一律 fail-closed:整份檔案無法讀取/UTF-8 解碼、或 JSON document 無法解析則記 coverage `skipped`;已進入 Go/TOML recognizer 的相關不支援 construct 則記 `partial`。絕不產生猜測邊。
bash scripts/run-skill.sh repo-intake manifest_map.js # overview (md) bash scripts/run-skill.sh repo-intake manifest_map.js --format json # 完整 envelope bash scripts/run-skill.sh repo-intake manifest_map.js --reverse <selector> # 誰宣告依賴它 bash scripts/run-skill.sh repo-intake manifest_map.js --cycles # 宣告環偵測
| Flag | 說明 | |------|------| | `--format md\|json` | 預設 `md`;json 為完整 artifact,不受 `--top` 截斷 | | `--top N` | md 清單截斷(預設 12) | | `--reverse <sel>` | selector:節點 ID(`ws:node:packages/a`)或名稱(`node:lodash` / `lodash`);多重匹配 exit 2 並列出候選 | | `--cycles` | 與 `--reverse` 互斥 | | `--include-candidates` | 把未經 controller 確認的 candidate workspace 納入架構節點集(預設排除) |
生態系:node / php / go / rust / python(辨識 manifest 見 `scripts/config/repo-intake.json` 的 `manifest_map` 段)。無效參數 exit 2。 資料模型、解析矩陣與凍結語法契約:`references/manifest-map.md`;完整規格: `docs/features/repo-intake-manifest-map/2-tech-spec.md`。
Cache stored at: `~/.claude/cache/repo-intake/<repoKey>/`
| File | Description | | ------------- | ----------------------- | | `latest.md` | Latest scan results | | `latest.json` | Latest scan results (JSON) | | `LATEST.json` | Cache metadata |
## Overview
<summary>
## Entrypoints
- {CONFIG_FILE}
- {BOOTSTRAP_FILE}
## Test Map
| Type | Pattern |
| ----------- | ----------------- |
| Unit | test/unit/ |
| Integration | test/integration/ |
| E2E | test/e2e/ |
## Next Steps
- <questions>| Script | Purpose | |--------|---------| | `scripts/intake_cached.js` | Main intake with caching | | `scripts/scan_repo.js` | Full repo scanner (framework-agnostic) | | `scripts/scan_delta.js` | Delta scan for changed files | | `scripts/manifest_map.js` | Workspace 拓撲 + 宣告依賴圖(overview / reverse / cycles) |
Input: /repo-intake Action: Execute intake script -> Output project map
Input: /repo-intake save Action: Execute intake script -> Output and write to docs/ai/intake/
Language: English | 繁體中文 | 简体中文 | 日本語 | 한국어 | Español The harness layer for Claude Code. Let the model choose the path. Keep "done" verifiable. Full control plane on Claude Code. Skills-only distribution for Codex CLI and other compatible agents.
Repo: sd0xdev/sd0x-dev-flow
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Architecture design and documentation. Produces 3-architecture.md with component diagrams, data flow, integration points, and architecture decisions. Reads…
Context-aware Q&A with auto context gathering. Use when: user has a quick question about codebase, git history, rules, docs, or skills during development. Not…
Industry best practices conformance audit with mandatory adversarial debate. Produces audit artifact: verdict (OK/WARN/FAIL) + gap roadmap + debate proof. Use…
Bug fix workflow. Use when: fixing bugs, resolving issues, regression fixes. Not for: new features (use feature-dev), understanding code (use code-explore).…
Bump package and plugin version in sync. Updates package.json, .claude-plugin/plugin.json, and install-state manifest to the same version. Use when: user says…