@chorus-aidlc/chorus-pi 0.0.3 → 0.17.2

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.
@@ -143,7 +143,7 @@ ACCEPT="Accept: application/json, text/event-stream"
143
143
  CT="Content-Type: application/json"
144
144
 
145
145
  INIT=$(cat <<JSON
146
- {"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"chorus-codex-hook","version":"0.17.0"}}}
146
+ {"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"chorus-codex-hook","version":"0.17.2"}}}
147
147
  JSON
148
148
  )
149
149
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chorus-aidlc/chorus-pi",
3
- "version": "0.0.3",
3
+ "version": "0.17.2",
4
4
  "description": "Chorus AI-DLC collaboration platform extension for the Pi coding agent. Provides skills for every stage of the AI-DLC lifecycle, read-only reviewer subagents, and session-aware extension hooks. The Chorus MCP server is auto-discovered from the repo's .mcp.json by pi-mcp-adapter — no installer required.",
5
5
  "author": {
6
6
  "name": "Chorus-AIDLC"
@@ -51,12 +51,8 @@
51
51
  }
52
52
  },
53
53
  "pi": {
54
- "extensions": [
55
- "./extensions"
56
- ],
57
- "skills": [
58
- "./skills"
59
- ]
54
+ "extensions": ["./extensions"],
55
+ "skills": ["./skills"]
60
56
  },
61
57
  "//note": "Reviewer subagents use pi's official subagent pattern, bundled at extensions/subagent/ (index.ts + agents.ts, copied from earendil-works/pi's examples). The copied agents.ts discovers this package's own agents/*.md via a package-relative BUNDLED_DIR, so the 3 reviewer agents load with ZERO manual copy into ~/.pi/agent/agents/. pi auto-loads extensions/subagent/index.ts as a subdirectory-with-index extension (no manifest entry needed)."
62
58
  }
@@ -4,7 +4,7 @@ description: Optional divergent-then-convergent dialogue for fuzzy ideas. Invoke
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -4,7 +4,7 @@ description: Chorus AI Agent collaboration platform — overview, common tools,
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -19,7 +19,7 @@ This is the **core skill** — it covers the platform overview, shared tools, an
19
19
  > - **Namespaced form (preferred):** `mcp__chorus__<tool>` — e.g. `mcp__chorus__chorus_checkin`, `mcp__chorus__chorus_pm_create_idea`.
20
20
  > - **Flattened alias:** `chorus_<tool>` → the server prefix produces a **doubled** `chorus_chorus_*` (e.g. `chorus_chorus_pm_create_idea`). The double `chorus_` is expected, not a typo.
21
21
  >
22
- > So: wherever a skill names a tool `chorus_…`, call it as `mcp__chorus__chorus_…`. If a tool ever reads as *"not found"*, you almost certainly dropped the `mcp__chorus__` prefix. This is Pi-specific — Claude Code / Codex resolve the bare names directly.
22
+ > So: wherever a skill names a tool `chorus_…`, call it as `mcp__chorus__chorus_…`. If a tool ever reads as *"not found"*, you almost certainly dropped the `mcp__chorus__` prefix. This is Pi-specific — other harnesses resolve the bare names directly.
23
23
 
24
24
  ---
25
25
 
@@ -4,7 +4,7 @@ description: How to install, configure, and use the `chorus` CLI — install it,
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -35,6 +35,16 @@ Agent configuration lives in `~/.chorus/daemon.json`; `chorus agents` is the CRU
35
35
  - `chorus agents remove <name|uuid>` — remove a configured agent from `~/.chorus/daemon.json`
36
36
  (matched by UUID or name; an ambiguous name → use the UUID).
37
37
 
38
+ - `chorus agents run --name <name|uuid> [--type <type>] [--] [agent args…]` — launch a
39
+ configured agent's binary in the FOREGROUND with its Chorus connection injected into the
40
+ child only (`CHORUS_URL` / `CHORUS_API_KEY` / `CHORUS_AGENT_PROFILE`; nothing is exported to
41
+ the parent shell, and the key is never printed). Agent selection: single agent by default; else `--name`, else `CHORUS_AGENT_PROFILE`; ambiguous/none →
42
+ error. Backend defaults to the agent's stored `agentType`, overridable with `--type`.
43
+ Everything after `--` is passed to the agent **verbatim** (never inspected). Type → binary:
44
+ `claude-code`/`claude`→`claude`, `codex`→`codex`, `kiro`→`kiro-cli`, `pi`→`pi`,
45
+ `opencode`→`opencode`, `openclaw`→`openclaw`, `dsh`→`dsh-jsonrpc-agent`. Agents added as
46
+ opencode/openclaw/dsh are stored as `offline` → pass `--type` explicitly to launch them.
47
+
38
48
  ## 3. Connection environment variables
39
49
 
40
50
  - `CHORUS_URL` — the Chorus instance URL.
@@ -4,7 +4,7 @@ description: Chorus Development workflow — claim tasks, report work, manage se
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -4,7 +4,7 @@ description: Chorus documentation router — consult the live Chorus docs site t
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -4,7 +4,7 @@ description: Chorus Idea workflow — claim ideas, run elaboration rounds, and p
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -4,7 +4,7 @@ description: Opt-in OpenSpec-mode authoring for Chorus PM workflows in Pi. Detec
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -385,7 +385,7 @@ The hook is read-only; you (the agent) perform the archive:
385
385
  1-byte drift (a spec that mirrored correctly will read as 1 byte longer on the
386
386
  server). Use `jq -j` (no trailing newline) or `cmp` directly, and never rely
387
387
  on recursive `jq`, `head`, command substitution, or newline normalization.
388
- (Unlike the Claude Code / Kiro / Codex plugins, the `chorus-pi` package ships
388
+ (Unlike the plugin-style Chorus surfaces, the `chorus-pi` package ships
389
389
  no `verify-document-roundtrip.sh` — the `--arg-file` byte-equality guarantee
390
390
  makes it unnecessary.)
391
391
 
@@ -4,7 +4,7 @@ description: Multi-agent orchestration playbook — coordinate OTHER agents and
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -4,7 +4,7 @@ description: Chorus Proposal workflow — create proposals with document and tas
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -4,7 +4,7 @@ description: Quick Task workflow — skip Idea→Proposal, create tasks directly
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -4,7 +4,7 @@ description: Chorus Review workflow — approve/reject proposals, verify tasks,
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---
@@ -4,7 +4,7 @@ description: Full-auto AI-DLC pipeline — from prompt to done. Automates the en
4
4
  license: AGPL-3.0
5
5
  metadata:
6
6
  author: chorus
7
- version: "0.17.0"
7
+ version: "0.17.2"
8
8
  category: project-management
9
9
  mcp_server: chorus
10
10
  ---