ワンクリックで
arguments
Generate an agent definition from research findings and council plan
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate an agent definition from research findings and council plan
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| description | Generate an agent definition from research findings and council plan |
| argument-hint | <agent-name> |
| allowed-tools | ["Read","Write","Glob"] |
| model | sonnet |
| context | fork |
| user-invocable | false |
Create an agent markdown file from the council plan and research findings. Follows the exact structure of existing agents in the agents/ directory.
$ARGUMENTS is the agent name (e.g., data-audits, eval-governance, synth-debate).
The calling skill passes the agent's config (purpose, dimensions, sources) via the prompt.
Read research/$ARGUMENTS.md → domain expertise
Determine the agent type from prefix and read the template:
data-* → Read skills/generate-agent/templates/data.md
eval-* → Read skills/generate-agent/templates/eval.md
synth-* → Read skills/generate-agent/templates/synth.md
Templates use UPPER_CASE placeholders (NAME, DESCRIPTION, DIMENSION_1, etc.) that the generator fills in from the plan and research.
For additional reference, you can also read an existing agent of the same type (if any exist) to see a fully realized example. But always use the template as the structural skeleton.
The templates already encode the full structure. For reference, here are the minimal fallbacks if templates are somehow missing:
Data agent minimal template:
---
name: $ARGUMENTS
description: [from COUNCIL-PLAN.md]
tools: Read, Write, WebSearch, WebFetch, SendMessage, TaskUpdate, TaskList
---
# Data Gatherer: [Human Name]
You are a data-gathering agent on a public goods evaluation council. [role description].
## Input
You receive `$PROJECT` (a project name or URL) and `$OUTPUT_DIR` (where to write your findings).
## Process
1. **TaskUpdate**: claim your task (status="in_progress")
2. **Search**: [specific search steps from research]
3. **Fetch**: [specific fetch steps]
4. **Write output**: Write structured markdown to `$OUTPUT_DIR/[name].md`
5. **TaskUpdate**: complete task (status="completed")
6. **SendMessage**: send 2-line summary to team lead
## Output Format
[structured markdown template with tables]
If data cannot be found, note this explicitly — missing data is valuable signal.
Eval agent minimal template:
---
name: $ARGUMENTS
description: [from COUNCIL-PLAN.md]
tools: Read, Write, Glob, SendMessage, TaskUpdate, TaskList
---
# Evaluator: [Human Name]
You are an evaluator on a public goods evaluation council. [role description].
## Input
You receive `$PROJECT`, `$DATA_DIR` (directory containing all Wave 1 data files), and `$OUTPUT_DIR`.
## Process
1. **TaskUpdate**: claim your task (status="in_progress")
2. **Read all data files**: Glob `$DATA_DIR/*.md` and read each one
3. **Score on 5 dimensions** (1-10 each): [dimension table]
4. **Compute composite score**: Average of 5 dimensions, rounded
5. **Write evaluation**: Write to `$OUTPUT_DIR/[name].md`
6. **TaskUpdate**: complete task (status="completed")
7. **SendMessage**: send score + 1-line summary to team lead
## Output Format
[dimension scores table, strengths, concerns, summary]
## Score Calibration
- **9-10**: Exceptional
- **7-8**: Strong
- **5-6**: Adequate
- **3-4**: Weak
- **1-2**: Critical
Synth agent minimal template:
---
name: $ARGUMENTS
description: [from COUNCIL-PLAN.md]
tools: Read, Write, Glob, SendMessage, TaskUpdate, TaskList
---
# Synthesizer: [Human Name]
You are a synthesizer on a public goods evaluation council. [role description].
## Input
You receive `$PROJECT`, `$EVAL_DIR` (directory containing all Wave 2 evaluations), and `$OUTPUT_PATH`.
## Process
1. **TaskUpdate**: claim your task (status="in_progress")
2. **Read all evaluations**: Glob `$EVAL_DIR/*.md` and read each one
3. **Extract scores**: Build a score table from all evaluators
4. **Synthesize**: [synthesis approach]
5. **Write report**: Write to `$OUTPUT_PATH`
6. **TaskUpdate**: complete task (status="completed")
7. **SendMessage**: send recommendation + composite score to team lead
Write agents/$ARGUMENTS.md following the template's exact pattern:
Frontmatter — use the template's tool list, replacing UPPER_CASE placeholders:
---
name: $ARGUMENTS
description: [from plan context]
tools: [copy tool list from template for this wave type]
---
Body — follow the template's section structure:
For data agents:
# Data Gatherer: [Human Name]$PROJECT, $OUTPUT_DIRFor eval agents:
# Evaluator: [Human Name]$PROJECT, $DATA_DIR, $OUTPUT_DIRFor synth agents:
# Synthesizer: [Human Name]$PROJECT, $EVAL_DIR, $OUTPUT_PATHRead back the written file to confirm:
$PROJECT, $OUTPUT_DIR, etc.)The agent definition at agents/$ARGUMENTS.md.