Skip to content

Commit 67e8a84

Browse files
committed
v3.16.5: brewdoc:publish auto-renders Markdown files as styled pages (.md -> /api/html?format=markdown, not raw file)
1 parent 3947d5a commit 67e8a84

8 files changed

Lines changed: 20 additions & 11 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": "3.16.4"
9+
"version": "3.16.5"
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": "3.16.4",
15+
"version": "3.16.5",
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": "3.16.4",
49+
"version": "3.16.5",
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": "3.16.4",
77+
"version": "3.16.5",
7878
"category": "productivity",
7979
"keywords": [
8080
"brewtools",
@@ -102,7 +102,7 @@
102102
{
103103
"name": "brewui",
104104
"description": "Brewui - UI/visual/creative tools for Claude Code: AI image generation",
105-
"version": "3.16.4",
105+
"version": "3.16.5",
106106
"category": "productivity",
107107
"keywords": [
108108
"brewui",

RELEASE-NOTES.md

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

33
---
44

5+
## v3.16.5 (2026-06-18)
6+
7+
`brewdoc:publish` now auto-renders Markdown files as styled pages. A `.md`/`.markdown` file path is published via `/api/html?format=markdown` (pretty rendered) instead of `/api/files` (raw download). All other file types are unchanged — only Markdown files switch to the rendered path.
8+
9+
---
10+
511
## v3.16.4 (2026-06-17)
612

713
Provider-switch model-data accuracy pass: refreshed every provider model in the docs, not just GLM. Updated to Claude Opus 4.8, corrected GPT-5.5 to native OpenAI API (was mislabeled OpenRouter-only) and added GPT-5.5 Codex, set GLM-5.2 to 1M context with SWE-bench Pro 62.1% (self-reported) and dropped the unverified "#1" claim, and fixed MiniMax to MiniMax-M3 (1M). All vendor SWE-bench figures now carry a "(self-reported)" label since independent leaderboards had not yet listed the newest 2026 models.

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": "3.16.4",
3+
"version": "3.16.5",
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/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": "3.16.4",
3+
"version": "3.16.5",
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": "3.16.4"
39+
"version": "3.16.5"
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": "3.16.4",
3+
"version": "3.16.5",
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",

brewdoc/skills/publish/SKILL.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Extract from `$ARGUMENTS`:
2626
|-------|------|-----|
2727
| `content_arg` is a directory (`test -d`) | SITE | `POST /api/sites` (ZIP created from dir) |
2828
| `content_arg` ends with `.zip` AND file exists (`test -f`) | SITE | `POST /api/sites` (archive upload) |
29+
| `content_arg` is a `.md`/`.markdown` file AND exists (`test -f`) | MARKDOWN | `POST /api/html` (format=markdown, content read from the file — renders styled, NOT a raw download) |
2930
| `content_arg` is a file path AND file exists (`test -f`) | FILE | `POST /api/files` (multipart) |
3031
| `content_arg` starts with `{` or `[` | JSON | `POST /api/json` |
3132
| Anything else | HTML | `POST /api/html` (format=markdown) |
@@ -118,6 +119,8 @@ HEADER
118119
fi
119120
```
120121

122+
> For a MARKDOWN **file** (type MARKDOWN from Step 2), use this same block but replace the heredoc with `CONTENT=$(cat "/abs/path/to/file.md")`. Everything else (the `?format=markdown` endpoint, token handling, history row) is identical — this renders the `.md` as styled markdown instead of a raw downloadable file.
123+
121124
**HTML/Markdown text****EXECUTE** using Bash tool:
122125
```bash
123126
HISTORY_FILE=".claude/brewpage-history.md"

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": "3.16.4",
3+
"version": "3.16.5",
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": "3.16.4",
3+
"version": "3.16.5",
44
"description": "Brewui - UI/visual/creative tools for Claude Code: AI image generation",
55
"author": {
66
"name": "Maksim Kochetkov",

0 commit comments

Comments
 (0)