| iomodo | f1ddefe | 2025-07-28 09:02:05 +0400 | [diff] [blame] | 1 | # Staff MVP Configuration with Fake LLM for Testing |
| 2 | # This config uses fake LLM responses for testing without API keys |
| 3 | |
| 4 | openai: |
| 5 | api_key: "fake-key" # Not used by fake provider |
| 6 | base_url: "fake://test" |
| 7 | timeout: "5s" |
| 8 | |
| 9 | github: |
| 10 | token: "fake-github-token" # Replace with real token for actual GitHub operations |
| 11 | owner: "shota" |
| 12 | repo: "staff" |
| 13 | |
| 14 | git: |
| iomodo | a53240a | 2025-07-30 17:33:35 +0400 | [diff] [blame] | 15 | repo_path: "/Users/shota/github/staff/" |
| iomodo | f1ddefe | 2025-07-28 09:02:05 +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 (Testing Mode)* |
| 36 | |
| 37 | # Fake LLM configuration for testing |
| 38 | agents: |
| 39 | - name: "ceo" |
| 40 | role: "CEO" |
| 41 | model: "fake-gpt-4" |
| 42 | temperature: 0.3 |
| 43 | max_tokens: 4000 |
| 44 | system_prompt_file: "/Users/shota/github/staff/operations/agents/ceo/system.md" |
| 45 | |
| 46 | tasks: |
| 47 | storage_path: "/Users/shota/github/staff/operations/tasks/" |
| 48 | completed_path: "/Users/shota/github/staff/operations/completed/" |