By agentx-team
Start-from-scratch session utilities: /scratch:fresh rescans ~/.claude (skills, plugins, agents, commands, MCP) so a new session in the current directory knows everything available; /scratch:takeover finds another directory's Claude session, absorbs its history into the current context, moves its files here, and continues the work.
Start fresh — rescan ~/.claude (skills, plugins, agents, commands, MCP), clone the target git project into ./projects/<name>, and report every Claude capability available to this session
Take over another directory's project — absorb its Claude session history into this context, move its files under ./projects/<name>, and continue the work from there
A curated directory of high-quality plugins for Claude Code.
⚠️ Important: Make sure you trust a plugin before installing, updating, or using it. Anthropic does not control what MCP servers, files, or other software are included in plugins and cannot verify that they will work as intended or that they won't change. See each plugin's homepage for more information.
/plugins - Internal plugins developed and maintained by AgentX/external_plugins - Third-party plugins from partners and the communityPlugins can be installed directly from this marketplace via Claude Code's plugin system.
First, add this repository as a plugin marketplace:
claude plugin marketplace add agentx-team/claude-plugins
Then install a plugin from it:
claude plugin install {plugin-name}@agentx-plugins
If you already have the agentx-plugins marketplace added, refresh its manifest first, then install:
claude plugin marketplace update agentx-plugins
The name after
@is the marketplace name defined in.claude-plugin/marketplace.json(agentx-plugins), not the GitHubowner/repopath.
Alternatively, browse for the plugin in /plugin > Discover
Third-party partners can submit plugins for inclusion in the marketplace. External plugins must meet quality and security standards for approval. To submit a new plugin, use the plugin directory submission form.
Each plugin follows a standard structure:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata (required)
├── .mcp.json # MCP server configuration (optional)
├── commands/ # Slash commands (optional)
├── agents/ # Agent definitions (optional)
├── skills/ # Skill definitions (optional)
└── README.md # Documentation
The name field in a marketplace entry is an immutable slug. Once a plugin has been published, its name must not change — users have it installed under that slug, and renaming it breaks their install with a plugin-not-found error.
displayName instead.renames map in .claude-plugin/marketplace.json so existing installs auto-migrate:"renames": {
"old-name": "new-name"
}
The Claude Code plugin loader reads this map and transparently rewrites the old slug to the new one on the user's next sync.
When a plugin's source repository ships skills (SKILL.md files) without a .claude-plugin/plugin.json manifest, the marketplace entry can declare the skills directly using strict: false and an explicit skills array.
{
"name": "example-bundle",
"description": "Brief description of the bundled skills.",
"author": { "name": "Author Name" },
"category": "development",
"source": {
"source": "git-subdir",
"url": "https://github.com/example-org/sdk.git",
"path": "packages/agent-skills",
"ref": "main",
"sha": "<commit sha>"
},
"strict": false,
"skills": [
"./skill-a",
"./skill-b",
"./skill-c"
],
"homepage": "https://github.com/example-org/sdk"
}
Each path in skills is relative to source.path and points at a directory containing a SKILL.md. Paths can reach deeper than a single level — for example, ["./libA/skill-1", "./libB/skill-2"] exposes a curated subset across multiple library subdirectories. Each skill is registered as <plugin-name>:<skill-name> in Claude Code.
For the underlying schema, see Strict mode in the marketplace documentation.
Please see each linked plugin for the relevant LICENSE file.
For more information on developing Claude Code plugins, see the official documentation.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub agentx-team/claude-plugins --plugin scratchBind a Claude Code session to an IM chat room; push long-task results to the room on completion.
A domain-agnostic agent-team scaffold built around the Planner → Generator → Evaluator loop. Reusable role agents and a reference end-to-end workflow, with plugin-level hooks, MCP/LSP registration, monitors, output style, and user config. Local-first; the same agents deploy headless to Claude Managed Agents via scripts/cma.
Push Claude Code notifications (turn results, human-in-the-loop alerts) to a shared IM chat room. Outbound-only, zero LLM tokens, no Node.js.
A cloud-native software delivery agent team. Seven roles across a Build → Ship → Accept → Promote lifecycle (planner, engineer, reviewer, operator, black-box e2e-tester, marketer, coordinator) and four workflows, building one monorepo derived from github.com/aws300/scaffold. Local-first; the same agents deploy headless to Claude Managed Agents via scripts/cma.
Ultra-compressed communication mode. Cuts 65% of output tokens (measured) while keeping full technical accuracy by speaking like a caveman.
Consult multiple AI coding agents (Gemini, OpenAI, Grok, Perplexity, plus codex, antigravity, and grok CLIs when installed) to get diverse perspectives on coding problems
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
Feature development with code-architect/explorer/reviewer agents, CLAUDE.md audit and session learnings, and Agent Skills creation with eval benchmarking from Anthropic.
Continuous self-referential AI loops for interactive iterative development, implementing the Ralph Wiggum technique. Run Claude in a while-true loop with the same prompt until task completion.