blob: 2bd648238e589d2c88a11ad980b9fee206809e0e [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}"
11 owner: "shota" # Replace with your GitHub username
12 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:
38 - name: "backend-engineer"
39 role: "Backend Engineer"
40 model: "gpt-4"
41 temperature: 0.3
42 max_tokens: 4000
43 system_prompt_file: "operations/agents/backend-engineer/system.md"