[WIP] Add spec annotator plugin to Claude Code marketplace#2391
Draft
LucaButBoring wants to merge 5 commits intomodelcontextprotocol:mainfrom
Draft
[WIP] Add spec annotator plugin to Claude Code marketplace#2391LucaButBoring wants to merge 5 commits intomodelcontextprotocol:mainfrom
LucaButBoring wants to merge 5 commits intomodelcontextprotocol:mainfrom
Conversation
…r improvements - Add execution constraints to QA agent (10-15 tool calls, no jq/python) - Expand QA checklist to 21 checks: implementation substance (14-15), blast radius (16-17), completeness (18-21) - Add EARS actor exceptions for must-document/must-not-change requirements - Create annotate.py script for deterministic annotation scaffolding with bidirectional link building and optional match application - Add convergence detection to orchestrator QA loop - Add initial setup phase to orchestrator (extract + implement before loop) - Route QA implementation_issues back to implementer in orchestrator - Add separate summary/explanation fields to annotation cards - Add mobile-responsive layout to HTML template
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.
Publishing for visibility - letting this sit for a while so people can test it out directly, first. I recommend cloning the branch as a separate repo copy and doing a local marketplace install until this is merged:
Adds the
mcp-spec-annotatorplugin to the Claude Code marketplace. This plugin serves as a time-saver to assist in reviewing and authoring specification language for SEPs. The intended workflow is to start with a high-quality SEP (either your own or someone else's) and extract requirements from it. The extracted requirements form a "meta-spec," a set of EARS-format requirements that the final text needs to conform to in order to pass review. This is intended to accelerate understanding others' SEPs, refining your own, and authoring spec language from a raw SEP document.This is not intended to be the only quality gate on an SEP. The workflow attempts to extract as many problems as it can, but there is no guarantee that it will catch everything, and it is possible for it to misinterpret proposals (I would personally take that as a potential point of feedback in itself). Review the output thoroughly, starting with the rendered annotated diff to bootstrap your own understanding, and then reviewing the actual spec changes for correctness.
This plugin has three main skills:
/spec-annotateskill does meta-spec extraction on an SEP document and produces a rendered, annotated review of a git diff according to that meta-spec. The resultingannotated-diff.htmlis a standalone report that lists the requirements and explains how each specification change meets or violates the extracted requirements (you can upload it to a gist separately to share it via gisthost or similar)./spec-updateskill can be used to modify the requirements if the meta-spec is incorrect or insufficient./spec-orchestrateskill autonomously takes an SEP document and writes spec language for it, iteratively reviewing and refining both the meta-spec itself and the annotated diff until all of the requirements are satisfied, and the meta-spec captures all explicit and implicit requirements.This is an example annotated diff reviewing #1686, which already had spec language written for it (via

/spec-annotate 1686):(the violated requirements were largely intentional and were the result of short-notice/followup changes just before the 11/25 release)
And these are annotated diffs that were authored in tandem with the full spec language via
/spec-orchestrate(that is, the spec language was generated via the workflow):/spec-orchestrate 2339and gave no additional prompting.