| 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: |
| iomodo | a53240a | 2025-07-30 17:33:35 +0400 | [diff] [blame^] | 15 | repo_path: "/Users/shota/github/staff/" |
| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 16 | 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 |
| 38 | agents: |
| iomodo | 50598c6 | 2025-07-27 22:06:32 +0400 | [diff] [blame] | 39 | # - 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" |
| 46 | role: "CEO" |
| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 47 | model: "gpt-4" |
| 48 | temperature: 0.3 |
| 49 | max_tokens: 4000 |
| iomodo | 50598c6 | 2025-07-27 22:06:32 +0400 | [diff] [blame] | 50 | system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md" |
| 51 | |
| 52 | tasks: |
| 53 | storage_path: "/Users/shota/github/staff/operations/" |
| 54 | completed_path: "../operations/completed/" |