Conversation
…describes Found rehearsing a triage board on 0.41.0. The prose around the recipe said "lb.note + the prospecting toggles", but the card template an agent copies still drew the old Outreach section: an "Outreach result" select — a second writer of the prospecting action, beside the toggles — and a Log outreach button with no word on where it writes. A board built from the template, which is how boards get built, shipped a duplicate control and nothing steering it off lb.outreach. The section keeps its "Outreach" title and its Log outreach submit, both pinned by card-layout and status-saves-on-change and neither of them the bug. It loses the select, gains the four prospecting toggles, and the button is annotated as the note — lb.note, never lb.outreach. The Write-call rules also explained how to hand-roll report_outreach without first saying a page's buttons never call it. That sentence now comes first; the hand-rolling rule is labelled as the agent's. Tests: new triage-card-writes.test.ts, 3 cases. components 567/567, core 1914/1914, typecheck clean on all five. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
…control Patch release for the triage-card template fix on this branch. The guide is compiled into the server and served by leadbay_get_artifact_runtime, so the fix reaches agents only once a new version is deployed; until then the live 0.41.0 server keeps handing out the template with the stale "Outreach result" select. Bumped: packages/mcp/package.json, both server.json versions, plugin.json. The npx pins stay @leadbay/mcp@0.41 — they track major.minor, which a patch does not move. @anthropic-ai/sdk ^0.40.0 is an unrelated dependency. Merging this to main releases it: auto-tag pushes mcp-v0.41.1. Tests: mcp 1041/1043 (the 2 are the pre-existing POSIX-only ones), typecheck clean on all five. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Clean, well-scoped fix. The triage-card template's Outreach section swaps its stray "Outreach result" <select> for the 4 prospecting-action toggles, matching both the prose that already described this layout and the already-correct ROUTE PLANNER template elsewhere in the same guide. The new triage-card-writes.test.ts pins both the template fix and the Write-call-rules reordering. artifact-runtime.generated.ts was regenerated (verified it matches usage-guide.md), not hand-edited. The version bump (package.json/server.json ×2/plugin.json/CHANGELOG) is internally consistent. No new tools or routing changes, so no WORKFLOWS.md update is needed. No issues found.
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.
0.41.1 — triage boards stop drawing a second outcome control
Patch release. Found while rehearsing a triage board on 0.41.0.
Problem: the triage-board recipe's prose says "
lb.note+ the prospecting toggles", but the card template an agent copies still drew the old Outreach section: an "Outreach result" select (a second writer of the prospecting action, beside the toggles) and a Log outreach button with nothing saying where it writes. The guide is served byleadbay_get_artifact_runtime, so every board built on 0.41.0 can copy it.Fix:
lb.note, neverlb.outreach).report_outreachbefore explaining how an agent hand-rolls it.For reviewers
card-layout.test.tsandstatus-saves-on-change.test.tspin both, and neither was the bug. No existing test file is modified.package.json, bothserver.jsonversions,plugin.json).npxpins stay@0.41.triage-card-writes.test.ts(3 cases). components 567/567, core 1914/1914, mcp 1041/1043 (2 pre-existing POSIX-only), typecheck clean.🤖 Generated with Claude Code