feat(claude): proper Claude Code plugin bundle + 30-skill cross-surface sync - #248
Merged
Conversation
|
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
ScriptedAlchemy
force-pushed
the
feat/claude-plugin-bundle
branch
2 times, most recently
from
July 3, 2026 18:52
9330b37 to
7c537df
Compare
Replace the config-managed Claude integration (hand-patched MCP entry,
5 hooks, loose subagents in ~/.claude/) with a real Claude Code plugin
bundle installed via a local `directory` marketplace under
~/.claude/plugins/marketplaces/tracedecay/.
- new claude-plugin/ bundle: .claude-plugin/{plugin.json,marketplace.json},
.mcp.json, hooks/hooks.json (5 events), agents/ (3 subagents),
commands/ (13 slash commands), and skills/
- full Claude Code surface: MCP + hooks + subagents + slash commands + skills
- installer deploys the embedded bundle, registers the directory marketplace,
and sets enabledPlugins["tracedecay@tracedecay"]; migrates existing installs
off the old config-managed MCP/hooks/loose-subagents while preserving the
tool-permission allowlist, CLAUDE.md rules, and any foreign entries
- cross-surface skill sync: all three bundling surfaces (claude/codex/cursor)
now ship the same 30 skills — 13 foundational + 13 tracedecay-* workflow +
4 new memory skills (storing/retrieving-project-memory,
managing-session-context, retrieving-cached-context), byte-identical where
each host's format allows; CURSOR_PLUGIN_SKILLS updated to the 17
model-invocable set
- doctor validates the deployed bundle + warns on stale config-managed leftovers
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
.gitignore ignores .mcp.json globally with a negation only for
codex-plugin; claude-plugin/.mcp.json was therefore untracked, so
include_str!("../../claude-plugin/.mcp.json") in src/agents/claude.rs
failed to compile on a fresh clone (CI). Add the negation and commit
the file (byte-identical to codex-plugin/.mcp.json).
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The skill-hygiene test asserts the claude-plugin bundle files are byte-identical to the codex source, but .gitattributes only forced LF for codex-plugin/ and cursor-plugin/. On Windows the claude-plugin tree checks out CRLF, so claude_bundle_skills_stay_byte_identical_to_the_codex_source fails. Cover claude-plugin/** too. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
ScriptedAlchemy
force-pushed
the
feat/claude-plugin-bundle
branch
from
July 3, 2026 19:17
7c537df to
893d00d
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.
What
Replaces the config-managed Claude integration with a real Claude Code plugin bundle, and syncs the skill catalog across all three bundling surfaces (Claude / Codex / Cursor).
Claude plugin bundle (
claude-plugin/)Full native Claude Code plugin surface, installed via a local
directorymarketplace under~/.claude/plugins/marketplaces/tracedecay/:.claude-plugin/{plugin.json,marketplace.json},.mcp.json,hooks/hooks.json(5 events),agents/(3 subagents),commands/(13 slash commands),skills/enabledPlugins["tracedecay@tracedecay"]doctorvalidates the deployed bundle and warns on stale config-managed leftoversCross-surface skill sync
All three surfaces now ship the same 30 skills: 13 foundational + 13
tracedecay-*workflow + 4 new memory skills (storing-project-memory,retrieving-project-memory,managing-session-context,retrieving-cached-context). Foundational + memory (17) are byte-identical across all three; workflow skills are byte-identical Claude↔Codex (Cursor keeps its nativedisable-model-invocationdispatcher form).CURSOR_PLUGIN_SKILLSupdated to the 17 model-invocable set.Verification
cargo fmt/clippy --all-targets -D warnings/buildcleancargo test: every suite green — lib 771, agent_suite 418, dashboard_api 53, automation_runner 131, mcp 307, storage 255, extraction 689, + others; all embedded-file-list/parity/lint/coverage invariants passinstall --agent claudeagainst a seeded old config-managed HOME → marketplace registered, plugin enabled, 30 skills + 13 commands deployed, old tracedecay MCP/hook/loose-subagent migrated away, foreign MCP/hook/user-subagent preservedCaught and fixed a real regression during reconcile (
local_mcp_has_tracedecaylocal-export signal). One pre-existing parallel-test PATH flake (git-worktree hook tests) is out of scope and flagged separately.🤖 Generated with Claude Code