with one click
self-evolver
年年自我进化引擎 — 自我监控、Agent匹配、任务分解、决策追踪。让年年持续变强的元技能。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
年年自我进化引擎 — 自我监控、Agent匹配、任务分解、决策追踪。让年年持续变强的元技能。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Unit, integration, and E2E testing patterns with framework-specific guidance. Use when asked to "write tests", "add test coverage", "testing strategy", "test this function", "create test suite", "fix flaky tests", or "improve test quality".
A self-evolution engine for AI agents. Analyzes runtime history to identify improvements and applies protocol-constrained evolution. Communicates with EvoMap Hub via local Proxy mailbox.
抖音视频下载工具 - 解析抖音链接,下载视频并发送
根据用户提供的内容方向自动生成提示词并创作爽文小说。适用场景:(1) 用户提供小说方向/题材/关键词,(2) 需要生成章节连贯的长篇爽文,(3) 需要维护角色、地点、情节的连续性,(4) 需要为关键情节生成图解,(5) 需要记录生成失败场景以优化后续创作。支持都市、修仙、玄幻、重生、系统流等多种题材。Use when user asks to write a novel, generate fiction, create stories, or mentions 爽文/小说/写作。
Imported specialist agent skill for architecture designer. Use when requests match this domain or role.
Builds automation workflows from repetitive tasks. Use when user mentions "automate", "save time", "reduce manual work", or has repeated tasks.
| name | self-evolver |
| description | 年年自我进化引擎 — 自我监控、Agent匹配、任务分解、决策追踪。让年年持续变强的元技能。 |
self_monitor.py)每次心跳自动检查年年的状态:
python3 <SKILL_DIR>/scripts/self_monitor.py
检查项:
agent_matcher.py)自动分析任务类型,匹配最适合的Agent:
python3 <SKILL_DIR>/scripts/agent_matcher.py
from scripts.agent_matcher import match_agent
result = match_agent("写React组件")
# Returns: {"agent_id": "frontend_dev", "name": "霓裳", "score": 9.2}
task_decomposer.py)自动分析任务依赖,生成波次执行计划:
python3 <SKILL_DIR>/scripts/task_decomposer.py "开发登录系统"
输出:
waves:
- wave: 1 (并行)
- 数据库模型设计 → 玄机
- JWT配置方案 → 玄机
- 测试用例框架 → 鉴微
- wave: 2 (依赖Wave 1)
- 认证API开发 → 玄机
- 登录页UI → 霓裳
- wave: 3 (依赖Wave 2)
- 集成测试 → 鉴微
decision_tracker.py)记录决策依据,支持复盘:
python3 <SKILL_DIR>/scripts/decision_tracker.py record "选择React而非Vue" "团队熟悉度+生态"
python3 <SKILL_DIR>/scripts/decision_tracker.py review
scripts/self_monitor.py — 自我监控scripts/agent_matcher.py — Agent匹配scripts/task_decomposer.py — 任务分解scripts/decision_tracker.py — 决策追踪