release: v0.1.23 — full-length session_history docs + HTTP MCP works with any client#10
Merged
Conversation
FakeHank
force-pushed
the
release-v0.1.23
branch
2 times, most recently
from
June 26, 2026 14:22
da32c5a to
febec0f
Compare
…with any client Fixed: - session_history *.md docs are no longer truncated to ~3KB. slimCC treated whole human/agent-written docs as tool output (2KB head + 1KB tail), gutting anything longer (e.g. agent-task-*.md specs). slimCC now keeps session_history_markdown/meta records in full. Pipeline generation 3 -> 4 re-collects affected *.md from upload_folders on next sync. - Secret redaction spares obvious placeholders/identifiers (YOUR_API_KEY_HERE, <your-token>, changeme-*, xxxx, example-*) via a placeholder allowlist shared by ASSIGN_JSONL and GENERIC_RULE. Real high-entropy secrets still masked. - HTTP-transport MCP (POST /mcp) works with bare HTTP clients. The Streamable-HTTP SDK rejected anything not sending Accept: application/json, text/event-stream + Content-Type: application/json (plain curl / hand-written bots got 406/415), and GET /mcp hung the stateless connection. /mcp now pins those headers via rawHeaders (which Hono's request-builder actually reads) and returns 405 for non-POST. README/DEPLOY gained copy-paste Claude Code / mcp.json / curl config. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
FakeHank
force-pushed
the
release-v0.1.23
branch
from
June 26, 2026 14:31
febec0f to
92a0f56
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v0.1.23
Fixed
session_history*.mddocs no longer truncated to ~3KB —slimCCtreated whole human/agent-written docs as tool output (2KB head + 1KB tail), gutting anything longer (e.g.agent-task-*.mdspecs). Now kept in full. Pipeline generation 3 → 4 re-collects affected*.mdfromupload_folderson next sync.YOUR_API_KEY_HERE,<your-token>,changeme-*,example-*,xxxx) via a placeholder allowlist shared byASSIGN_JSONL+GENERIC_RULE. Real high-entropy secrets still masked.POST /mcp) works with bare HTTP clients — the Streamable-HTTP SDK rejected anything not sendingAccept: application/json, text/event-stream+Content-Type: application/json(plaincurl/ hand-written bots got 406/415), andGET /mcphung the stateless connection./mcpnow pins those headers viarawHeaders(which Hono's request-builder actually reads) and returns 405 for non-POST. README/DEPLOY gained copy-paste Claude Code /mcp.json/curlconfig.Tests:
npm test171 pass (incl. new slim + redact + bare-HTTP-MCP regressions).🤖 Generated with Claude Code