blob: 5a5b6dd0575735794f64e4f1ecaaed84399b4cab [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:
15 branch_prefix: "task/"
16 commit_message_template: "Task {task_id}: {task_title} by {agent_name}"
17 pr_template: |
18 ## Task: {task_title}
19
20 **Priority:** {priority}
21 **Task ID:** {task_id}
22 **Agent:** {agent_name}
23
24 ### Description
25 {task_description}
26
27 ### Solution
28 {solution}
29
30 ### Files Changed
31 {files_changed}
32
33 ---
34 *This PR was automatically generated by Staff AI Agent System*
35
36# Simplified agent configuration for MVP testing
37agents:
iomodo50598c62025-07-27 22:06:32 +040038 # - name: "backend-engineer"
39 # role: "Backend Engineer"
40 # model: "gpt-4"
41 # temperature: 0.3
42 # max_tokens: 4000
43 # system_prompt_file: "/Users/shota/github/staff/operations/agents/beckend-engineer/system.md"
44 - name: "ceo"
45 role: "CEO"
user5a7d60d2025-07-27 21:22:04 +040046 model: "gpt-4"
47 temperature: 0.3
48 max_tokens: 4000
iomodo50598c62025-07-27 22:06:32 +040049 system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md"
50
51tasks:
52 storage_path: "/Users/shota/github/staff/operations/"
53 completed_path: "../operations/completed/"