ワンクリックで
single-agent
Single-agent pattern: One LLM handles all tasks without sub-agent delegation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Single-agent pattern: One LLM handles all tasks without sub-agent delegation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
arXiv paper discovery — select top 3 significant papers, research via subagents, ingest to wiki, deliver report.
Daily raw file ingestion pipeline — process files from raw/ into structured wiki knowledge, verify frontmatter and links, archive to Clippings/. Schedule: 06:30 AM.
Daily Zettelkasten insight generation — run CLI insight engine, create wiki pages for confidence>=0.7 insights, integrate to wiki. Schedule: 06:00 AM.
Daily global news curator — RSS discovery, significance filtering, clippings archive + synthesis wiki delivery, deliver headlines report. Schedule: 07:30 AM.
Wiki synthesis agent operational sheet — cross-domain bridges, concept advancement, evidence evaluation
Daily wiki quality audit anchored in wiki-indexing-theory.md — HITS authority scoring, GAAC cluster validation, tag taxonomy compliance, reciprocal link enforcement. Schedule: 08:50 AM.
| name | single-agent |
| description | Single-agent pattern: One LLM handles all tasks without sub-agent delegation. |
[!IMPORTANT] When to use: When one LLM can reliably complete the entire task. Prioritize simplicity unless complexity demands delegation.
Does the task require multiple specialized capabilities?
├── NO → Single Agent (you're here)
└── YES → Consider delegation patterns
| ✅ Use Single Agent When | ❌ Avoid When |
|---|---|
| Straightforward, linear tasks | Task has distinct specialized phases |
| Task fits in one LLM's context window | Multiple experts needed (legal + code + writing) |
| Speed/simplicity is paramount | One specialist failing shouldn't block others |
| Low task variance | Task might need independent retry logic |
User Request
│
▼
┌─────────────┐
│ Single LLM │ ← One model, one context
└─────────────┘
│
▼
Output
| Mistake | Why It's Bad |
|---|---|
| Forcing delegation into a simple task | Adds latency, cost, and complexity for no benefit |
| Ignoring when a task outgrows single agent | Leads to prompt engineering spaghetti |
| Using single agent for multi-domain expertise | LLM may "hallucinate" expertise it doesn't have |
When single agent isn't enough, follow the decision tree:
Need multiple specialized capabilities?
├── NO, just parallel independent tasks?
│ └── YES → parallel-execution
└── YES, but centralized control needed?
└── YES → supervisor-delegation
└── NO, agents need autonomy?
└── YES → supervisor-orchestrator
| Factor | Single Agent |
|---|---|
| Latency | Lowest |
| Cost | Lowest |
| Complexity | Minimal |
| Reliability | Single point of failure |
| Best for | Simple, linear tasks |
Pattern ID: single-agent | Decision tree leaf | AGEM-compatible