45 production-ready AI agents for Claude Code - Install specialized agents for Swift, testing, documentation, CI/CD, and more
This plugin is not yet in any themed marketplace. To install it, you'll need to add it from GitHub directly.
Choose your preferred installation method below
A marketplace is a collection of plugins. Every plugin gets an auto-generated marketplace JSON for individual installation, plus inclusion in category and themed collections. Add a marketplace once (step 1), then install any plugin from it (step 2).
One-time setup for access to all plugins
When to use: If you plan to install multiple plugins now or later
Step 1: Add the marketplace (one-time)
/plugin marketplace add https://claudepluginhub.com/marketplaces/all.json
Run this once to access all plugins
Step 2: Install this plugin
/plugin install swift-agents-plugin@all
Use this plugin's auto-generated marketplace JSON for individual installation
When to use: If you only want to try this specific plugin
Step 1: Add this plugin's marketplace
/plugin marketplace add https://claudepluginhub.com/marketplaces/plugins/swift-agents-plugin.json
Step 2: Install the plugin
/plugin install swift-agents-plugin@swift-agents-plugin
44 production-ready AI agents for Claude Code - Install specialized agents for Swift, testing, documentation, CI/CD, and more.
# Install the CLI
cd swift-agents-plugin
swift package experimental-install --product claude-agents
# List available agents
claude-agents list
# Install essential agents globally
claude-agents install swift-architect test-builder code-reviewer --global
# Install all 44 agents
claude-agents install --all --global
That's it! Your agents are ready to use in Claude Code.
Swift Agents Plugin provides a curated library of specialized AI agents that extend Claude Code's capabilities. Instead of writing agent markdown from scratch, choose from 44 production-ready agents covering:
# iOS Development
claude-agents install swift-architect swift-developer swiftui-specialist --global
# Full-Stack Development
claude-agents install architect test-builder code-reviewer --global
# Documentation & Content
claude-agents install swift-docc blog-content-writer documentation-verifier --global
# CI/CD Pipeline
claude-agents install azure-devops git-pr-specialist --global
Ensure ~/.swiftpm/bin
is in your PATH:
export PATH="$HOME/.swiftpm/bin:$PATH"
Then install:
git clone https://github.com/doozMen/swift-agents-plugin.git
cd swift-agents-plugin
swift package experimental-install --product claude-agents
claude-agents list # List all 44 available agents
claude-agents list --verbose # Include descriptions
claude-agents list --tool Bash # Filter by tool capability
claude-agents list --installed # Show what's installed
claude-agents install <agent-name> --global # Install globally
claude-agents install <agent-name> --local # Install to current project
claude-agents install --all --global # Install everything
claude-agents install --all --force --global # Update all agents
claude-agents uninstall <agent-name> # From global
claude-agents uninstall <agent-name> --target local # From project
Agent | Model | Purpose |
---|---|---|
architect | Opus | System design and architecture across all languages |
test-builder | Haiku | Creates comprehensive test suites efficiently |
code-reviewer | Sonnet | Thorough code reviews with actionable feedback |
Agent | Purpose |
---|---|
swift-architect | Swift 6.0 patterns, actors, async/await |
swift-developer | Feature implementation, iOS development |
swiftui-specialist | SwiftUI best practices and components |
swift-modernizer | Migrate legacy code to Swift 6.0 |
swift-testing-specialist | Swift Testing framework expertise |
Agent | Purpose |
---|---|
swift-docc | Swift DocC and API documentation |
documentation-verifier | Review and improve documentation |
blog-content-writer | Technical blog posts and articles |
Agent | Purpose |
---|---|
azure-devops | Azure DevOps pipelines and automation |
git-pr-specialist | PR/MR workflows across platforms |
github-specialist | GitHub MCP for pull requests, issues, and Actions |
gitlab-specialist | GitLab CI/CD pipelines |
This CLI is available as a Claude Code plugin for easy discovery and installation.
Complete Installation:
# Install the swift-agents-plugin
/plugin marketplace add doozMen/swift-agents-plugin && /plugin install swift-agents-plugin@doozMen
This installs:
All 44 agents are available immediately after installation!
Enhanced Capabilities with edgeprompt MCP:
For local LLM capabilities and enhanced agent routing, configure the edgeprompt MCP server:
# Clone and install edgeprompt MCP server
git clone https://github.com/doozMen/edgeprompt.git
cd edgeprompt
swift package experimental-install --product edgeprompt
# Configure in ~/.claude/claude_mcp_settings.json
What edgeprompt MCP provides:
git clone https://github.com/doozMen/swift-agents-plugin.git
cd swift-agents-plugin
swift package experimental-install --product claude-agents
claude-agents install --all --global
/plugin
commands (recommended)Plugin Features:
The official claude-code
CLI includes basic agent management. This tool provides:
swift-agents-plugin/
├── .claude-plugin/ # Plugin manifests for marketplace
│ ├── plugin.json # Plugin metadata
│ └── marketplace.json # Marketplace submission
├── Sources/claude-agents-cli/
│ ├── Commands/ # CLI commands
│ ├── Models/ # Data models
│ ├── Services/ # Business logic
│ └── Resources/agents/ # 44 embedded agents
├── assets/ # Marketplace images
└── docs/ # Detailed documentation
NEW: Use ClaudeAgents as a Swift library in your own projects!
// Add to your Package.swift
.package(url: "https://github.com/doozMen/swift-agents-plugin.git", from: "1.5.0")
// Use in your code
import ClaudeAgents
let repository = AgentRepository()
let agents = try await repository.loadAgents()
let swiftArchitect = try await repository.getAgent(named: "swift-architect")
print(swiftArchitect.content) // Full markdown content
Perfect for:
MIT - See LICENSE file
Made with ❤️ for the Claude Code community
1.5.0