Skip to content

Releases: webdevtodayjason/sub-agents

v1.4.0 - Context-Forge Integration & Enhanced Commands

28 Jul 17:42

Choose a tag to compare

🎉 Claude Sub-Agents v1.4.0

This release brings full integration with context-forge projects and powerful new commands for project management.

✨ What's New

🛠️ Context-Forge Integration

  • Automatic Detection: Detects context-forge projects and adapts behavior
  • Smart Command Placement: Commands go to .claude/commands/agents/ to avoid conflicts
  • PRP Awareness: Agents understand and work with your existing PRPs
  • CLAUDE.md Integration: Appends configuration without overwriting existing content

📦 New Commands

claude-agents init - Initialize agents in your project

  • Installs all agents to .claude/agents/
  • --respect-context-forge flag preserves existing structure
  • Adds concurrent execution rules to CLAUDE.md
  • Perfect for one-command project setup

claude-agents uninstall - Bulk agent removal

  • --all flag removes all agents
  • --clean flag removes empty directories
  • Scope selection (user/project/both)
  • Preserves context-forge files

⚡ Performance Enhancements

  • Concurrent Execution Rules: Enforces best practices in CLAUDE.md
  • Batch Operations: All operations optimized for parallel execution
  • Smart Memory Management: Enhanced context sharing between agents

🐛 Bug Fixes

  • Fixed project scope installation to correctly use .claude/ directory
  • Improved path resolution for various npm configurations
  • Better error messages and debug logging

📚 Usage Examples

For Context-Forge Projects

# Initialize with context-forge awareness
claude-agents init --respect-context-forge

# Agents work with your PRPs
claude-agents run project-planner --task "Create roadmap from existing PRPs"
claude-agents run api-developer --task "Implement endpoints from feature-auth-prp.md"

Agent Task Examples

# Planning & Architecture
claude-agents run project-planner --task "Break down auth-prp into sprint tasks"

# Implementation
claude-agents run api-developer --task "Create REST API following our conventions"
claude-agents run frontend-developer --task "Build UI from feature-dashboard-prp.md"

# Quality & Testing
claude-agents run tdd-specialist --task "Create tests for authentication flow"
claude-agents run code-reviewer --task "Review API endpoints for security"

🔄 Upgrading

npm update -g @webdevtoday/claude-agents

📖 Documentation

Full documentation and examples at: https://github.com/webdevtodayjason/sub-agents

🙏 Thanks

Special thanks to all contributors and the context-forge community for feedback and testing!

Release v1.2.0

27 Jul 17:54

Choose a tag to compare

Release v1.2.0

What's New

  • Complete AI development shop with 15 specialized agents
  • Added shadcn-ui-builder agent for UI/UX development
  • Enhanced agent coordination and performance

Bug Fixes

  • Fixed __dirname error in ESM modules
  • Restored correct package name and version

Improvements

  • Improved concurrent execution patterns
  • Enhanced memory system for agent coordination
  • Better performance optimization guidelines

v1.0.2: ESM Module Compatibility Fix

26 Jul 12:00

Choose a tag to compare

🐛 Bug Fix

This release fixes a critical issue that prevented installation on WSL2 and other environments.

Fixed

  • ESM Module Error: Fixed __dirname is not defined error when installing agents (#1)
  • WSL2 Compatibility: Agents now install correctly on Windows Subsystem for Linux

Technical Details

  • Added proper __dirname definition for ES modules in install.js
  • Uses fileURLToPath and dirname from Node.js built-in modules

Installation

npm install -g @webdevtoday/claude-agents@1.0.2

Credits

Thanks to @leex279 for reporting this issue!

Full Changelog: v1.0.1...v1.0.2

v1.0.1: Agent Removal & Enhanced User Experience

25 Jul 11:18

Choose a tag to compare

What's New in v1.0.1 🚀

✨ New Features

  • Remove Command: Safely uninstall agents with claude-agents remove <agent> (alias: uninstall)
  • Enhanced Status Indicators:
    • In Use (green) - Agent is installed and active
    • ⚠️ Disabled (yellow) - Agent is installed but disabled
    • Available (gray) - Agent can be installed
  • Better Error Messages: Helpful suggestions when agents are not found

🎨 Improvements

  • Confirmation prompts for safe agent removal
  • Improved enable/disable commands with installation guidance
  • Visual indicators for better user experience

📈 SEO Optimization

  • Enhanced package description for better NPM discoverability
  • Expanded keywords from 10 to 30+ relevant terms
  • Improved README with keyword-rich content
  • Added star history chart and downloads badge

📦 Installation

npm install -g @webdevtoday/claude-agents@1.0.1

🙏 Thank You

Thanks to everyone using Claude Sub-Agents! Your feedback helps make this tool better.

Full Changelog: v1.0.0...v1.0.1