Agent Skills by latestaiagents
67 professional skills + 7 full-featured plugins for AI coding agents — organized by audience so you can find exactly what you need.
Works with Claude Code, Claude Cowork, Cursor, Codex, Windsurf, and 35+ other AI agents.
# Cross-platform skills (works with any AI agent)
npx skills add latestaiagents/agent-skills --all
# Claude Code / Cowork plugins (with MCP integrations)
/plugin marketplace add latestaiagents/agent-skills
/plugin install devops-sre@latestaiagents-agent-skills
Quick Start
Option 1: Skills CLI (Cross-Platform)
Works with Claude Code, Cursor, Codex, Windsurf, Cline, Aider, and 35+ other AI agents.
npx skills add latestaiagents/agent-skills --all
Option 2: Claude Code / Cowork Plugins
Full plugins with MCP tool integrations and slash commands. Works with Claude Code CLI and Claude Cowork desktop app.
# Step 1: Add our marketplace
/plugin marketplace add latestaiagents/agent-skills
# Step 2: Install plugins you need
/plugin install devops-sre@latestaiagents-agent-skills
/plugin install qa-testing@latestaiagents-agent-skills
/plugin install hr-people-ops@latestaiagents-agent-skills
Install by Audience
| You Are | Skills CLI | Claude Plugin |
|---|
| Everyone | npx skills add latestaiagents/agent-skills/skills/safety --all | /plugin install safety@latestaiagents-agent-skills |
| Developer | npx skills add latestaiagents/agent-skills/skills/developer --all | /plugin install developer-toolkit@latestaiagents-agent-skills |
| DevOps/SRE | npx skills add latestaiagents/agent-skills/skills/mlops --all | /plugin install devops-sre@latestaiagents-agent-skills |
| RAG Engineer | npx skills add latestaiagents/agent-skills/skills/rag-architect --all | /plugin install rag-plugin@latestaiagents-agent-skills |
| Security Engineer | npx skills add latestaiagents/agent-skills/skills/security --all | /plugin install security-guardian@latestaiagents-agent-skills |
| QA/Testing | — | /plugin install qa-testing@latestaiagents-agent-skills |
| HR/People Ops | — | /plugin install hr-people-ops@latestaiagents-agent-skills |
What Are Skills?
Skills are instructions that teach AI agents how to handle specific tasks. After installation, your AI assistant automatically knows:
- How to resolve merge conflicts systematically (not just "fix it somehow")
- How to safely run database migrations (backup first, check existing data)
- How to design multi-agent systems (patterns that actually work)
- When to ask for confirmation before destructive operations
No special commands needed — skills activate automatically based on what you're doing.
Skill Categories
Safety (Essential for Everyone)
Safety skills that prevent accidental data loss. Recommended for all users.
npx skills add latestaiagents/agent-skills/skills/safety --all
| Skill | What It Does |
|---|
destructive-operation-guard | Core safety protocols for all destructive operations |
migration-safety | Safe database migrations with backup requirements |
database-safety | Prevent accidental DELETE, DROP, TRUNCATE |
file-operation-safety | Protection against rm -rf and bulk deletions |
git-safety | Guard against force push, reset --hard, history loss |
Developer (For Software Developers)
Git workflows, code intelligence, and debugging tools — 19 skills total.
npx skills add latestaiagents/agent-skills/skills/developer --all
Git Mastery (6 skills)
| Skill | What It Does |
|---|
merge-conflict-surgeon | Step-by-step conflict resolution with context analysis |
commit-message-crafter | Conventional commits that tell a story |
branch-strategy-advisor | GitFlow vs trunk-based — choose what fits |
git-history-detective | Find exactly when and where bugs were introduced |
rebase-safely | Interactive rebase without losing work |
git-undo-wizard | Recover from reset, rebase, and force push disasters |
Code Intelligence (7 skills)
| Skill | What It Does |
|---|
codebase-context-builder | Create CLAUDE.md and optimal context for AI |
ai-code-reviewer | Systematic review of AI-generated code |
refactor-with-ai | Safe, incremental refactoring workflows |
test-generation-patterns | AI-driven test creation that actually works |
debug-with-ai | Structured debugging: hypothesize → verify → fix |
doc-sync-automation | Keep docs updated when code changes |
code-explanation-generator | Clear explanations for complex code |
Debug Detective (6 skills)