blob: cc6504328765e407fd3d03d57f13aee0928d600a [file] [log] [blame]
user5a7d60d2025-07-27 21:22:04 +04001# Staff MVP Configuration
2# This is a minimal config for testing the MVP
3
4openai:
5 api_key: "${OPENAI_API_KEY}"
6 base_url: ""
7 timeout: "60s"
8
9github:
10 token: "${GITHUB_TOKEN}"
iomodo43ec6ae2025-07-28 17:40:12 +040011 owner: "iomodo" # Replace with your GitHub username
user5a7d60d2025-07-27 21:22:04 +040012 repo: "staff" # Replace with your repository name
13
14git:
iomodoa53240a2025-07-30 17:33:35 +040015 repo_path: "/Users/shota/github/staff/"
user5a7d60d2025-07-27 21:22:04 +040016 branch_prefix: "task/"
17 commit_message_template: "Task {task_id}: {task_title} by {agent_name}"
18 pr_template: |
19 ## Task: {task_title}
20
21 **Priority:** {priority}
22 **Task ID:** {task_id}
23 **Agent:** {agent_name}
24
25 ### Description
26 {task_description}
27
28 ### Solution
29 {solution}
30
31 ### Files Changed
32 {files_changed}
33
34 ---
35 *This PR was automatically generated by Staff AI Agent System*
36
37# Simplified agent configuration for MVP testing
38agents:
iomodo50598c62025-07-27 22:06:32 +040039 # - name: "backend-engineer"
40 # role: "Backend Engineer"
41 # model: "gpt-4"
42 # temperature: 0.3
43 # max_tokens: 4000
44 # system_prompt_file: "/Users/shota/github/staff/operations/agents/beckend-engineer/system.md"
45 - name: "ceo"
iomodo1c1c60d2025-07-30 17:54:10 +040046 role: "ceo"
user5a7d60d2025-07-27 21:22:04 +040047 model: "gpt-4"
48 temperature: 0.3
49 max_tokens: 4000
iomodo50598c62025-07-27 22:06:32 +040050 system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md"
51
52tasks:
53 storage_path: "/Users/shota/github/staff/operations/"
54 completed_path: "../operations/completed/"