一键导入
skill-creator
Create new skills from learned capabilities, enabling self-bootstrapping and permanent skill acquisition.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create new skills from learned capabilities, enabling self-bootstrapping and permanent skill acquisition.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Argue against proposed actions to test judgment quality. Not "is the code correct" but "should we be doing this at all?" Aligned with robustness, not performance.
Orchestrate Claude Code agent teams for parallel multi-agent collaboration
Learn and integrate new APIs, creating permanent skills for external service access.
Create and update CHANGELOG.md with entries that include AI model/CLI attribution, PRD context, and task references.
Audit decisions for judgment quality, compliance bias, and manipulation vulnerability. Inspired by Anthropic's Project Vend Phase 2 finding that helpfulness training creates exploitable attack surface.
Extract visual style from reference UI screenshot and codify into reusable design system.
| name | skill-creator |
| description | Create new skills from learned capabilities, enabling self-bootstrapping and permanent skill acquisition. |
| category | autonomous |
Transform any newly learned capability into a permanent, reusable skill that persists across sessions.
Analyze what was just accomplished:
Abstract from the specific instance:
skills/<skill-name>/
├── SKILL.md # Main skill definition
└── reference.md # Examples and detailed docs (optional)
Use this template:
---
name: skill-name-here
description: One-line description of what this skill does.
---
# Skill Name
## Goal
Clear statement of what this skill accomplishes.
## Process
1. First step of the process
2. Second step
3. Continue until complete
## Inputs
- Input one: description
- Input two: description
## Outputs
- Output one: description
- Where outputs are saved
## Key Principles
- Important rules
- Things to always/never do
## References
- Related skills or documentation
skills/<skill-name>/SKILL.md.agent/skills/~/.agent/skills/Tell the user:
"I've created a new skill: [skill-name]
This skill allows me to [capability description].
I can now do this anytime - it's permanently saved.
To use it: [trigger phrase or command]"
Before saving, verify:
After successfully integrating with a new API:
---
name: weather-api
description: Fetch weather data from OpenWeatherMap API.
---
# Weather API Integration
## Goal
Retrieve current weather and forecasts for any location.
## Process
1. Receive location (city name or coordinates)
2. Authenticate with API key from credentials
3. Call appropriate endpoint (current/forecast)
4. Parse response into structured data
5. Return formatted weather information
## Inputs
- Location: city name, zip code, or lat/lon
- Type: "current" or "forecast"
- Units: "metric" or "imperial" (default: metric)
## Outputs
- Temperature, conditions, humidity, wind
- For forecast: 5-day hourly breakdown
- Formatted for display or further processing
## Key Principles
- Cache responses for 10 minutes to avoid rate limits
- Handle API errors gracefully with retry
- Always include units in output
This skill enables the autonomous agent loop:
┌─────────────────────────────────────────┐
│ │
│ User Request │
│ ↓ │
│ Agent Attempts │
│ ↓ │
│ Success? ─── No ──→ Research & Build │
│ │ ↓ │
│ Yes Test & Iterate │
│ │ ↓ │
│ └────────────────────┘ │
│ ↓ │
│ [SKILL-CREATOR] │
│ ↓ │
│ Permanent Skill │
│ ↓ │
│ Announce Capability │
│ │
└─────────────────────────────────────────┘
AUTONOMOUS_BOOTUP_SPEC.md for full architecturememory-manager skill for persistence patterns