Mindset shift in v2
v1 often felt like short call/response loops. v2 is built for more autonomous, long-running jobs that can plan, delegate, and complete work with less back-and-forth.Migration steps
-
Move instruction guidance into
AGENTS.md.- If you used
.charlie/instructions/*.md, consolidate the durable rules intoAGENTS.md. - Root-level
AGENTS.mdis the best default.
- If you used
-
Move v1 playbooks into skills.
- Convert each playbook into
.agents/skills/<skill-name>/SKILL.md. - Invoke a skill with
$<skill-name>in your request.
- Convert each playbook into
-
Move proactive behavior to Daemons.
- Define recurring automation in
.agents/daemons/<daemon-id>/DAEMON.md. - Keep daemon scopes narrow first, then widen once behavior is stable.
- Define recurring automation in