| 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 | |
| iomodo | 90de915 | 2025-07-31 13:20:01 +0400 | [diff] [blame^] | 4 | server: |
| 5 | listen_address: ":9325" |
| 6 | |
| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 7 | openai: |
| 8 | api_key: "${OPENAI_API_KEY}" |
| 9 | base_url: "" |
| 10 | timeout: "60s" |
| 11 | |
| 12 | github: |
| 13 | token: "${GITHUB_TOKEN}" |
| iomodo | 43ec6ae | 2025-07-28 17:40:12 +0400 | [diff] [blame] | 14 | owner: "iomodo" # Replace with your GitHub username |
| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 15 | repo: "staff" # Replace with your repository name |
| 16 | |
| 17 | git: |
| iomodo | a53240a | 2025-07-30 17:33:35 +0400 | [diff] [blame] | 18 | repo_path: "/Users/shota/github/staff/" |
| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 19 | branch_prefix: "task/" |
| 20 | commit_message_template: "Task {task_id}: {task_title} by {agent_name}" |
| iomodo | e7477eb | 2025-07-30 20:26:30 +0400 | [diff] [blame] | 21 | workspace_path: "/Users/shota/staff/workspace" |
| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 22 | pr_template: | |
| 23 | ## Task: {task_title} |
| 24 | |
| 25 | **Priority:** {priority} |
| 26 | **Task ID:** {task_id} |
| 27 | **Agent:** {agent_name} |
| 28 | |
| 29 | ### Description |
| 30 | {task_description} |
| 31 | |
| 32 | ### Solution |
| 33 | {solution} |
| 34 | |
| 35 | ### Files Changed |
| 36 | {files_changed} |
| 37 | |
| 38 | --- |
| 39 | *This PR was automatically generated by Staff AI Agent System* |
| 40 | |
| 41 | # Simplified agent configuration for MVP testing |
| 42 | agents: |
| iomodo | 50598c6 | 2025-07-27 22:06:32 +0400 | [diff] [blame] | 43 | # - name: "backend-engineer" |
| 44 | # role: "Backend Engineer" |
| 45 | # model: "gpt-4" |
| 46 | # temperature: 0.3 |
| 47 | # max_tokens: 4000 |
| 48 | # system_prompt_file: "/Users/shota/github/staff/operations/agents/beckend-engineer/system.md" |
| 49 | - name: "ceo" |
| iomodo | 1c1c60d | 2025-07-30 17:54:10 +0400 | [diff] [blame] | 50 | role: "ceo" |
| user | 5a7d60d | 2025-07-27 21:22:04 +0400 | [diff] [blame] | 51 | model: "gpt-4" |
| 52 | temperature: 0.3 |
| 53 | max_tokens: 4000 |
| iomodo | 50598c6 | 2025-07-27 22:06:32 +0400 | [diff] [blame] | 54 | system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md" |
| 55 | |
| 56 | tasks: |
| 57 | storage_path: "/Users/shota/github/staff/operations/" |
| 58 | completed_path: "../operations/completed/" |