blob: 804ea2cf6462a7e3ee019b17ee237b22a53a3588 [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}"
iomodoe7477eb2025-07-30 20:26:30 +040018 workspace_path: "/Users/shota/staff/workspace"
user5a7d60d2025-07-27 21:22:04 +040019 pr_template: |
20 ## Task: {task_title}
21
22 **Priority:** {priority}
23 **Task ID:** {task_id}
24 **Agent:** {agent_name}
25
26 ### Description
27 {task_description}
28
29 ### Solution
30 {solution}
31
32 ### Files Changed
33 {files_changed}
34
35 ---
36 *This PR was automatically generated by Staff AI Agent System*
37
38# Simplified agent configuration for MVP testing
39agents:
iomodo50598c62025-07-27 22:06:32 +040040 # - name: "backend-engineer"
41 # role: "Backend Engineer"
42 # model: "gpt-4"
43 # temperature: 0.3
44 # max_tokens: 4000
45 # system_prompt_file: "/Users/shota/github/staff/operations/agents/beckend-engineer/system.md"
46 - name: "ceo"
iomodo1c1c60d2025-07-30 17:54:10 +040047 role: "ceo"
user5a7d60d2025-07-27 21:22:04 +040048 model: "gpt-4"
49 temperature: 0.3
50 max_tokens: 4000
iomodo50598c62025-07-27 22:06:32 +040051 system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md"
52
53tasks:
54 storage_path: "/Users/shota/github/staff/operations/"
55 completed_path: "../operations/completed/"