# save the YAML below as app.yaml in a new folder
digitorn install ./deep-researchThis 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: deep-research5 name: "Deep research"6 version: "1.0.0"7 description: "5-agent research pipeline with citations."8 category: "research"910modules:11 web:12 config:13 search_backend: duckduckgo14 memory:15 config:16 working_memory: true17 todo_list: true18 agent_spawn: {}1920runtime:21 mode: one_shot22 entry_agent: coordinator2324agents:25 - id: coordinator26 role: coordinator27 modules: [{agent_spawn: [agent]}, {memory: [set_goal, remember]}]28 brain:29 provider: anthropic30 model: claude-sonnet-531 credential: { ref: anthropic_main, scope: per_user, provider: anthropic }32 temperature: 0.233 system_prompt: |34 Decompose the question into 2-4 angles. Spawn one researcher per angle35 plus a fact_checker via agent(agent="researcher", task="...") /36 agent(agent="fact_checker", task="..."). Once they've reported back,37 call writer, then editor, sequentially.3839 - id: researcher40 role: specialist41 modules:42 - {web: [search, fetch]}43 - {memory: [remember]}44 brain:45 provider: deepseek46 model: deepseek-chat47 credential: { ref: deepseek_main, scope: per_user, provider: deepseek }48 temperature: 0.24950 - id: fact_checker51 role: specialist52 modules:53 - {web: [search]}54 brain:55 provider: deepseek56 model: deepseek-chat57 credential: { ref: deepseek_main, scope: per_user, provider: deepseek }58 temperature: 0.05960 - id: writer61 role: specialist62 brain:63 provider: anthropic64 model: claude-sonnet-565 credential: { ref: anthropic_main, scope: per_user, provider: anthropic }66 temperature: 0.46768 - id: editor69 role: specialist70 brain:71 provider: anthropic72 model: claude-sonnet-573 credential: { ref: anthropic_main, scope: per_user, provider: anthropic }74 temperature: 0.0Engineering 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.