blob: dabe62193c78807cf04e72432f21b5eebd9a5215 [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:
iomodo8acd08d2025-07-31 16:22:08 +04005 listen_address: "9325"
iomodo90de9152025-07-31 13:20:01 +04006
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
iomodob23799d2025-07-31 14:08:22 +040016 webhook_secret: "${GITHUB_WEBHOOK_SECRET}" # Secret for webhook signature validation
user5a7d60d2025-07-27 21:22:04 +040017
18git:
iomodoa53240a2025-07-30 17:33:35 +040019 repo_path: "/Users/shota/github/staff/"
user5a7d60d2025-07-27 21:22:04 +040020 branch_prefix: "task/"
21 commit_message_template: "Task {task_id}: {task_title} by {agent_name}"
iomodoe7477eb2025-07-30 20:26:30 +040022 workspace_path: "/Users/shota/staff/workspace"
user5a7d60d2025-07-27 21:22:04 +040023 pr_template: |
24 ## Task: {task_title}
25
26 **Priority:** {priority}
27 **Task ID:** {task_id}
28 **Agent:** {agent_name}
29
30 ### Description
31 {task_description}
32
33 ### Solution
34 {solution}
35
36 ### Files Changed
37 {files_changed}
38
39 ---
40 *This PR was automatically generated by Staff AI Agent System*
41
42# Simplified agent configuration for MVP testing
43agents:
iomodo50598c62025-07-27 22:06:32 +040044 # - name: "backend-engineer"
45 # role: "Backend Engineer"
46 # model: "gpt-4"
47 # temperature: 0.3
48 # max_tokens: 4000
49 # system_prompt_file: "/Users/shota/github/staff/operations/agents/beckend-engineer/system.md"
50 - name: "ceo"
iomodo1c1c60d2025-07-30 17:54:10 +040051 role: "ceo"
user5a7d60d2025-07-27 21:22:04 +040052 model: "gpt-4"
53 temperature: 0.3
54 max_tokens: 4000
iomodo50598c62025-07-27 22:06:32 +040055 system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md"
56
57tasks:
58 storage_path: "/Users/shota/github/staff/operations/"
59 completed_path: "../operations/completed/"