blob: 0842f0efe2607d28172bb9269aba1b982a852a66 [file] [log] [blame]
user5a7d60d2025-07-27 21:22:04 +04001# Staff MVP Configuration
2# This is a minimal config for testing the MVP
3
iomodo90de9152025-07-31 13:20:01 +04004server:
5 listen_address: ":9325"
6
user5a7d60d2025-07-27 21:22:04 +04007openai:
8 api_key: "${OPENAI_API_KEY}"
9 base_url: ""
10 timeout: "60s"
11
12github:
13 token: "${GITHUB_TOKEN}"
iomodo43ec6ae2025-07-28 17:40:12 +040014 owner: "iomodo" # Replace with your GitHub username
user5a7d60d2025-07-27 21:22:04 +040015 repo: "staff" # Replace with your repository name
16
17git:
iomodoa53240a2025-07-30 17:33:35 +040018 repo_path: "/Users/shota/github/staff/"
user5a7d60d2025-07-27 21:22:04 +040019 branch_prefix: "task/"
20 commit_message_template: "Task {task_id}: {task_title} by {agent_name}"
iomodoe7477eb2025-07-30 20:26:30 +040021 workspace_path: "/Users/shota/staff/workspace"
user5a7d60d2025-07-27 21:22:04 +040022 pr_template: |
23 ## Task: {task_title}
24
25 **Priority:** {priority}
26 **Task ID:** {task_id}
27 **Agent:** {agent_name}
28
29 ### Description
30 {task_description}
31
32 ### Solution
33 {solution}
34
35 ### Files Changed
36 {files_changed}
37
38 ---
39 *This PR was automatically generated by Staff AI Agent System*
40
41# Simplified agent configuration for MVP testing
42agents:
iomodo50598c62025-07-27 22:06:32 +040043 # - name: "backend-engineer"
44 # role: "Backend Engineer"
45 # model: "gpt-4"
46 # temperature: 0.3
47 # max_tokens: 4000
48 # system_prompt_file: "/Users/shota/github/staff/operations/agents/beckend-engineer/system.md"
49 - name: "ceo"
iomodo1c1c60d2025-07-30 17:54:10 +040050 role: "ceo"
user5a7d60d2025-07-27 21:22:04 +040051 model: "gpt-4"
52 temperature: 0.3
53 max_tokens: 4000
iomodo50598c62025-07-27 22:06:32 +040054 system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md"
55
56tasks:
57 storage_path: "/Users/shota/github/staff/operations/"
58 completed_path: "../operations/completed/"