一键导入
skill-evolution
Playbook instructing agents how to dynamically formulate, design, bootstrap, and register new workspace skills when facing skill gaps.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Playbook instructing agents how to dynamically formulate, design, bootstrap, and register new workspace skills when facing skill gaps.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Playbook for capturing design alignment from /grill-me, generating issue specifications, and managing task boards.
Playbook for translating natural language requests about tasks, profiles, locking, and validation into CLI helper executions.
Playbook for writing safe database migrations, managing schema evolutions, executing reversible rollbacks, and avoiding table lock contention in enterprise environments.
Guidelines for CPU profiling, identifying database query bottlenecks (N+1 queries), diagnosing memory leaks, and optimizing resource execution speeds.
Guidelines for containerization (Dockerfile best practices), release versioning, blue-green deployment, feature flag rollouts, and post-deployment smoke verification.
Diagnostic and recovery playbook for resolving local git states, locked configuration files, broken workspace setups, and process deadlocks.
基于 SOC 职业分类
| name | skill-evolution |
| description | Playbook instructing agents how to dynamically formulate, design, bootstrap, and register new workspace skills when facing skill gaps. |
This playbook defines the standardized operational protocol for autonomous agents to dynamically extend their capabilities by creating, scaffolding, and registering new skills within the workspace when encountering domain-specific tasks that are not covered by existing playbooks.
An agent must proactively bootstrap a new skill under .agents/skills/ if ANY of the following conditions are met:
When a skill gap is identified, the agent must perform the following atomic steps:
Before creating any files, perform a Pre-Implementation Impact Analysis comparing the new skill structure with existing skills to avoid duplicate guidelines. Keep the name lowercase and kebab-cased (e.g., frontend-standards).
Create the subdirectory under .agents/skills/<skill-name>/ and create the SKILL.md file. The file MUST include standard YAML frontmatter:
---
name: <skill-name>
description: <Short, precise 1-2 sentence description of when to use this skill.>
---
Write structured markdown guidelines including:
scripts/ folder or examples under an examples/ folder if the playbook requires automated actions.Always run the sync CLI command to index the new skill inside AGENTS.md and rebuild context manifests:
./helper.sh sync
Use the following markdown template when creating SKILL.md:
---
name: skill-name-here
description: Concise description of the skill and when it matches.
---
# Skill Title Here
Background context on this skill domain and why it is active.
## 1. Core Principles
* Rule 1
* Rule 2
## 2. Operational CLI Commands
```bash
# Provide exact command lines
./helper.sh command-here