cohorte 1.2.5 → 1.2.6

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  Entries are shown by `/update-pipeline` ("What's new") after a core refresh. Keep them short,
4
4
  user-facing, most recent first. One `## <version> — <YYYY-MM-DD>` section per release.
5
5
 
6
+ ## 1.2.6 — 2026-07-30
7
+
8
+ - **`npx cohorte install` never installed the `smoke` agent.** It copied only `review.md` and
9
+ `release.md`, so `/smoke` was there but the agent it dispatches was not — the run failed
10
+ saying `/smoke` is not installed. The shell installers always copied it; only the npm port
11
+ drifted. It now copies every non-template agent in `core/agents/`, so nothing to keep in sync.
12
+ Fix an affected install by re-running `npx cohorte install --global` (or `install --repo`).
13
+
6
14
  ## 1.2.5 — 2026-07-29
7
15
 
8
16
  - **`.claude/pipeline.json`'s `core_version` never updated on global installs.** The installer
package/bin/cli.js CHANGED
@@ -156,8 +156,15 @@ function scrubTddGate() {
156
156
  // the fixed (non-rendered) agents: the dev review/release pipeline agents
157
157
  function copyFixedAgents() {
158
158
  fs.mkdirSync(path.join(dest, 'agents'), { recursive: true });
159
- for (const f of ['review.md', 'release.md']) {
160
- fs.copyFileSync(path.join(src, 'core', 'agents', f), path.join(dest, 'agents', f));
159
+ // Every agent in core/agents/ EXCEPT the *.template.md ones, which /init-pipeline renders
160
+ // per-surface. Until 1.2.6 this was a hardcoded ['review.md', 'release.md'] that never grew
161
+ // the `smoke.md` the shell installers copy, so `npx cohorte install` shipped the /smoke
162
+ // command with no `smoke` agent to dispatch — the run reported /smoke as not installed.
163
+ // Reading the directory needs no list to keep in sync with the shell installers.
164
+ const agentDir = path.join(src, 'core', 'agents');
165
+ for (const f of fs.readdirSync(agentDir)) {
166
+ if (!f.endsWith('.md') || f.endsWith('.template.md')) continue;
167
+ fs.copyFileSync(path.join(agentDir, f), path.join(dest, 'agents', f));
161
168
  }
162
169
  // 0.1.19 split the bi-mode questionnaire-researcher into research-agent + questionnaire-architect;
163
170
  // copy-over never deletes, so scrub the retired agent lest a dead subagent_type linger.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cohorte",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "Portable, stack-agnostic multi-agent development pipeline for Claude Code — install the core, run /init-pipeline, and it adapts to your project's stack.",
5
5
  "bin": {
6
6
  "cohorte": "bin/cli.js"