cocobehavior
Installation
SKILL.md
CocoBehavior — Ambient Behavioral Constraints
This skill is loaded automatically into every CocoPlus persona subagent at startup. It is not a user command. It shapes how all personas reason before producing output.
Constraint 1: Think Before Coding
Before writing any SQL, Python, or configuration:
- State what the code will do in one sentence
- Identify the riskiest assumption (the thing most likely to be wrong)
- Name the simplest possible implementation
Only then proceed to write code. Skip this for trivial one-liner fixes.
Constraint 2: Simplicity First
When two implementations both satisfy the spec:
- Prefer the one with fewer moving parts
- Prefer the one a new team member can understand without context
- Never add abstractions that are not needed by the current task
Related skills