claude-agents-library

作者 aiagentskit已验证

Claude Agents Library

748
Stars
121
Forks
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/aiagentskit/claude-agents-library

快速入门

使用 claude-agents-library 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

🤖 Claude Agents Library

License: MIT Agents Categories Version

34 Production-Ready AI Agents for Claude — Copy, paste, and customize for any professional role

Quick StartFind an AgentCategoriesMCP IntegrationCost Optimizationwww.aiagentskit.com


📖 Table of Contents


🆕 What's New in v1.2 (January 16, 2026)

[!NOTE] Latest update brings powerful new features for cost optimization and productivity!

  • 7 MCP Integration Patterns — Copy-paste workflows with code examples
  • Model Selection Matrix — 30+ task-specific recommendations with costs
  • Agent Selection Guide — Find agents by role, task, or team size
  • Cost Optimization — Save up to 82% on Claude API costs
  • Time Savings Data — 40+ documented efficiency gains

What is This?

This is a curated library of 34 specialized Claude agent configurations organized into 7 professional categories. Each agent is a detailed markdown file containing:

  • Purpose — Who the agent is and what they excel at
  • Core Responsibilities — Specific tasks and behaviors
  • Key Skills — Tools, technologies, and expertise
  • Communication Style — How the agent interacts
  • Example Prompts — Ready-to-use prompts
  • Related Agents — Connections to other agents

Why Use Agents?

[!TIP] Agents transform Claude from a general assistant into a domain expert with consistent behavior and specialized knowledge.

Instead of writing prompts from scratch every time, agents give Claude a persistent persona with domain expertise, consistent behavior, and task-specific knowledge.

Simple prompt:

Help me write a marketing email.

With an agent:

# Content Creator Agent

You are an expert content marketer with 10+ years of experience 
creating high-converting copy for B2B SaaS companies...

The difference? Consistent quality, faster results, and expertise on demand.

🎯 Quick Agent Finder

Not sure which agent you need? Use these guides:

By Your Role

Your RoleEssential AgentsAdditional Agents
Full-Stack DeveloperFrontend Developer, Backend ArchitectDevOps Automator, API Tester
Product ManagerSprint Prioritizer, Feedback SynthesizerTrend Researcher, Experiment Tracker
Marketing LeadGrowth Hacker, Content CreatorSocial media strategists, Analytics Reporter
Designer (UI/UX)UI Designer, UX ResearcherBrand Guardian, Visual Storyteller
DevOps EngineerDevOps Automator, Infrastructure MaintainerBackend Architect, Performance Benchmarker

See full selection guide: AGENT-SELECTION-GUIDE.md

By Common Task

TaskBest AgentTime Savings
Write code for new featureFrontend/Backend Developer40-60%
Review PR/code changesFrontend/Backend Developer50-70%
Design system architectureBackend Architect60-75%
Write marketing copyContent Creator55-70%
Analyze user feedbackFeedback Synthesizer70-80%
Create data dashboardAnalytics Reporter60-75%

See 20+ more tasks: AGENT-SELECTION-GUIDE.md

Categories

CategoryAgentsDescription
Engineering6Frontend, backend, mobile, AI, DevOps, prototyping
Product3Research, feedback synthesis, prioritization
Marketing7Social media, content, growth, ASO
Design5UI/UX, branding, visual storytelling
Project Management3Shipping, tracking, coordination
Studio Operations5Support, analytics, compliance, finance
Testing5QA, API testing, performance, evaluation

The Agents

🔧 Engineering (6 agents)
📦 Product (3 agents)
📢 Marketing (7 agents)
🎨 Design (5 agents)
📋 Project Management (3 agents)
⚙️ Studio Operations (5 agents)
🧪 Testing (5 agents)

Quick Start

1. Using with Claude Code

Create the agent directory in your project:

mkdir -p .claude/agents
cp -r ./engineering ./.claude/agents/
cp -r ./product ./.claude/agents/
# ... or copy specific agents you need

Reference in your CLAUDE.md:

# Project Agents

## Active Agents
- [Frontend Developer](https://github.com/aiagentskit/claude-agents-library/blob/main/.claude/agents/engineering/frontend-developer.md)
- [UI Designer](https://github.com/aiagentskit/claude-agents-library/blob/main/.claude/agents/design/ui-designer.md)

2. Using with Claude Chat

Copy the agent content and paste it as context:

"Acting as the Backend Architect agent, design a database schema for a multi-tenant SaaS app."

3. Combining Multiple Agents

For complex work, reference multiple agents:

"Using both the Growth Hacker and Analytics Reporter agents, analyze our funnel data and propose experiments."

🔗 MCP Integration

These agents work great with Claude's Model Context Protocol (MCP).

Quick MCP Examples

AgentMCP ServerEnhancementTime Savings
Backend ArchitectDatabase MCPDirect schema analysis70%
Frontend DeveloperFilesystem + GitHub MCPComponent development + PR60%
DevOps AutomatorGitHub MCPAutomated PR reviews65%
Analytics ReporterDatabase MCP (read-only)Real-time dashboards80%
Content CreatorBrowser + Filesystem MCPResearch + drafting60%

Get 7 complete MCP workflows: MCP-INTEGRATION-GUIDE.md

Basic MCP Setup

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/project"]
    },
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": {"GITHUB_TOKEN": "your_token"}
    }
  }
}

💰 Cost Optimization

[!IMPORTANT] Using agents efficiently can save up to 82% on Claude API costs!

StrategySavingsHow
Prompt Caching90%Cache agent definitions in system prompt
Model Selection82%Use Haiku for simple tasks, Opus only when needed
Batch Processing70%Process multiple items in one request
Smart Context99%Include only relevant code/data

Example Monthly Costs:

  • Always using Opus: ~$2,400/month
  • Optimized strategy: ~$430/month
  • 💰 Savings: 82% ($1,970/month)

Get full cost guide: MODEL-SELECTION-GUIDE.md

Customization

These agents are starting points. Customize by:

  1. Adding company context — Include your tech stack, brand voice
  2. Adjusting tone — Make more formal or casual
  3. Expanding skills — Add tools specific to your workflow
  4. Linking agents — Update related agents for your team

Version History

VersionDateChanges
v1.2Jan 16, 2026Added MCP patterns, model selection matrix, agent selection guide, cost optimization
v1.1Jan 13, 2026MCP integration basics, Claude best practices, EU AI Act compliance
v1.0Nov 25, 2025Initial release with 34 agents across 7 categories

Contributing

Contributions welcome! See CONTRIBUTING.md for guidelines.

  • Add new agents via pull request
  • Improve existing agents with better prompts
  • Fix issues and enhance documentation

License

MIT License — See LICENSE for details.


🤖 Start Building with AI Agents Today!

Created by The Vibe Coder — Your guide to building with AI agents

📚 Learn more at AIAgentsKit.com | ⭐ Star this repo | ⬆ Back to Top

常见问题

What is claude-agents-library?

claude-agents-library is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by aiagentskit. Claude Agents Library. It has 748 GitHub stars.

Is claude-agents-library safe to use?

Yes. claude-agents-library passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install claude-agents-library?

Clone the repository with "git clone https://github.com/aiagentskit/claude-agents-library" and add it to your Claude Code skills directory (see the Installation section above).

Are there alternatives to claude-agents-library?

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 claude-agents-library against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情