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