compound-agent 1.6.1 → 1.6.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.
package/CHANGELOG.md CHANGED
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [1.6.2] - 2026-03-05
13
+
14
+ ### Fixed
15
+
16
+ - **Cook-it session banner**: The cook-it skill now instructs Claude to print the "Claude the Cooker" ASCII chef banner at the very start of every cooking session.
17
+
12
18
  ## [1.6.1] - 2026-03-05
13
19
 
14
20
  ### Changed
package/dist/cli.js CHANGED
@@ -6819,16 +6819,6 @@ description: Full-cycle orchestrator chaining all five phases with gates and con
6819
6819
 
6820
6820
  ## Overview
6821
6821
 
6822
- \`\`\`
6823
-
6824
- \u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510
6825
- \u2502\u2592\u2592\u2592\u2592\u2592\u2502
6826
- \u2590\u259B\u2588\u2588\u2588\u259C\u258C o
6827
- \u259D\u259C\u2588\u2588\u2588\u2588\u2588\u259B\u2598|
6828
- \u2598\u2598 \u259D\u259D
6829
- Let's cook!
6830
- \`\`\`
6831
-
6832
6822
  Chain all 5 phases end-to-end: Spec Dev, Plan, Work, Review, Compound. This skill governs the orchestration -- phase sequencing, gates, progress tracking, and error recovery.
6833
6823
 
6834
6824
  ## CRITICAL RULE -- READ BEFORE EXECUTE
@@ -6841,6 +6831,21 @@ Before starting EACH phase, you MUST use the Read tool to open its skill file:
6841
6831
 
6842
6832
  Do NOT proceed from memory. Read the skill, then follow it exactly.
6843
6833
 
6834
+ ## Session Start
6835
+ When a cooking session begins, IMMEDIATELY print the chef banner below (copy it verbatim):
6836
+
6837
+ \`\`\`
6838
+
6839
+ \u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510
6840
+ \u2502\u2592\u2592\u2592\u2592\u2592\u2502
6841
+ \u2590\u259B\u2588\u2588\u2588\u259C\u258C o
6842
+ \u259D\u259C\u2588\u2588\u2588\u2588\u2588\u259B\u2598|
6843
+ \u2598\u2598 \u259D\u259D
6844
+ Claude the Cooker
6845
+ \`\`\`
6846
+
6847
+ Then proceed with the protocol below.
6848
+
6844
6849
  ## Phase Execution Protocol
6845
6850
  0. Initialize state: \`npx ca phase-check init <epic-id>\`
6846
6851
  For each phase:
@@ -10129,7 +10134,13 @@ function registerVerifyGatesCommand(program2) {
10129
10134
  }
10130
10135
 
10131
10136
  // src/changelog-data.ts
10132
- var CHANGELOG_RECENT = `## [1.6.1] - 2026-03-05
10137
+ var CHANGELOG_RECENT = `## [1.6.2] - 2026-03-05
10138
+
10139
+ ### Fixed
10140
+
10141
+ - **Cook-it session banner**: The cook-it skill now instructs Claude to print the "Claude the Cooker" ASCII chef banner at the very start of every cooking session.
10142
+
10143
+ ## [1.6.1] - 2026-03-05
10133
10144
 
10134
10145
  ### Changed
10135
10146
 
@@ -10212,27 +10223,7 @@ var CHANGELOG_RECENT = `## [1.6.1] - 2026-03-05
10212
10223
  - **Eliminate redundant JSONL parsing**: \`searchVector()\` and \`findSimilarLessons()\` now use \`readAllFromSqlite()\` after \`syncIfNeeded()\` instead of re-parsing the JSONL file
10213
10224
  - **Float32Array consistency**: Lesson embedding path now keeps \`Float32Array\` from node-llama-cpp instead of converting via \`Array.from()\` (4x memory savings per vector)
10214
10225
  - **Pre-warm lesson embedding cache**: \`ca init\` now pre-computes embeddings for all lessons with missing or stale cache entries, eliminating cold-start latency on first search
10215
- - **Graceful embedding fallback**: \`ca search\` falls back to keyword-only search on runtime embedding failures instead of crashing
10216
-
10217
- ## [1.5.0] - 2026-02-24
10218
-
10219
- ### Added
10220
-
10221
- - **Gemini CLI compatibility adapter**: \`ca setup gemini\` scaffolds \`.gemini/\` directory with hook scripts, TOML slash commands, and inlined skills -- bridging compound-agent to work with Google's Gemini CLI via the Adapter Pattern
10222
- - **Gemini hooks**: Maps SessionStart, BeforeAgent, BeforeTool, AfterTool to compound-agent's existing hook pipeline (\`ca prime\`, \`ca hooks run user-prompt\`, \`ca hooks run phase-guard\`, \`ca hooks run post-tool-success\`)
10223
- - **Gemini TOML commands**: Auto-generates \`.gemini/commands/compound/*.toml\` using \`@{path}\` file injection to maintain a single source of truth with Claude commands
10224
- - **Gemini skills proxying**: Inlines phase and agent role skill content into \`.gemini/skills/\` with YAML frontmatter
10225
- - **23 integration tests** for the Gemini adapter covering hooks, settings.json, TOML commands, skills, and dry-run mode
10226
-
10227
- ### Fixed
10228
-
10229
- - **Gemini hook stderr leak**: Corrected \`2>&1 > /dev/null\` (leaks stderr to stdout, corrupting JSON) to \`> /dev/null 2>&1\`
10230
- - **Gemini TOML file injection syntax**: Changed \`@path\` to \`@{path}\` (Gemini CLI requires curly braces)
10231
- - **Gemini skill file injection**: Skills now inline content instead of using \`@{path}\` which only works in TOML prompt fields, not SKILL.md
10232
- - **Gemini phase guard always allowing**: Hook now checks \`ca hooks run phase-guard\` exit code and returns structured \`{"decision": "deny"}\` on failure (exit 0, not exit 2, so Gemini parses the reason from stdout)
10233
- - **Gemini BeforeTool matcher incomplete**: Added \`create_file\` to BeforeTool and AfterTool matchers alongside \`replace\` and \`write_file\`
10234
- - **TOML description escaping**: \`parseDescription\` now escapes \`\\\` and \`"\` to prevent malformed TOML output
10235
- - **Flaky embedding test**: Added 15s timeout to \`isModelUsable\` test`;
10226
+ - **Graceful embedding fallback**: \`ca search\` falls back to keyword-only search on runtime embedding failures instead of crashing`;
10236
10227
 
10237
10228
  // src/commands/about.ts
10238
10229
  function registerAboutCommand(program2) {