# save the YAML below as app.yaml in a new folder
digitorn install ./claude-code-cloneThis is a local install: the folder you create is the source. No Hub package to publish first.
Click each one for the credential setup command, scope guidance, and provider details.
1schema_version: 223app:4 app_id: claude-code-clone5 name: "Claude Code clone"6 version: "1.0.0"7 description: "Multi-agent coding assistant."8 category: "developer-tools"910modules:11 filesystem:12 config:13 workspace: "."14 max_file_bytes: 209715215 bash: {}16 memory:17 config:18 working_memory: true19 todo_list: true20 agent_spawn: {}2122runtime:23 mode: conversation24 entry_agent: coordinator2526security:27 behavior:28 profile: coding2930agents:31 - id: coordinator32 role: coordinator33 modules: [{agent_spawn: [agent]}, {filesystem: [read, grep, glob]}, {memory: [set_goal, task_create, task_update]}]34 brain:35 provider: anthropic36 model: claude-sonnet-537 credential:38 ref: anthropic_main39 scope: per_user40 provider: anthropic41 temperature: 0.242 max_tokens: 819243 system_prompt: |44 You are a coordinator. Plan first, then execute.45 Delegate exploration to the explorer specialist via agent(agent="explorer", task="...").4647 - id: explorer48 role: specialist49 specialty: "Find files, grep symbols, sample contents"50 modules:51 - {filesystem: [read, grep, glob]}52 - {bash: [run]}53 brain:54 provider: anthropic55 model: claude-haiku-4-556 credential:57 ref: anthropic_main58 scope: per_user59 provider: anthropic60 temperature: 0.061 system_prompt: |62 You explore codebases. Return only the key findings.63 No prose. Be FAST.Engineering notes from the Digitorn team. No marketing, no launch announcements, no "10 prompts that will change your life". Just the things we write that we'd want to read.