By dralgorhythm
Drop-in Claude Code framework: swarm orchestration workflows, curated knowledge skills, tiered worker agents, and fail-soft guardrail hooks.
Senior architecture decisions. Use for complex design problems requiring deep analysis.
Implementation, testing, and refactoring worker for swarm tasks. Use for parallel coding, test writing, and code cleanup.
Codebase exploration and web research worker. Use for pattern search, dependency mapping, quick API/doc lookup, and library comparison.
Deep research and investigation worker. Use for multi-source analysis, technology evaluation, competitive research, and comprehensive documentation.
Code review, security audit, and QA worker for swarm tasks. Use for parallel review, vulnerability detection, and quality assessment.
Run an adversarial, multi-perspective code review with root-cause analysis and security focus — a user-invoked Adversarial Reviewer workflow.
Detects the project's stack from manifests and proposes tailored framework configuration — filled tech-strategy golden paths, REVIEW.md/CLAUDE.md review steering, and a prune list of unused framework pieces — as a reviewable plan, never silent writes.
Design interfaces and validate accessibility against WCAG 2.1 with DevTools-backed checks — a user-invoked UI/UX Designer workflow.
Design systems and record architecture decisions as ADRs — a user-invoked Principal Architect workflow.
Translate plans into working, tested code through implementation, debugging, and refactoring — a user-invoked Builder workflow.
Executes bash commands
Hook triggers when Bash tool is used
Modifies files
Hook triggers on file write and edit operations
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.
Uses power tools
Uses power tools
Uses Bash, Write, or Edit tools
Uses Bash, Write, or Edit tools
A drop-in template for Claude Code projects. Adds coordinated multi-agent swarms, specialized workflow skills, a lean core of reusable library skills, and safety hooks — all configured through a single install command.
Clone or copy the repo's files directly into your project. This is the only path that gives you everything: skills, agents, hooks, .claude/settings.json permission rules (including the permissions.deny secret-file guards), and .claude/rules/ (tech strategy, security standards, core directives).
git clone https://github.com/dralgorhythm/claude-agentic-framework.git
cd your-project
../claude-agentic-framework/scripts/init-framework.sh .
To pin to a known-good release: git checkout vX.Y.Z before running the script.
(Clone-then-run, deliberately — this framework's own permission rules deny pipe-to-shell installs, and its docs tell you to review scripts before executing them. Practice what we ship.)
The script will:
.claude/ (skills, rules, hooks, agents, templates).mcp.json (MCP server configuration)CLAUDE.md and AGENTS.md (project instructions)artifacts/ directory for planning documents.gitignore entriesThe script prompts before overwriting any existing files. To pull in framework updates, cd into your clone, git pull, then re-run the script. The framework is zero-install — no dependencies to fetch. New versions are announced on the GitHub Releases page.
After install:
CLAUDE.md — Add your build/test commands and project context.claude/rules/tech-strategy.md — Configure your tech stack (this is required — the framework enforces whatever you put here)/architect helloInstall directly inside a Claude Code session, no cloning required:
/plugin marketplace add dralgorhythm/claude-agentic-framework
/plugin install agentic-framework@agentic-framework
This gets you the skills, the five worker agents, and the guardrail hooks, wired up automatically. It does not replace cloning the repo — it's a lighter-weight path with real gaps:
/agentic-framework:architect, /agentic-framework:builder, etc., not the bare /architect names used in the raw drop-in..claude/settings.json permission rules ship with the plugin. The permissions.deny guards for secrets, .env*, and other sensitive paths are repo-level configuration — a plugin install will not add them to your project. You get the hooks that warn/guard, but not the deny-layer enforcement described above..claude/rules/ ship with the plugin. tech-strategy.md, security.md, core-directives.md, agent-constraints.md, and code-quality.md are repo-level files, not plugin content — they won't appear in your project via plugin install.permissionMode frontmatter. Any per-agent permission mode set in an agent's frontmatter is not honored when the agent is loaded as a plugin agent.If you need the full guardrail set (deny rules, rules directory, settings.json), use the raw drop-in instead — the plugin path trades completeness for a faster, in-session install.
Plugin content updates at each tagged release — run /plugin update to pull the latest; after updating, check MIGRATION.md for breaking changes.
For maintainers: validate packaging with claude plugin validate --strict . (marketplace) and claude plugin validate .claude-plugin/plugin.json (plugin — reports one expected warning that the repo-level CLAUDE.md is not loaded as plugin context; that is by design, per the caveats above).
This repo currently ships with no LICENSE file; nothing here should be read as a license grant.
.claude/skills/ isn't a Claude-only format anymore. Agent Skills is an open standard now supported by 40+ Agent Skills clients (see agentskills.io) — the GitHub Copilot agent family (cloud agent, code review, CLI, VS Code/JetBrains agent mode) and standalone VS Code all discover and read skills from .claude/skills/ in place, no conversion step required. That means the catalog travels with the repo regardless of which client opens it. Claude Code-specific frontmatter (model, argument-hint, disable-model-invocation, and similar) sits outside the shared spec; non-Claude readers ignore fields they don't recognize rather than failing on them, so the same files degrade gracefully across tools.
Three findings anchor the design, dated because the evidence base moves:
npx claudepluginhub dralgorhythm/claude-agentic-framework --plugin agentic-frameworkContext management and multi-agent orchestration with performance optimization tools
Dynamic orchestrator plugin — 200+ agents, 200+ skills, hooks, and MCP servers. Upstream sources linked via git submodules (agency-agents, everything-claude-code, oh-my-claudecode, gstack, superpowers)
13 agents, 35 skills, 19 commands, 15 hooks — spec-driven, multi-agent orchestration for Claude Code with per-phase model tiers, opt-in lifecycle hooks, and optional cross-device semantic memory.
Agentic Working Kit — disciplined agents, skills, slash commands, and tool-level gate hooks (commit/push approval, destructive-op & write guards, context-fill measurement, session rehydration) for Claude Code. The git-commit trace/secret/bloat scan needs the full install (start.sh / adopt.sh).
Unified capability management center for Skills, Agents, and Commands.
Battle-tested configuration system for Claude Code agents: 28 architectural principles (incl. P-28 Feature-Layer Architecture for project-knowledge-as-a-navigable-tree), 19 safety hooks, 23 skills (incl. /layer-new + /feature-new for ULTRAPACK-style feature narratives), 16 alternative comparisons, 12 templates (incl. extended kb-skeleton with docs/layers/), diagnostic scripts (incl. build_kb_graph.py + validate_kb_links.py). Pairs with mclaude for multi-session coordination.