edit-agent
Creates and modifies Claude Code sub-agents following best practices. Use when user requests creating, updating, modifying, improving, or editing sub-agents. Triggers include "create/make/new agent", "sub-agent for X", file paths with /agents/, "update/modify/improve agent Y". Handles agent structure, YAML frontmatter (name, description, tools, model), system prompt design, tool restrictions (minimal permissions), isolated context benefits. Delegates to edit-tool orchestrator if uncertain about tool type (agent vs skill vs command vs script).
SKILL.md
| Name | edit-agent |
| Description | Creates and modifies Claude Code sub-agents following best practices. Use when user requests creating, updating, modifying, improving, or editing sub-agents. Triggers include "create/make/new agent", "sub-agent for X", file paths with /agents/, "update/modify/improve agent Y". Handles agent structure, YAML frontmatter (name, description, tools, model), system prompt design, tool restrictions (minimal permissions), isolated context benefits. Delegates to edit-tool orchestrator if uncertain about tool type (agent vs skill vs command vs script). |
๐ง Agent Skills Marketplace
Structured human+AI collaboration for knowledge work.
โ ๏ธ Live experiment. My cognitive toolkit โ fork it, adapt it to your brain.
๐ก Why This Exists
AI coding tools are powerful but chaotic. Most people either micromanage every prompt or let AI run wild and pray. Neither scales to real work.
This toolkit treats AI collaboration as cognitive discipline โ a set of thinking modes you activate depending on the situation, with the human always setting the pace.
๐ฏ Principles
- ๐งญ Frame before act โ classify the problem, then pick the right approach
- ๐ง Think before build โ brainstorm, investigate, design before writing code
- ๐ง Human controls pace โ gates between sections, you verify, AI continues
- ๐ชจ Boulder โ Pebbles โ scale your process to the problem (OpenSpec for big, just code for small)
- ๐พ Sessions persist โ save context, resume tomorrow without re-explaining
- ๐ช Learn from patterns โ retrospectives extract what worked and what didn't
๐ Deep dive: PHILOSOPHY.md
๐ Cognitive Modes
flowchart LR
F["๐งญ Frame"] --> T["๐ง Think"]
T --> B["โ๏ธ Build"]
B --> D["๐ง Debug"]
D --> L["๐ช Learn"]
L -.->|"next problem"| F
classDef frame fill:#E8EAF6,stroke:#3F51B5,color:#000
classDef think fill:#E1BEE7,stroke:#7B1FA2,color:#000
classDef build fill:#C8E6C9,stroke:#388E3C,color:#000
classDef debug fill:#FFE0B2,stroke:#F57C00,color:#000
classDef learn fill:#BBDEFB,stroke:#1976D2,color:#000
class F frame
class T think
class B build
class D debug
class L learn
| Mode | What | Hero Skills |
|---|---|---|
| ๐งญ Frame | Classify the problem โ route to the right skill chain | /frame-problem (Cynefin), /pick-model |
| ๐ง Think | Divergent ideation, deep analysis, adversarial review | /brainstorm (SCAMPER), /investigate (Issue Trees, Pre-mortem), /probe (safe-to-fail), /challenge (Devil's Advocate) |
| โ๏ธ Build | Plan โ develop โ gate โ test โ sync | /openspec-* suite (7 skills, human-gated sections) |
| ๐ง Debug | Search-first troubleshooting with learnings DB | /troubleshoot (Wolf Fence, 5 Whys, OODA), /experiment (Chaotic act-sense) |
| ๐ช Learn | Extract patterns, persist sessions | /retrospect-*, /save-context, /load-context |
Plus: tool creation (/edit-tool โ routes to skill/command/agent editors), conversions (PDF, EPUB, Google Docs), and a GTD plugin for task capture.
๐ช Plugins
| Plugin | Description | Status |
|---|---|---|
| dstoic | Core cognitive toolkit: 44 skills, 0 commands, 4 hooks | โ v0.19.1 |
| gtd | GTD workflow automation for Obsidian vaults | โ v0.1.0 |
| ... | More planned | ๐ |
๐ฆ Install
Install from the Claude Code marketplace:
/install-plugin https://github.com/digital-stoic-org/agent-skills
This installs all plugins (dstoic, gtd). To install a specific plugin only, add it to .claude/settings.json:
{"plugins": ["digital-stoic-org/agent-skills/dstoic"]}
๐ Quick Start
/frame-problem how should I approach building a new auth system
# โ Classifies as Complicated (governing constraints) + Boulder
# โ Routes to: /investigate โ /openspec-plan
/brainstorm product naming ideas for my CLI tool
# โ Research โ SCAMPER divergence โ weighted scoring โ recommendation
/troubleshoot "TypeError: Cannot read property 'map' of undefined"
# โ WebSearch โ qualify โ diagnose โ OODA โ save learning
๐ Documentation Philosophy
GenAI makes it too easy to generate walls of text โ cognitive overload for humans.
| Doc Type | For | Example |
|---|---|---|
๐ README.md | Humans (1 min scan) | This file |
๐ README-full.md | Humans (deep dive) | Full catalog |
๐งญ PHILOSOPHY.md | Humans (mindset) | Principles |
๐ค SKILL.md | LLMs (token-optimized) | Not for human reading |
Respect your attention. Start here, dive deeper only when needed.
โ ๏ธ ๐ชฅ CLAUDE.md = toothbrush. See CLAUDE.md.example for inspiration, don't copy. (Why?)
The example uses rtk for token-optimized command output. Install it separately if you want to use the rtk instructions.
๐ Full skill catalog: README-full.md ยท ๐งญ Philosophy: PHILOSOPHY.md