create-harness-vibe-coding 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README-CN.md +27 -15
- package/README.md +24 -9
- package/package.json +1 -1
- package/src/generator.js +1 -1
- package/src/index.js +1 -1
- package/src/prompts.js +1 -1
- package/templates/common/.harness-version +3 -3
- package/templates/common/SETUP.md +33 -20
- package/templates/optional/catalog.json +5 -5
package/README-CN.md
CHANGED
|
@@ -15,9 +15,11 @@ npx create-harness-vibe-coding@latest my-project
|
|
|
15
15
|
已有项目时,不要让 agent 猜。把这句话贴给它:
|
|
16
16
|
|
|
17
17
|
```text
|
|
18
|
-
|
|
18
|
+
请完整阅读并严格遵循 https://github.com/zingspark/create-harness-vibe-coding,为当前项目配置 create-harness-vibe-coding。
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
复杂规则不塞进这句话里。README 和生成后的 `Harness/SETUP.md` 才是安装、升级、合并和可选能力选择的准则。
|
|
22
|
+
|
|
21
23
|
## 你会得到什么
|
|
22
24
|
|
|
23
25
|
| 文件/能力 | 作用 |
|
|
@@ -25,8 +27,8 @@ npx create-harness-vibe-coding@latest my-project
|
|
|
25
27
|
| `CLAUDE.md` + `AGENTS.md` | 根目录 agent 入口 |
|
|
26
28
|
| `Harness/README.md` | Harness 路由器 |
|
|
27
29
|
| `Harness/tasks/` + `Harness/PROGRESS.md` | 跨会话任务状态 |
|
|
28
|
-
| `.claude/skills/` | Claude Code
|
|
29
|
-
| `.agents/skills/` | Codex
|
|
30
|
+
| `.claude/skills/` | Claude Code workflow skill 入口 |
|
|
31
|
+
| `.agents/skills/` | Codex repo skill 入口 |
|
|
30
32
|
| `.codex/` | Codex hooks/config |
|
|
31
33
|
| `/wf` / `$wf` | 长任务 workflow |
|
|
32
34
|
| `/wf-max` / `$wf-max` | 最大并行 workflow |
|
|
@@ -41,18 +43,18 @@ Claude Code 和 Codex 共用同一套核心 Harness 文档,但发现入口不
|
|
|
41
43
|
- Codex:`.agents/skills/<name>/SKILL.md`,通常用 `$wf` 或 `/skills` 调用。
|
|
42
44
|
- `.codex/` 只放 Codex 配置和 hooks;不要再使用根目录 `commands/*.toml` 伪装 Codex slash command。
|
|
43
45
|
|
|
44
|
-
##
|
|
46
|
+
## 安装或升级路径
|
|
45
47
|
|
|
46
|
-
|
|
47
|
-
npx create-harness-vibe-coding@latest my-project
|
|
48
|
-
cd my-project
|
|
49
|
-
```
|
|
48
|
+
写文件前,agent 必须先判断当前项目属于哪一种:
|
|
50
49
|
|
|
51
|
-
|
|
50
|
+
| 项目状态 | 必须怎么做 |
|
|
51
|
+
|---|---|
|
|
52
|
+
| 空项目或新项目 | 运行脚手架,然后遵循 `Harness/SETUP.md` 做 0-1 bootstrap |
|
|
53
|
+
| 已有项目,没有 `Harness/` | 先扫描项目事实,先 `--dry-run`,保留现有文件,只合并缺失的 Harness 指南 |
|
|
54
|
+
| 老项目或老架构迁移 | 现有代码和文档是事实来源,先 dry-run,再用 `Harness/SETUP.md` 从事实中补 PRD、研究、架构和任务计划 |
|
|
55
|
+
| 已经有 `Harness/` | 不要把 `npx` 当更新器;先问用户是运行 `/wf-update` / `$wf-update` / `node Harness/scripts/wf-update-check.mjs`,保持不动,还是批准后移除重装 |
|
|
52
56
|
|
|
53
|
-
|
|
54
|
-
读 Harness/SETUP.md。把这个项目从想法引导到第一个 vertical slice。
|
|
55
|
-
```
|
|
57
|
+
根目录扫描必须包括:顶层文件、`CLAUDE.md`、`AGENTS.md`、`.claude/`、`.agents/`、`.codex/`、`Harness/`、package 文件、CI 文件、应用入口、测试/构建命令、已有文档、已经安装的 skills/plugins/rules。推荐可选能力前,必须先排除已经安装的能力,避免重复推荐。
|
|
56
58
|
|
|
57
59
|
## 已有项目安全合并
|
|
58
60
|
|
|
@@ -90,7 +92,16 @@ npx create-harness-vibe-coding@latest my-app -y --recommend superpowers,codegrap
|
|
|
90
92
|
|
|
91
93
|
本地 workflow:`browser-e2e`、`ui-ux-review`、`ts-react-frontend`、`python-backend`、`github-pr-review`。
|
|
92
94
|
|
|
93
|
-
外部建议只写入 `Harness/SETUP.md
|
|
95
|
+
外部建议只写入 `Harness/SETUP.md`,不会自动安装第三方技能:
|
|
96
|
+
|
|
97
|
+
| 建议 | 用途 | 链接 |
|
|
98
|
+
|---|---|---|
|
|
99
|
+
| `superpowers` | 社区 skill registry 和 agent workflow | <https://github.com/obra/Superpowers> |
|
|
100
|
+
| `caveman` | 简洁低 token 的 agent 行为和记忆压缩 | <https://github.com/JuliusBrussee/caveman> |
|
|
101
|
+
| `agent-research` | 文献、产品、依赖和生态研究类 agent skills | <https://github.com/lingzhi227/agent-research-skills> |
|
|
102
|
+
| `codegraph` | 代码图谱或仓库地图工具 | <https://github.com/colbymchenry/codegraph> |
|
|
103
|
+
|
|
104
|
+
这些只是给用户 agent 自行评估的 GitHub 链接。脚手架不维护第三方安装步骤,只在确认项目尚未安装同类能力后记录用户选择。
|
|
94
105
|
|
|
95
106
|
不加 `-y` 时,CLI 会提供 checkbox/multiselect 选择。
|
|
96
107
|
|
|
@@ -102,13 +113,14 @@ Agent 必须先扫描根目录,再最多问 3 个阻塞问题。扫描要覆
|
|
|
102
113
|
- `.claude/`、`.agents/`、`.codex/`
|
|
103
114
|
- `Harness/`
|
|
104
115
|
- `README.md`
|
|
105
|
-
- package 文件、CI
|
|
116
|
+
- package 文件、CI 文件、已有文档目录、应用入口、测试/构建命令
|
|
117
|
+
- 已安装的 skills/plugins/rules
|
|
106
118
|
|
|
107
119
|
只在影响写入时提问:
|
|
108
120
|
|
|
109
121
|
- 已有 `CLAUDE.md` 或 `AGENTS.md`:合并缺失 Harness 指南、保持不动,还是跳过?
|
|
110
122
|
- 已有 `Harness/`:走 `/wf-update` / `$wf-update`、dry-run 补缺、保持不动,还是批准后移除重装?
|
|
111
|
-
-
|
|
123
|
+
- 排除已安装能力后,还要启用哪些本地 workflow,或只记录哪些外部 GitHub 推荐链接?
|
|
112
124
|
|
|
113
125
|
默认策略:保留已有文件,只补缺失内容。
|
|
114
126
|
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ npx create-harness-vibe-coding@latest my-project
|
|
|
21
21
|
Already have a project? **Don't read the docs**. Paste this sentence. Your agent handles the rest.
|
|
22
22
|
|
|
23
23
|
```text
|
|
24
|
-
|
|
24
|
+
Read and follow https://github.com/zingspark/create-harness-vibe-coding exactly to configure this project with create-harness-vibe-coding.
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
That's it. Two paths into the harness — you type `npx`, or your agent reads the sentence.
|
|
@@ -104,6 +104,19 @@ cd my-project
|
|
|
104
104
|
# Your agent reads Harness/SETUP.md. Done.
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
+
### Install or Upgrade Path
|
|
108
|
+
|
|
109
|
+
Before writing, the agent must identify which path applies:
|
|
110
|
+
|
|
111
|
+
| Project state | Required action |
|
|
112
|
+
|---------------|-----------------|
|
|
113
|
+
| Empty or new project | Run the scaffold, then follow `Harness/SETUP.md` for 0-1 bootstrap |
|
|
114
|
+
| Existing project, no `Harness/` | Scan project facts first, run `--dry-run`, preserve existing files, merge only missing Harness guidance |
|
|
115
|
+
| Legacy architecture or older project docs | Treat existing code/docs as source of truth, dry-run first, then use `Harness/SETUP.md` to fill facts from observed project reality |
|
|
116
|
+
| Existing `Harness/` | Do not use `npx` as an updater; ask whether to run `/wf-update`, `$wf-update`, `node Harness/scripts/wf-update-check.mjs`, keep untouched, or remove/reinstall after approval |
|
|
117
|
+
|
|
118
|
+
Root scan must include top-level files, `CLAUDE.md`, `AGENTS.md`, `.claude/`, `.agents/`, `.codex/`, `Harness/`, package files, CI files, app entry points, test/build commands, existing docs, and already-installed skills/plugins/rules. Use that scan before recommending optional capabilities so you do not suggest duplicates.
|
|
119
|
+
|
|
107
120
|
### Existing project — safe merge
|
|
108
121
|
|
|
109
122
|
```bash
|
|
@@ -148,24 +161,26 @@ npx create-harness-vibe-coding@latest my-app -y --recommend superpowers,codegrap
|
|
|
148
161
|
|
|
149
162
|
External recommendations are recorded in `Harness/SETUP.md` but not installed automatically:
|
|
150
163
|
|
|
151
|
-
| Recommendation | For |
|
|
152
|
-
|
|
153
|
-
| `superpowers` | Community skill registry and agent workflows |
|
|
154
|
-
| `caveman` |
|
|
155
|
-
| `agent-research` |
|
|
156
|
-
| `codegraph` | Code graph or repository-map tooling |
|
|
164
|
+
| Recommendation | For | Source |
|
|
165
|
+
|----------------|-----|--------|
|
|
166
|
+
| `superpowers` | Community skill registry and agent workflows | <https://github.com/obra/Superpowers> |
|
|
167
|
+
| `caveman` | Terse, low-token agent behavior and memory compression | <https://github.com/JuliusBrussee/caveman> |
|
|
168
|
+
| `agent-research` | Research-agent skills for literature, product, dependency, and ecosystem investigation | <https://github.com/lingzhi227/agent-research-skills> |
|
|
169
|
+
| `codegraph` | Code graph or repository-map tooling | <https://github.com/colbymchenry/codegraph> |
|
|
170
|
+
|
|
171
|
+
These are links for the user's agent to evaluate. The scaffold does not maintain third-party install steps; it only records selected recommendations after checking what is already installed.
|
|
157
172
|
|
|
158
173
|
### Agent-link intake
|
|
159
174
|
|
|
160
175
|
When your agent reads the one-sentence prompt above, it must first scan the project root, then ask **at most 3 blocking questions** before touching files.
|
|
161
176
|
|
|
162
|
-
Root scan checklist: list top-level files, detect `CLAUDE.md`, `AGENTS.md`, `.claude/`, `.agents/`, `.codex/`, `Harness/`, package files, CI files, docs folders,
|
|
177
|
+
Root scan checklist: list top-level files, detect `CLAUDE.md`, `AGENTS.md`, `.claude/`, `.agents/`, `.codex/`, `Harness/`, package files, CI files, docs folders, obvious app entry points, test/build commands, and installed skills/plugins/rules.
|
|
163
178
|
|
|
164
179
|
Ask these only when they affect writes:
|
|
165
180
|
|
|
166
181
|
- If `CLAUDE.md` or `AGENTS.md` already exists, should missing Harness guidance be merged, kept separate, or skipped?
|
|
167
182
|
- If `Harness/` already exists, should the agent run update/dry-run, merge missing files, keep it untouched, or remove/reinstall after approval?
|
|
168
|
-
- Which optional capabilities should be enabled: local workflows (`browser-e2e`, `ui-ux-review`, `ts-react-frontend`, `python-backend`, `github-pr-review`) and recommendation-only external
|
|
183
|
+
- Which optional capabilities should be enabled, after excluding capabilities already installed: local workflows (`browser-e2e`, `ui-ux-review`, `ts-react-frontend`, `python-backend`, `github-pr-review`) and recommendation-only external links (`Superpowers`, `Caveman`, `agent research`, `code graph`)?
|
|
169
184
|
|
|
170
185
|
Harness docs always live in root `Harness/`; do not route Harness files through `docs/`. If a file already exists, the agent asks first. The default is always **preserve**.
|
|
171
186
|
|
package/package.json
CHANGED
package/src/generator.js
CHANGED
|
@@ -377,7 +377,7 @@ function registerExternalRecommendations(file, content, selectedRecommendations)
|
|
|
377
377
|
if (!selectedRecommendations.length || file !== 'Harness/SETUP.md') return content;
|
|
378
378
|
|
|
379
379
|
const lines = selectedRecommendations.map(item => (
|
|
380
|
-
`- \`${item.id}\` - ${item.description} Recommendation only; not installed by this scaffold.
|
|
380
|
+
`- \`${item.id}\` - ${item.description} Recommendation only; not installed by this scaffold. Source: ${item.url}`
|
|
381
381
|
));
|
|
382
382
|
|
|
383
383
|
return `${content.trimEnd()}\n\n## Selected External Recommendations\n\n${lines.join('\n')}\n`;
|
package/src/index.js
CHANGED
|
@@ -377,7 +377,7 @@ function printOptions() {
|
|
|
377
377
|
console.log('');
|
|
378
378
|
console.log(pc.bold('External recommendations:'));
|
|
379
379
|
for (const item of catalog.externalRecommendations) {
|
|
380
|
-
console.log(` ${pc.cyan(item.id)} - ${item.description} (${item.installMode})
|
|
380
|
+
console.log(` ${pc.cyan(item.id)} - ${item.description} (${item.installMode}) ${item.url || ''}`.trimEnd());
|
|
381
381
|
}
|
|
382
382
|
}
|
|
383
383
|
console.log('');
|
package/src/prompts.js
CHANGED
|
@@ -73,7 +73,7 @@ export async function askOptionalSelections(catalog) {
|
|
|
73
73
|
const externalOptions = (catalog.externalRecommendations || []).map(item => ({
|
|
74
74
|
value: item.id,
|
|
75
75
|
label: item.title,
|
|
76
|
-
hint: `${item.description} Recommendation only.`,
|
|
76
|
+
hint: item.url ? `${item.description} ${item.url}` : `${item.description} Recommendation only.`,
|
|
77
77
|
}));
|
|
78
78
|
|
|
79
79
|
const selectedLocal = localOptions.length
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generator": "0.8.
|
|
3
|
-
"generated": "2026-07-
|
|
2
|
+
"generator": "0.8.1",
|
|
3
|
+
"generated": "2026-07-01T06:31:02.525Z",
|
|
4
4
|
"options": [],
|
|
5
5
|
"autoCheck": true,
|
|
6
6
|
"source": "https://raw.githubusercontent.com/zingspark/create-harness-vibe-coding/main/templates/common/",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"CLAUDE.md": "sha256-432bd4dc9bdf9958d79ae697f72d1c9723be23fb156d43889ede84e305ed5e70",
|
|
45
45
|
"Harness/MEMORY.md": "sha256-68b3e2b68880814bad11aa6d444d6b736848ac14c2a758ec3225c688a2c1882e",
|
|
46
46
|
"Harness/README.md": "sha256-6608f74400dbae1e73b838d6b74f02e73a0b0e54404e899628dde6ccfbf06cf4",
|
|
47
|
-
"Harness/SETUP.md": "sha256-
|
|
47
|
+
"Harness/SETUP.md": "sha256-e0fdd6a7751595f62f15d4374e1f201fcd0aa8b8ac44528a39cbf5b04db0e3bd",
|
|
48
48
|
"Harness/WF-MAX.md": "sha256-81c788ac56a0c1673a9e6bdf619efbcfa9c961ca7c5065c15b98760775f963a6",
|
|
49
49
|
"Harness/WF.md": "sha256-7cce2568444295cb387fa958cd4ef9711a19697b60ce9cba0e142484e0a165ae",
|
|
50
50
|
"Harness/agent-workflow.md": "sha256-1aff5e7dc1e082c559cb0a9086c4f93f6702905aff00ebb957300f463ea80b31",
|
|
@@ -44,18 +44,27 @@ Claude must follow this order:
|
|
|
44
44
|
10. Run `node Harness/scripts/validate-harness.mjs --strict`.
|
|
45
45
|
11. Record final verification and next feedback step in `Harness/tasks/<task-id>/PROGRESS.md`. If repeated tool failures, repeated user corrections, or reusable review/debug lessons appeared, record the concise reflection in the relevant `Harness/memory/` file.
|
|
46
46
|
|
|
47
|
-
##
|
|
48
|
-
|
|
47
|
+
## Install or Upgrade Path
|
|
48
|
+
|
|
49
|
+
Before writing, identify the project state:
|
|
50
|
+
|
|
51
|
+
| Project state | Required action |
|
|
52
|
+
| --- | --- |
|
|
53
|
+
| Empty or new project | Run the scaffold, then follow this file for 0-1 bootstrap |
|
|
54
|
+
| Existing project, no `Harness/` | Scan project facts first, run `--dry-run`, preserve existing files, merge only missing Harness guidance |
|
|
55
|
+
| Legacy architecture or older project docs | Treat existing code/docs as source of truth, dry-run first, then fill PRD, research, architecture, and task plans from observed facts |
|
|
56
|
+
| Existing `Harness/` | Do not use `npx` as an updater; ask whether to run `/wf-update`, `$wf-update`, `node Harness/scripts/wf-update-check.mjs`, keep untouched, or remove/reinstall after approval |
|
|
57
|
+
|
|
49
58
|
When adding this harness to a project that already has source code, docs, CI, or tool configuration, treat the existing project as the source of truth before filling harness docs.
|
|
50
59
|
|
|
51
|
-
1. Scan existing project facts first: top-level files, `CLAUDE.md`, `AGENTS.md`, `.claude/`, `.agents/`, `.codex/`, `Harness/`, `README.md`, package files (`package.json`, `pyproject.toml`, `go.mod`, etc.), test commands, app entry points, CI files, existing docs,
|
|
60
|
+
1. Scan existing project facts first: top-level files, `CLAUDE.md`, `AGENTS.md`, `.claude/`, `.agents/`, `.codex/`, `Harness/`, `README.md`, package files (`package.json`, `pyproject.toml`, `go.mod`, etc.), test commands, app entry points, CI files, existing docs, current run/build scripts, and already-installed skills/plugins/rules.
|
|
52
61
|
2. Record discovered facts and open questions in `Harness/tasks/<task-id>/PROGRESS.md` before changing harness docs.
|
|
53
62
|
3. Fill `Harness/research/PRD.md`, `Harness/research/research-results.md`, `Harness/architecture.md` from observed project facts plus explicit user input.
|
|
54
|
-
4. Existing configuration is project fact. Do not overwrite `CLAUDE.md`, `AGENTS.md`, `.claude/`, `.agents/`, `.codex/`, `.gitignore`, settings, hooks, package files, CI, docs routers,
|
|
63
|
+
4. Existing configuration is project fact. Do not overwrite `CLAUDE.md`, `AGENTS.md`, `.claude/`, `.agents/`, `.codex/`, `.gitignore`, settings, hooks, package files, CI, docs routers, workflow docs, or installed skills/plugins/rules unless the user explicitly approves that exact overwrite.
|
|
55
64
|
5. When a harness file conflicts with an existing file, preserve the existing file and register any missing harness guidance manually using `Harness/extension.md`.
|
|
56
65
|
6. Run `node Harness/scripts/validate-harness.mjs` after registration, then run `node Harness/scripts/validate-harness.mjs --strict` only after project-fact placeholders have been resolved or intentionally recorded as open.
|
|
57
66
|
|
|
58
|
-
`npx create-harness-vibe-coding` is an install/safe-merge entry, not an update engine for a project that already has an installed Harness. If `Harness/` already exists, use `/wf-update
|
|
67
|
+
`npx create-harness-vibe-coding` is an install/safe-merge entry, not an update engine for a project that already has an installed Harness. If `Harness/` already exists, use `/wf-update`, `$wf-update`, or `node Harness/scripts/wf-update-check.mjs`; root entry files and user-modified Harness docs require agent-mediated merge decisions.
|
|
59
68
|
|
|
60
69
|
### Agent-Link Install Intake
|
|
61
70
|
|
|
@@ -68,8 +77,8 @@ When the user installs by pasting the GitHub link into an agent, scan the projec
|
|
|
68
77
|
| Harness location | Always | Use root `Harness/`; do not write harness docs into `docs/` |
|
|
69
78
|
| README ownership | root `README.md` is a public product page, package docs, or heavily customized | Preserve existing README and propose a minimal Development section |
|
|
70
79
|
| README optimization | existing README is stale, sparse, missing command tables, or the user asks for diagrams/polished docs | Offer `wf-readme`; default to append-only Development notes until the user approves a structure pass or full rewrite |
|
|
71
|
-
| Extensions | ECC,
|
|
72
|
-
| Optional capabilities | stack is known or the user wants setup guidance | Offer local workflows plus recommendation-only
|
|
80
|
+
| Extensions | ECC, custom rules, or stack-specific skills may be useful | Scan installed skills/plugins/rules first; recommend only missing capabilities; install only after user approval |
|
|
81
|
+
| Optional capabilities | stack is known or the user wants setup guidance | Offer local workflows plus recommendation-only GitHub links: Superpowers, Caveman, agent research, and code graph; do not duplicate already-installed capabilities |
|
|
73
82
|
| Skills | stack is known and optional skills could improve testing, frontend, backend, review, or browser evidence | Install 1-2 relevant local workflows only after user approval |
|
|
74
83
|
| CI/CD | CI config exists or the project lacks a test/build gate | Document existing commands first; add CI/CD only after user approval |
|
|
75
84
|
| Verification depth | browser-visible, API, database, auth, payment, or deployment behavior is affected | Require real command evidence; require browser/API evidence when relevant |
|
|
@@ -129,7 +138,7 @@ The harness validator checks for specific structural invariants. When comparing
|
|
|
129
138
|
| `Harness/PROGRESS.md` | global task index with Active Task and task history; cross-task decisions |
|
|
130
139
|
| `Harness/tasks/<id>/PROGRESS.md` | `## Current Goal`, `## Phase`, `## Heartbeat`, `## Loaded Context` headings |
|
|
131
140
|
| `Harness/tasks/<id>/PLAN.md` | `## Tasks`, `## Parallel Dispatch`, `## Subagent Synthesis`, `## Verification` headings |
|
|
132
|
-
| `Harness/SETUP.md` |
|
|
141
|
+
| `Harness/SETUP.md` | Temporary install/bootstrap guide for new projects, existing projects, legacy upgrades, and Harness update decisions. If kept, ensure "Install or Upgrade Path" is present. |
|
|
133
142
|
| `Harness/workflows/browser-e2e.md` (if installed as optional) | `data-testid`, `accessible labels/roles`, and `inputs, buttons, filters, rows, empty/error/loading states` requirement |
|
|
134
143
|
| `Harness/workflows/ts-react-frontend.md` (if installed as optional) | Same UI selector contract as above |
|
|
135
144
|
|
|
@@ -153,7 +162,7 @@ npx create-harness-vibe-coding@latest my-app ./my-app -y --preset web-app
|
|
|
153
162
|
npx create-harness-vibe-coding@latest my-app ./my-app -y --recommend superpowers,codegraph
|
|
154
163
|
```
|
|
155
164
|
|
|
156
|
-
`--recommend` records recommendation-only external
|
|
165
|
+
`--recommend` records recommendation-only external capability links in this file. It does not install third-party skills or plugins.
|
|
157
166
|
|
|
158
167
|
### Template Fill Guide
|
|
159
168
|
|
|
@@ -200,7 +209,7 @@ False confidence is worse than a question. If you catch yourself thinking "this
|
|
|
200
209
|
|
|
201
210
|
## How to Find Proper Skills
|
|
202
211
|
|
|
203
|
-
After the architecture stage reveals your stack,
|
|
212
|
+
After the architecture stage reveals your stack, inspect existing `.claude/skills/`, `.agents/skills/`, plugins, hooks, and custom rules before recommending anything. Skills teach Claude Code and Codex domain-specific patterns, testing conventions, and design rules, but duplicate skills create routing noise.
|
|
204
213
|
|
|
205
214
|
**Built-in route**: invoke the `/find-skills` skill (or say "help me find skills for X"). Examples:
|
|
206
215
|
|
|
@@ -211,20 +220,24 @@ After the architecture stage reveals your stack, install matching agent skills.
|
|
|
211
220
|
"I need a skill for PostgreSQL schema design."
|
|
212
221
|
```
|
|
213
222
|
|
|
214
|
-
**
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
223
|
+
**External recommendation links**:
|
|
224
|
+
|
|
225
|
+
| Recommendation | Source | Purpose |
|
|
226
|
+
| --- | --- | --- |
|
|
227
|
+
| Superpowers | <https://github.com/obra/Superpowers> | community skill registry and agent workflows |
|
|
228
|
+
| Caveman | <https://github.com/JuliusBrussee/caveman> | terse, low-token agent behavior and memory compression |
|
|
229
|
+
| Agent Research | <https://github.com/lingzhi227/agent-research-skills> | research-agent skills for literature, product, dependency, and ecosystem investigation |
|
|
230
|
+
| CodeGraph | <https://github.com/colbymchenry/codegraph> | code graph or repository-map tooling |
|
|
231
|
+
|
|
232
|
+
These are links for the user's agent to evaluate. This scaffold does not maintain third-party install steps. If a user selects one, first check whether an equivalent capability is already installed; then present the GitHub link and ask for approval before the user's agent follows that project's own README.
|
|
221
233
|
|
|
222
234
|
**Manual discovery**: search GitHub and npm directly using patterns from `Harness/research/README.md#Architecture Decision References`.
|
|
223
235
|
|
|
224
236
|
**Priority order**:
|
|
225
|
-
1.
|
|
226
|
-
2.
|
|
227
|
-
3. GitHub
|
|
237
|
+
1. Existing project skills/plugins/rules first - do not recommend duplicates.
|
|
238
|
+
2. `/find-skills` or the runtime's local skill discovery - fastest and respects the user's tool environment.
|
|
239
|
+
3. Selected external GitHub links - let the user's agent read that project's README and install only after approval.
|
|
240
|
+
4. GitHub search - when the first three miss niche domains.
|
|
228
241
|
|
|
229
242
|
**What to install**: after finding skills, add the canonical copy to `.claude/skills/<name>/SKILL.md` and mirror the same file to `.agents/skills/<name>/SKILL.md` when Codex should discover it. Follow `Harness/extension.md` for compatibility. Start with 1-2 skills per stack area; more is not better.
|
|
230
243
|
|
|
@@ -46,15 +46,15 @@
|
|
|
46
46
|
"title": "Superpowers",
|
|
47
47
|
"description": "Community skill registry for agent workflows and reusable coding skills.",
|
|
48
48
|
"installMode": "recommend-only",
|
|
49
|
-
"
|
|
49
|
+
"url": "https://github.com/obra/Superpowers",
|
|
50
50
|
"tags": ["skills", "community", "subagents"]
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"id": "caveman",
|
|
54
54
|
"title": "Caveman",
|
|
55
|
-
"description": "External
|
|
55
|
+
"description": "External terse-agent capability to evaluate for low-token behavior and memory compression.",
|
|
56
56
|
"installMode": "recommend-only",
|
|
57
|
-
"
|
|
57
|
+
"url": "https://github.com/JuliusBrussee/caveman",
|
|
58
58
|
"tags": ["workflow", "implementation", "style"]
|
|
59
59
|
},
|
|
60
60
|
{
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"title": "Agent Research",
|
|
63
63
|
"description": "External research-agent capability for broader product, dependency, and ecosystem investigation.",
|
|
64
64
|
"installMode": "recommend-only",
|
|
65
|
-
"
|
|
65
|
+
"url": "https://github.com/lingzhi227/agent-research-skills",
|
|
66
66
|
"tags": ["research", "agents", "discovery"]
|
|
67
67
|
},
|
|
68
68
|
{
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"title": "Code Graph",
|
|
71
71
|
"description": "External code graph or repository map capability for dependency and architecture exploration.",
|
|
72
72
|
"installMode": "recommend-only",
|
|
73
|
-
"
|
|
73
|
+
"url": "https://github.com/colbymchenry/codegraph",
|
|
74
74
|
"tags": ["code graph", "architecture", "analysis"]
|
|
75
75
|
}
|
|
76
76
|
]
|