@tank/agent-creator
Installation
SKILL.md
Tank Agent Creator
Core Philosophy
-
Identity before instructions — Define WHO the agent is (name + role) before configuring WHAT it can do (tools + model). A clear role drives behavior more than verbose prompts.
-
Least-privilege tooling — Grant only the tools the agent needs. A reviewer needs
readandgrep, notwriteandbash. Excess tools invite excess behavior. -
Readonly by default — Mark agents
readonly: trueunless they must modify files. Most analysis, review, and audit agents never need write access. This prevents accidental mutations. -
One responsibility per agent — Each agent atom solves one problem. Compose multiple single-purpose agents in a bundle rather than building one omniscient agent that does everything poorly.