fix(atomic-agents): use git-subdir source so the plugin subpath resolves#1435
Closed
KennyVaneetvelde wants to merge 1 commit intoanthropics:mainfrom
Closed
fix(atomic-agents): use git-subdir source so the plugin subpath resolves#1435KennyVaneetvelde wants to merge 1 commit intoanthropics:mainfrom
KennyVaneetvelde wants to merge 1 commit intoanthropics:mainfrom
Conversation
The atomic-agents entry was the only subdirectory plugin using `source: url` + `path`. On install Claude Code clones the whole BrainBlend-AI/atomic-agents repo but does not descend into `claude-plugin/atomic-agents/`, so it fails to find `.claude-plugin/plugin.json` and the plugin loads empty — enabled but with zero agents or skills registered. Switch to `source: git-subdir`, matching the 19 other subpath plugins in this marketplace (ai-firstify, aws-serverless, expo, pydantic-ai, neon, stripe, zapier, etc.). Keep the same `path` and add `ref: main` for tracking. Also refresh the description to reflect atomic-agents plugin v2.0.0 (released 2026-04-16): the plugin is now skills-based with two specialist subagents (atomic-explorer for codebase mapping, atomic-reviewer for framework-specific review), replacing the previous multi-phase workflow the old description referred to. Plugin v2.0.0 release notes: https://github.com/BrainBlend-AI/atomic-agents/blob/main/claude-plugin/atomic-agents/CHANGELOG.md
|
Thanks for your interest! This repo only accepts contributions from Anthropic team members. If you'd like to submit a plugin to the marketplace, please submit your plugin here. |
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.
Problem
The
atomic-agentsentry in this marketplace is the only subdirectory plugin usingsource: "url"with apathfield. On install, Claude Code clones the fullBrainBlend-AI/atomic-agentsrepo into the cache but does not descend into theclaude-plugin/atomic-agents/subdirectory, so it fails to find.claude-plugin/plugin.jsonand the plugin loads empty — shown as Enabled in/pluginbut with zero agents or skills registered. Users see the plugin in the listing, but/agentsdoes not surfaceatomic-exploreroratomic-reviewer, and Claude falls back to the built-inExploreagent when asked to review atomic-agents code.Fix
Switch to
source: "git-subdir", which is what the 19 other subpath plugins in this marketplace already use (ai-firstify, aws-serverless, expo, pydantic-ai, neon, stripe, zapier, ui5, ui5-typescript-conversion, deploy-on-aws, amazon-location-service, dataverse, bigdata-com, helius, legalzoom, migration-to-aws, railway, semgrep, google-analytics). Keep the samepath: "claude-plugin/atomic-agents"and addref: "main"for tracking.Also refreshes the description
The existing description reflects the retired v1.0.0 plugin layout ("specialized agents for schema design, architecture planning, code review, and tool development... guided workflows"). Plugin v2.0.0 shipped on 2026-04-16 as a skills-based architecture with two specialist read-only subagents (
atomic-explorerfor codebase mapping,atomic-reviewerfor framework-specific review) plus theframeworkprogressive-disclosure skill and thenew-appscaffolder. Updated description matches the currentplugin.jsonandCHANGELOG.md.Release notes: https://github.com/BrainBlend-AI/atomic-agents/blob/main/claude-plugin/atomic-agents/CHANGELOG.md
Verification
source: "url", the cache contains the full repo atcache/claude-plugins-official/atomic-agents/<sha>/with the plugin nested three levels deep atcache/.../claude-plugin/atomic-agents/, which Claude Code does not resolve.🤖 Generated with Claude Code