Skip to content

Commit b06d817

Browse files
committed
v4.0.1: purge v3.19.0 task-system doc debt from site; delete workflow page; reconcile brewcode skill/agent/hook counts; document grepai self-install
1 parent 3055aaf commit b06d817

24 files changed

Lines changed: 145 additions & 517 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
},
77
"metadata": {
88
"description": "Claude Code plugin suite: brewcode for infinite task execution, brewdoc for documentation tools, brewtools for text utilities, brewui for UI/visual/creative tools",
9-
"version": "4.0.0"
9+
"version": "4.0.1"
1010
},
1111
"plugins": [
1212
{
1313
"name": "brewcode",
1414
"description": "Brewcode - full-featured development platform for Claude Code: infinite focus tasks, prompt optimization, skill/agent creation, quorum reviews, rules management",
15-
"version": "4.0.0",
15+
"version": "4.0.1",
1616
"category": "productivity",
1717
"keywords": [
1818
"brewcode",
@@ -46,7 +46,7 @@
4646
{
4747
"name": "brewdoc",
4848
"description": "Brewdoc - Claude Code documentation tools: auto-sync for skills/agents/rules, my-claude installation docs, memory optimization, md-to-pdf conversion",
49-
"version": "4.0.0",
49+
"version": "4.0.1",
5050
"category": "productivity",
5151
"keywords": [
5252
"brewdoc",
@@ -74,7 +74,7 @@
7474
{
7575
"name": "brewtools",
7676
"description": "Brewtools - universal utilities for Claude Code: text optimization, humanization, secrets scanning",
77-
"version": "4.0.0",
77+
"version": "4.0.1",
7878
"category": "productivity",
7979
"keywords": [
8080
"brewtools",
@@ -102,7 +102,7 @@
102102
{
103103
"name": "brewui",
104104
"description": "Placeholder for future UI/visual/creative tools (currently empty, installable)",
105-
"version": "4.0.0",
105+
"version": "4.0.1",
106106
"category": "productivity",
107107
"keywords": [
108108
"ui",

RELEASE-NOTES.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
---
44

5+
## v4.0.1 (2026-06-30)
6+
7+
> Docs-only follow-up to v4.0.0 — purges leftover v3.19.0 task-system documentation debt from the site so docs match the real plugin.
8+
9+
> Docs: [brewcode overview](https://doc-claude.brewcode.app/brewcode/overview/) | [agents](https://doc-claude.brewcode.app/brewcode/agents/) | [grepai](https://doc-claude.brewcode.app/brewcode/skills/grepai/) | [superreview](https://doc-claude.brewcode.app/brewcode/skills/superreview/) | [getting-started](https://doc-claude.brewcode.app/getting-started/) | [quickstart](https://doc-claude.brewcode.app/quickstart/) | [installation](https://doc-claude.brewcode.app/installation/)
10+
11+
### docs
12+
#### Removed
13+
- **workflow page:** deleted `brewcode/workflow.mdx` (described the removed KNOWLEDGE/plan/start/handoff pipeline) + its `navigation.ts` entry
14+
- **dead skill/agent refs:** purged all links to removed skills (`/brewcode:setup`, `/brewcode:plan`, `/brewcode:start`, `/brewcode:standards-review`, `/brewcode:teardown`) and removed agents (`bc-coordinator`, `bc-knowledge-manager`) across getting-started, quickstart, installation, overview, agents, and skill/agent pages
15+
- **task-system framing:** removed dead KNOWLEDGE auto-accumulation / post-task / coordinator-loop / "infinite task" descriptions
16+
#### Changed
17+
- **brewcode counts reconciled:** 9 skills (spec, grepai, convention, rules, superreview, skills, agents, teams, e2e), 10 agents, 2 hooks; suite total 4 hooks
18+
- **grepai:** documented self-install behavior on its MDX page
19+
- **superreview:** now documented as the generator of the project-tailored deep-review skill (review + standards merged)
20+
21+
---
22+
523
## v4.0.0 (2026-06-30)
624

725
> **MAJOR / breaking** — injection-hook architecture removed across all plugins; plugin-root now resolved natively via `${CLAUDE_PLUGIN_ROOT}`.

brewcode/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "brewcode",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Brewcode - full-featured development platform for Claude Code: infinite focus tasks, prompt optimization, skill/agent creation, quorum reviews, rules management",
55
"author": {
66
"name": "Maksim Kochetkov",

brewcode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
| Field | Value |
66
|-------|-------|
7-
| Version | 4.0.0 |
7+
| Version | 4.0.1 |
88
| Skills | 13 |
99
| Agents | 12 |
1010
| Hooks | 2 |

brewcode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-plugin-brewcode",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Infinite task execution with automatic handoff for Claude Code",
55
"keywords": [
66
"claude-code",
@@ -36,6 +36,6 @@
3636
},
3737
"claude-plugin": {
3838
"name": "brewcode",
39-
"version": "4.0.0"
39+
"version": "4.0.1"
4040
}
4141
}

brewdoc/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "brewdoc",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Brewdoc - Claude Code documentation tools: auto-sync for skills/agents/rules, my-claude installation docs, memory optimization",
55
"author": {
66
"name": "Maksim Kochetkov",

brewtools/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "brewtools",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Brewtools - universal utilities for Claude Code: text optimization, humanization, secrets scanning",
55
"author": {
66
"name": "Maksim Kochetkov",

brewui/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "brewui",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Brewui -- placeholder for future UI/visual/creative tools",
55
"author": {
66
"name": "Maksim Kochetkov",

web/docs/src/content/docs/brewcode/agents.mdx

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Agents"
3-
description: "All 12 Brewcode agents: models, triggers, tools"
3+
description: "All 10 Brewcode agents: models, triggers, tools"
44
order: 12
55
---
66

@@ -24,10 +24,8 @@ from developer to task coordination.
2424
| 6 | agent-creator | opus | Read, Write, Edit | Agent creation and improvement |
2525
| 7 | hook-creator | opus | Read, Write, Edit, Bash | Hook creation and debugging |
2626
| 8 | bash-expert | opus | Read, Write, Edit, Bash | Bash/sh script creation |
27-
| 9 | bc-coordinator | haiku | Read, Write, Edit, Bash | Internal: spawned by /brewcode:start + post-task hook |
28-
| 10 | bc-knowledge-manager | haiku | Read, Write | Internal: spawned by /brewcode:start |
29-
| 11 | bc-grepai-configurator | opus | Read, Write, Edit, Bash | Internal: spawned by /brewcode:grepai |
30-
| 12 | bc-rules-organizer | sonnet | Read, Write, Edit, Bash | Internal: spawned by /brewcode:rules |
27+
| 9 | bc-grepai-configurator | opus | Read, Write, Edit, Bash | Internal: spawned by /brewcode:grepai |
28+
| 10 | bc-rules-organizer | sonnet | Read, Write, Edit, Bash | Internal: spawned by /brewcode:rules |
3129

3230
<CardGrid>
3331
<Card title="developer" icon="code" href="/brewcode/agents/developer/">
@@ -57,7 +55,7 @@ from developer to task coordination.
5755
</CardGrid>
5856

5957
:::note[Internal agents]
60-
`bc-coordinator`, `bc-knowledge-manager`, `bc-grepai-configurator`, and `bc-rules-organizer` are internal. They are spawned automatically by brewcode skills and hooks, are not user-invokable, and have no dedicated page.
58+
`bc-grepai-configurator` and `bc-rules-organizer` are internal. They are spawned automatically by brewcode skills and hooks, are not user-invokable, and have no dedicated page.
6159
:::
6260

6361
## Models and cost
@@ -66,12 +64,10 @@ from developer to task coordination.
6664
|-------|--------|-------------|
6765
| **opus** | [developer](/brewcode/agents/developer/), [reviewer](/brewcode/agents/reviewer/), [architect](/brewcode/agents/architect/), [skill-creator](/brewcode/agents/skill-creator/), [agent-creator](/brewcode/agents/agent-creator/), [hook-creator](/brewcode/agents/hook-creator/), [bash-expert](/brewcode/agents/bash-expert/), bc-grepai-configurator | Complex tasks, deep analysis, code generation |
6866
| **sonnet** | [tester](/brewcode/agents/tester/), bc-rules-organizer | Balanced tasks, review, optimization |
69-
| **haiku** | bc-coordinator, bc-knowledge-manager | Lightweight operations: statuses, knowledge extraction, compaction |
7067

7168
<Callout type="tip" title="Automatic selection">
72-
Agents are selected automatically based on the Phase Registry in PLAN.md.
73-
The [/brewcode:start](/brewcode/skills/start/) skill reads agent assignments from the phase table
74-
and launches the corresponding agents via Task API.
69+
Agents are launched automatically by brewcode skills via the Task API.
70+
Each skill spawns the relevant agent for its domain — no manual agent selection required.
7571
</Callout>
7672

7773
<Callout type="note" title="Moved Agents">

web/docs/src/content/docs/brewcode/agents/agent-creator.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Description patterns by ambiguity level:
123123
| Some — 1-2 other agents | Single-line + detailed Triggers | `"Creates bash scripts. Triggers: create script, bash script, shell script"` |
124124
| High — creator/meta agents | Multi-line + 2-3 `<example>` blocks | See agent-creator.md source |
125125

126-
Subagent spawn constraint: CC 2.1.172 allows nested subagent spawning up to 5 levels deep. However, brewcode workflow requires spawning only from the main conversation the 2-step report protocol (`post-task.mjs`) binds the task lock to one session and delivers report/coordinator instructions back to the spawning conversation. Nested spawns bypass session binding, `KNOWLEDGE` injection, and the coordinator loop. This is a **brewcode workflow policy**, not a Claude Code platform limitation.
126+
Subagent spawn note: CC allows nested subagent spawning, but prefer spawning from the main conversation so the orchestrator can integrate each agent's result directly. Brewcode agents are stateless and resolve plugin paths via `${CLAUDE_PLUGIN_ROOT}`.
127127

128128
Known active bugs: [#29423](https://github.com/anthropics/claude-code/issues/29423) (subagents skip CLAUDE.md), [#27736](https://github.com/anthropics/claude-code/issues/27736) (`skills:` in plugin agents), [#31392](https://github.com/anthropics/claude-code/issues/31392) (global agents not discovered in v2.1.70+).
129129
</details>

0 commit comments

Comments
 (0)