ワンクリックで
agent-skills
Production-grade engineering skills for AI coding agents — slash commands mapping to the full dev lifecycle
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Production-grade engineering skills for AI coding agents — slash commands mapping to the full dev lifecycle
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
| name | agent-skills |
| description | Production-grade engineering skills for AI coding agents — slash commands mapping to the full dev lifecycle |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["ai-agents","coding","engineering","skills","claude-code"],"related_skills":["hermes-agent"]}} |
Production-grade engineering skills by Addy Osmani that encode senior engineering practices into reusable skill files for AI coding agents. Works across Claude Code, Cursor, Codex CLI, and more.
# Via marketplace
/plugin marketplace add addyosmani/agent-skills
/plugin install agent-skills@addy-agent-skills
# Or clone locally
git clone https://github.com/addyosmani/agent-skills.git
claude --plugin-dir /path/to/agent-skills
| Command | Purpose |
|---|---|
/spec | Define what to build |
/plan | Plan implementation tasks |
/build | Build incrementally |
/build auto | Autonomous full build |
/test | Run and verify tests |
/review | Code review |
/code-simplify | Simplify code |
/ship | Deploy to production |
# In Claude Code, after defining a spec:
/build auto
# This generates a plan and implements all tasks autonomously
# Each task is test-driven and committed individually
# Pauses on failures or risky steps
/build auto requires a well-defined spec — vague specs lead to autonomous runs that deviate.# Verify skills are loaded (in Claude Code)
/plugin list
# Test with a simple task
/spec build a hello world CLI tool
/plan
/build
/test