Claude Code Sub Agent Manager. A simple Manager for adding Claude Code Sub Agents with hooks and custom slash commands.
# Add to your Claude Code skills
git clone https://github.com/webdevtodayjason/sub-agentsLast scanned: 5/30/2026
{
"issues": [
{
"type": "npm-audit",
"message": "ajv: ajv has ReDoS when using `$data` option",
"severity": "medium"
},
{
"type": "npm-audit",
"message": "brace-expansion: brace-expansion: Zero-step sequence causes process hang and memory exhaustion",
"severity": "medium"
},
{
"type": "npm-audit",
"message": "external-editor: Vulnerability found",
"severity": "low"
},
{
"type": "npm-audit",
"message": "flatted: flatted vulnerable to unbounded recursion DoS in parse() revive phase",
"severity": "high"
},
{
"type": "npm-audit",
"message": "inquirer: Vulnerability found",
"severity": "low"
},
{
"type": "npm-audit",
"message": "js-yaml: js-yaml has prototype pollution in merge (<<)",
"severity": "medium"
},
{
"type": "npm-audit",
"message": "minimatch: minimatch has a ReDoS via repeated wildcards with non-matching literal in pattern",
"severity": "high"
},
{
"type": "npm-audit",
"message": "tmp: tmp allows arbitrary temporary file / directory write via symbolic link `dir` parameter",
"severity": "high"
},
{
"type": "npm-audit",
"message": "yaml: yaml is vulnerable to Stack Overflow via deeply nested YAML collections",
"severity": "medium"
}
],
"status": "WARNING",
"scannedAt": "2026-05-30T15:42:40.852Z",
"npmAuditRan": true,
"pipAuditRan": true
}sub-agents is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by webdevtodayjason. Claude Code Sub Agent Manager. A simple Manager for adding Claude Code Sub Agents with hooks and custom slash commands. It has 198 GitHub stars.
sub-agents returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.
Clone the repository with "git clone https://github.com/webdevtodayjason/sub-agents" and add it to your Claude Code skills directory (see the Installation section above).
sub-agents is primarily written in JavaScript. It is open-source under webdevtodayjason on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh sub-agents against similar tools.
No comments yet. Be the first to share your thoughts!
Requires a passing catalog security scan. Resolve the flagged issues and resubmit to enable featuring.
[!IMPORTANT]
๐๏ธ This project is archived (June 2026)
@webdevtoday/claude-agentsis no longer maintained. When it was built (mid-2025) it filled a real gap: there was no first-class way to install and manage a pack of subagents, slash commands, and hooks in Claude Code. Claude Code now provides all of that natively โ so a framework that copies these files into your project is no longer needed.Use the built-in primitives instead:
- Subagents โ specialized workers with their own context, auto-delegated by description โ https://code.claude.com/docs/en/sub-agents
- Skills โ reusable workflows/knowledge invoked with
/nameor auto-loaded (custom slash commands have been merged into skills) โ https://code.claude.com/docs/en/skills- Hooks โ event-driven automation โ https://code.claude.com/docs/en/hooks
- Plugins + marketplaces โ the modern way to package and share a bundle of agents/skills/hooks/MCP across projects and teams โ https://code.claude.com/docs/en/plugins
- Memory โ CLAUDE.md plus native auto-memory replace the in-process "memory" store this tool simulated โ https://code.claude.com/docs/en/memory
The final release (
v1.5.5) is left intact for reference. Thanks to everyone who used or contributed to it. The content below is preserved as historical documentation.
๐ Supercharge Claude Code with Specialized AI Sub-Agents for Code Review, Testing, Debugging & More
Transform your development workflow with intelligent AI assistants that excel at specific programming tasks
Installation โข Quick Start โข Available Agents โข Documentation โข Contributing
Claude Sub-Agents Manager is a powerful CLI tool that enhances Claude Code with specialized AI assistants designed for specific development tasks. Each sub-agent is an expert in its domain - from automated code reviews and test fixing to intelligent debugging and documentation generation. Install production-ready agents instantly or create custom agents tailored to your unique workflow needs.
claude-agents voice --setupclaude-agents voice commandclaude-agents init for one-command project setup# Install latest version
npm install -g @webdevtoday/claude-agents@latest
# Or install without @latest (gets latest by default)
npm install -g @webdevtoday/claude-agents
# Install latest version
yarn global add @webdevtoday/claude-agents@latest
git clone https://github.com/webdevtodayjason/sub-agents.git
cd sub-agents
npm install
npm link
If you already have claude-agents installed:
# Update to latest version
npm update -g @webdevtoday/claude-agents@latest
# Or with yarn
yarn global upgrade @webdevtoday/claude-agents@latest
After updating the package, update your projects to get the latest features:
# In your project directory, run init to update hooks and configurations
claude-agents init
# This will:
# - Update Claude Code hooks to latest versions
# - Merge new hook configurations into existing settings.json
# - Add any new agent features
# - Preserve your existing configurations
# Initialize all agents in your project
claude-agents init
# List available agents
claude-agents list
# Initialize with context-forge awareness
claude-agents init --respect-context-forge
# Agents will:
# - Detect existing PRPs and CLAUDE.md
# - Place commands in .claude/commands/agents/
# - Append to CLAUDE.md without overwriting
# - Work alongside your existing setup
Voice announcements provide real-time audio feedback when agents complete tasks in Claude Code.
# Run the interactive setup wizard
claude-agents voice --setup
# Or configure manually
claude-agents voice --enable
claude-agents voice --provider mcp # or openai, local
brew install ffmpegchoco install ffmpeg or download from ffmpeg.orgsudo apt-get install ffmpeg# Test with default message
claude-agents voice --test
# Test with custom message
claude-agents voice --test "Hello from Claude Agents"
# Check voice status
claude-agents voice --status
# Project Planning - Reads and understands your PRPs
claude-agents run project-planner --task "Create implementation roadmap from existing PRPs"
claude-agents run project-planner --task "Break down auth-prp into sprint tasks"
# API Development - PRP-aware implementation
claude-agents run api-developer --task "Implement user endpoints from feature-auth-prp.md"
claude-agents run api-developer --task "Create REST API following our conventions"
# Frontend Development
claude-agents run frontend-developer --task "Build login UI matching dark-theme-ui-prp"
claude-agents run frontend-developer --task "Create dashboard from feature-dashboard-prp.md"
# Testing & Quality
claude-agents run tdd-specialist --task "Create tests for authentication flow"
claude-agents run code-reviewer --task "Review API endpoints for security"
claude-agents run security-scanner --task "Scan authentication implementation"
# Documentation
claude-agents run api-documenter --task "Generate OpenAPI spec from implemented endpoints"
claude-agents run doc-writer --task "Update Implementation.md with progress"
# Debugging & Refactoring
claude-agents run debugger --task "Analyze login timeout issue"
claude-agents run refactor --task "Improve error handling in auth module"
# DevOps & Deployment
claude-agents run devops-engineer --task "Setup CI/CD for main branch"
claude-agents run devops-engineer --task "Create Docker configuration"
# Product & Marketing
claude-agents run product-manager --task "Create user stories from PRPs"
claude-agents run marketing-writer --task "Write feature announcement for auth system"
# Agent Chaining - NEW!
claude-agents chain feature-development # Full development pipeline