| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 1 | # Staff MVP Configuration |
| 2 | # This is a minimal config for testing the MVP |
| 3 | |
| 4 | openai: |
| 5 | api_key: "${OPENAI_API_KEY}" |
| 6 | base_url: "" |
| 7 | timeout: "60s" |
| 8 | |
| 9 | github: |
| 10 | token: "${GITHUB_TOKEN}" |
| iomodo | 43ec6ae | 2025-07-28 17:40:12 +0400 | [diff] [blame^] | 11 | owner: "iomodo" # Replace with your GitHub username |
| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 12 | repo: "staff" # Replace with your repository name |
| 13 | |
| 14 | git: |
| 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 |
| 37 | agents: |
| iomodo | 50598c6 | 2025-07-27 22:06:32 +0400 | [diff] [blame] | 38 | # - 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" |
| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 46 | model: "gpt-4" |
| 47 | temperature: 0.3 |
| 48 | max_tokens: 4000 |
| iomodo | 50598c6 | 2025-07-27 22:06:32 +0400 | [diff] [blame] | 49 | system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md" |
| 50 | |
| 51 | tasks: |
| 52 | storage_path: "/Users/shota/github/staff/operations/" |
| 53 | completed_path: "../operations/completed/" |