digitorn install hub://digitorn/digitorn-codeClick each one for the credential setup command, scope guidance, and provider details.
1app:2 app_id: claude-code-clone3 name: "Claude Code clone"4 version: "1.0.0"5 description: "Multi-agent coding assistant."6 category: "developer-tools"78modules:9 filesystem:10 config:11 max_file_kb: 204812 read_before_edit: true13 shell:14 config:15 shell: bash16 allowed_roots:17 - "{{cwd}}"18 - "{{home}}"19 memory:20 config:21 working_memory: true22 todo_list: true23 agent_spawn: {}2425execution:26 mode: conversation27 entry_agent: coordinator2829behavior:30 profile: coding3132agents:33 - id: coordinator34 role: coordinator35 modules: [{agent_spawn: [Agent]}, {filesystem: [read, grep, glob]}, {memory: [todo_add, todo_update, set_goal]}]36 brain:37 provider: anthropic38 model: claude-sonnet-4-639 credential:40 ref: anthropic_main41 scope: per_user42 provider: anthropic43 config:44 api_key: "{{env.ANTHROPIC_API_KEY}}"45 temperature: 0.246 max_tokens: 819247 system_prompt: |48 You are a coordinator. Plan first, then execute.49 Delegate exploration to the explorer specialist via Agent(specialist='explorer', prompt='...').5051 - id: explorer52 role: specialist53 specialty: "Find files, grep symbols, sample contents"54 modules:55 - {filesystem: [read, grep, glob]}56 - {shell: [bash]}57 brain:58 provider: anthropic59 model: claude-haiku-4-560 credential:61 ref: anthropic_main62 scope: per_user63 provider: anthropic64 config:65 api_key: "{{env.ANTHROPIC_API_KEY}}"66 temperature: 0.067 system_prompt: |68 You explore codebases. Return only the key findings.69 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.