Conversation
5 tasks
cofin
added a commit
that referenced
this pull request
Apr 27, 2026
…(0.20.2) (#57) ## Summary - Drop the invalid `"agents": ["./agents/"]` from `.claude-plugin/plugin.json` introduced by #56 — Claude Code's schema rejects an array containing a directory path, breaking `/doctor` for installed users. Auto-discovery from `agents/*.md` is the canonical shape and was always active. - Add missing YAML frontmatter to `commands/flow-cleanup.md` surfaced by the same validator run. - Wire `claude plugin validate` into `make check` via a new `validate-claude-manifest` target, so the next schema regression fails CI instead of shipping. - Bump to 0.20.2. ## Why a CLI-wrapping validator `claude plugin validate` is the same loader Claude Code runs at install time. Wrapping it via `tools/validate-claude-manifest.py` means our local check tracks any future schema evolution Anthropic makes, with zero hand-rolled JSON Schema to drift. Each host's validator is the only authority on its own format — flow already does the same for Codex (`validate-codex-manifest.py`); this fills the Claude gap. ## Test plan - [x] `make check` passes end-to-end (lint, skills, codex, claude, version sync) - [x] `claude plugin validate .claude-plugin/plugin.json` → ✔ Validation passed - [x] `claude plugin validate .claude-plugin/marketplace.json` → ✔ Validation passed - [x] All 8 manifests in sync at 0.20.2 - [ ] CI quality-check matrix green
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.
Summary
Validation