agentic — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited agentic (Rules) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Enable any AI Agent to gain Skills capability with one click, driving Agent self-evolution
📖 中文文档 (Chinese Documentation)
We believe AI Agents should have the ability to self-evolve—not just execute tasks, but also learn new skills and create new tools.
Skills are the core mechanism to realize this vision:
Agent Skills enables any AI Agent to gain this capability with one click:
┌─────────────────────────────────────────────────────────────┐
│ Your AI Agent │
│ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ LangChain │ │ Claude │ │ Custom │ │
│ │ Agent │ │ Desktop │ │ Agent │ │
│ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │
│ │ │ │ │
│ └────────────────┼────────────────┘ │
│ │ │
│ ▼ │
│ ┌───────────────────────┐ │
│ │ Agent Skills │ │
│ │ ┌─────┐ ┌─────────┐ │ │
│ │ │ MCP │ │Middleware│ │ │
│ │ └─────┘ └─────────┘ │ │
│ └───────────────────────┘ │
│ │ │
│ ▼ │
│ ┌───────────────────────┐ │
│ │ Skills Ecosystem │ │
│ │ PDF | Code Review │ │
│ │ Data Analysis | ... │ │
│ └───────────────────────┘ │
└─────────────────────────────────────────────────────────────┘skills_* tools with atomic functionality, easy to understandskill-creator when using custom skills directoryIn addition to the core framework capabilities, we provide several carefully designed skills ready to use:
| Skill | Description | Highlights |
|---|---|---|
| 🛠️ skill-creator | Meta-skill that teaches you how to create new skills | Complete creation guide and templates |
| Comprehensive PDF processing toolkit | Text extraction, table parsing, merge/split, form filling | |
| 🌐 website_design | Website design system | Monochrome, Bauhaus and other unique style specifications |
| ⬇️ file-downloader | File downloader | HTTP/HTTPS support, automatic filename detection |
🌟 We look forward to you creating more interesting skills! Using the skill-creator meta-skill, you can easily package your professional knowledge and tools. If you create useful skills, feel free to contribute to the community.docker build -t agent-skills:latest -f docker_config/Dockerfile .Option A: Claude Desktop / Cursor (MCP)
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"agent-skills": {
"command": "docker",
"args": ["run", "-i", "--rm",
"-v", "~/.agent-skills/skills:/skills",
"-v", "/Users:/Users",
"agent-skills:latest"]
}
}
}The two mounts serve these purposes:
~/.agent-skills/skills:/skills - Skills directory (required), modify to your preferred storage location/Users:/Users - Host file access (optional, for scripts to read/write external files)💡 Tip: To get the same effect as Middleware (which can inject system prompts) when using MCP, add a .cursor/rules/python/skills_prompt.mdc file to your project root. This helps guide Cursor to use skills effectively. See MCP Integration for details.💡 On Linux, change/Users:/Usersto/home:/home
Option B: LangChain Application (Middleware)
from agent_skills.core.middleware import SkillsMiddleware
from deepagents import create_deep_agent
# Configure skills_dir and host directory mount
middleware = SkillsMiddleware(
skills_dir="/path/to/skills",
host_mount="/Users:/Users", # Optional, for scripts to access external files
)
agent = create_deep_agent(
tools=[],
system_prompt="You are a helpful assistant.",
middleware=middleware.get_middlewares(),
)| Document | Description |
|---|---|
| Tools Reference | Detailed explanation of 6 skills_* tools |
| MCP Integration | Claude Desktop / Cursor configuration |
| Middleware Integration | LangChain native integration |
| Examples | 4 example programs |
| Docker Environment | Pre-installed tools and environment variables |
| Skill Format | How to write and organize Skills |
# Install dependencies
uv sync
# Run tests
uv run pytest tests/ -v
# Start MCP Server locally
uv run agent-skills-serverApache 2.0
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.