task: task-1753636924-a1d4c708 - created
Change-Id: Ic78528c47ae38114b9b7504f1c4a76f95e93eb13
diff --git a/server/config.yaml b/server/config.yaml
new file mode 100644
index 0000000..2bd6482
--- /dev/null
+++ b/server/config.yaml
@@ -0,0 +1,43 @@
+# Staff MVP Configuration
+# This is a minimal config for testing the MVP
+
+openai:
+ api_key: "${OPENAI_API_KEY}"
+ base_url: ""
+ timeout: "60s"
+
+github:
+ token: "${GITHUB_TOKEN}"
+ owner: "shota" # Replace with your GitHub username
+ repo: "staff" # Replace with your repository name
+
+git:
+ branch_prefix: "task/"
+ commit_message_template: "Task {task_id}: {task_title} by {agent_name}"
+ pr_template: |
+ ## Task: {task_title}
+
+ **Priority:** {priority}
+ **Task ID:** {task_id}
+ **Agent:** {agent_name}
+
+ ### Description
+ {task_description}
+
+ ### Solution
+ {solution}
+
+ ### Files Changed
+ {files_changed}
+
+ ---
+ *This PR was automatically generated by Staff AI Agent System*
+
+# Simplified agent configuration for MVP testing
+agents:
+ - name: "backend-engineer"
+ role: "Backend Engineer"
+ model: "gpt-4"
+ temperature: 0.3
+ max_tokens: 4000
+ system_prompt_file: "operations/agents/backend-engineer/system.md"
\ No newline at end of file