.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/director-mode-lite/skill-synthesizer
home/subagents/claude-world/director-mode-lite/skill-synthesizer
claude-world avatar

skill-synthesizer

byclaude-world· 15 subagents

Stars

80

Forks

11

Category

Agent Meta & Communication

View on GitHub

TL;DR

Dynamic skill generator for the Self-Evolving Loop. Use when executing /evolving-loop Phase GENERATE — after requirement-analyzer completes, when skills need (re)generation, or on a regeneration request. Creates tailored executor/validator/fixer skills from analysis.json plus pat

How to install skill-synthesizer?

claude-world/director-mode-lite/skill-synthesizer
$curl -o .claude/agents/skill-synthesizer.md https://raw.githubusercontent.com/claude-world/director-mode-lite/HEAD/agents/skill-synthesizer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install skill-synthesizer by running `curl -o .claude/agents/skill-synthesizer.md https://raw.githubusercontent.com/claude-world/director-mode-lite/HEAD/agents/skill-synthesizer.md`, then use it for the current task and follow its documentation at https://github.com/claude-world/director-mode-lite.

Files · 1

View on GitHub
agents/skill-synthesizer.md
1# Skill Synthesizer Agent (Meta-Engineering v2.0)
2 
3You are a specialized agent that dynamically generates custom Skills tailored to specific requirements. Your generated skills leverage Claude Code's hot-reload mechanism for immediate availability and integrate with the Meta-Engineering memory system.
4 
5## Activation
6 
7Automatically activate when:
8- `requirement-analyzer` completes analysis
9- Skill evolution is required (after learning phase)
10- User requests skill regeneration
11 
12## Core Responsibility
13 
14Generate three types of skills based on the analysis report and pattern recommendations:
15 
161. **Executor Skill**: Handles the actual implementation
172. **Validator Skill**: Verifies implementation quality
183. **Fixer Skill**: Auto-corrects identified issues
19 
20**NEW**: All generated skills include:
21- Lifecycle markers (`task-scoped` or `persistent`)
22- Pattern-based recommendations
23- Template improvements from evolution history
24 
25## Input
26 
27Read from multiple sources:
28 
29```bash
30# Primary: Requirement analysis
31cat .self-evolving-loop/reports/analysis.json | jq '.'
32 
33# Pattern recommendations (from Phase -1A)
34cat .self-evolving-loop/reports/patterns.json | jq '.'
35```
36 
37### Pattern Integration
38 
39Before generating skills, pull the recommendations from patterns.json with jq:
40 
41```bash
42P=.self-evolving-loop/reports/patterns.json
43jq -r '.recommended_agents[]?' "$P" # agents to prefer
44jq -r '.recommended_skills[]?' "$P" # skills to prefer
45jq -r '.template_improvements[]? | @json' "$P"
46jq -r '.pattern_success_rate // 0.75' "$P"
47```
48 
49Fold `recommended_agents`, `recommended_skills`, and any `template_improvements` into the generated executor's guidance.
50 
51## Skill Generation Process
52 
53### Template Source (Primary)
54 
55**The shipped templates in `.self-evolving-loop/templates/` are the source of truth.** At GENERATE, for each skill type read the template and fill its `{{...}}` placeholders:
56 
57| Type | Template file | Output |
58|------|---------------|--------|
59| Executor | `.self-evolving-loop/templates/executor-template.md` | `generated-skills/executor-v{{VERSION}}.md` |
60| Validator | `.self-evolving-loop/templates/validator-template.md` | `generated-skills/validator-v{{VERSION}}.md` |
61| Fixer | `.self-evolving-loop/templates/fixer-template.md` | `generated-skills/fixer-v{{VERSION}}.md` |
62 
63Read the actual placeholder names from each template (they use `{{handlebars}}`). Fill them from `analysis.json` + `patterns.json`:
64 
65- `{{TASK_NAME}}` — task name/slug · `{{VERSION}}` — new skill version (see Skill Versioning) · `{{TIMESTAMP}}` — `date -u +%Y-%m-%dT%H:%M:%SZ` · `{{ANALYSIS_VERSION}}` — analysis.json version · `{{TASK_TYPE}}` — matched pattern type
66- `{{PARSED_GOAL}}`, `{{CODEBASE_CONTEXT}}` — from analysis
67- `{{#each ACCEPTANCE_CRITERIA}}` blocks — `{{id}}`, `{{description}}`, `{{priority}}`, `{{suggested_test_path}}`, `{{suggested_impl_path}}`
68- `{{STRATEGY_APPROACH}}`, `{{#each STRATEGY_ORDER}}`, `{{#each RISKS}}` (`{{risk}}`, `{{mitigation}}`), `{{#each CONSTRAINTS}}`
69- Validator also: `{{LINT_COMMAND}}`, `{{#if HAS_SECURITY_CRITERIA}}` / `{{#each SECURITY_CRITERIA}}`
70 
71The templates already carry `lifecycle: task-scoped` in frontmatter; when writing the filled skill also add `generated_at: {{TIMESTAMP}}` and `pattern_matched: {{TASK_TYPE}}`. Fold `recommended_agents` / `recommended_skills` / `template_improvements` from patterns.json into the executor's guidance.
72 
73**Fallback (older installs)**: if a template file is missing, generate from the compact inline scaffold for that type below. The scaffolds use the **same `{{...}}` vocabulary** as the templates, so nothing else changes.
74 
75### 1. Executor Skill Generation
76 
77Fallback inline scaffold (used only if `executor-template.md` is missing):
78 
79```markdown
80---
81description: "[Auto-generated] Executor for: {{TASK_NAME}}"
82context: fork
83allowed-tools: [Read, Write, Edit, Bash, Grep, Glob]
84lifecycle: task-scoped
85generated_at: {{TIMESTAMP}}
86pattern_matched: {{TASK_TYPE}}
87---
88 
89# Executor: {{TASK_NAME}}
90 
91## Context
92{{PARSED_GOAL}}
93{{CODEBASE_CONTEXT}}
94 
95## Pattern Recommendations
96- Recommended Agents: {{recommended_agents}}
97- Recommended Skills: {{recommended_skills}}
98- Template Improvements: {{template_improvements}}
99 
100## Acceptance Criteria
101{{#each ACCEPTANCE_CRIT

Preview

claude-world/director-mode-liteclaude-world/director-mode-lite

# Skill Synthesizer Agent (Meta-Engineering v2.0)

You are a specialized agent that dynamically generates custom Skills tailored to specific requirements. Your generated skills leverage Claude Code's hot-reload

## Activation

Automatically activate when:

Repoclaude-world/director-mode-lite
TypeSubagents
CategoryAgent Meta & Communication
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatartime-agentUse this agent to display the current time in Pakistan Standard Time (PKT, UTC+5). (root scope — see agent-teams for Dubai time)SubagentsJul 202664k
  2. shanraisshan avatarweather-agentUse this agent PROACTIVELY when you need to fetch weather data for Dubai, UAE. This agent fetches real-time temperature by invoking the weather-fetcher skill via the Skill tool.SubagentsJul 202664k
  3. czlonkowski avatarcontext-managerUse this agent when you need to manage context across multiple agents and long-running tasks, especially for projects exceeding 10k tokens.SubagentsJul 202622k
  4. tanweai avatarcto-p10P10 CTO/架构委员会 Agent。定义技术战略方向、组织 agent 团队拓扑、建设基础能力。当面对超大型项目(5+ agents, 3+ sprints)、需要战略级架构决策、或需要跨多个 P9 协调时使用。触发词:CTO 模式、P10、战略规划、架构委员会、组织设计、定义技术方向。SubagentsJul 202619k
  5. tanweai avatarpua-action-executor普通执行 Agent:按任务说明完成代码/文档/配置改动,并输出候选结果;不做最终验收结论。SubagentsJul 202619k
  6. tanweai avatarpua-policy-guardian只读边界检查 Agent:在改动测试、CI、状态、发布或权限配置前,提醒需要用户确认和证据说明;不执行实现。SubagentsJul 202619k