@apiKey = {{$dotenv API_KEY}} ### Health GET http://127.0.0.1:8010/api/v1/health X-API-Key: {{apiKey}} ### Create project POST http://127.0.0.1:8010/api/v1/business/projects Content-Type: application/json X-API-Key: {{apiKey}} { "actor": "demo", "data": { "code": "P-2026-001", "name": "公司AI管理系统一期", "owner": "负责人A", "status": "执行中", "budget_amount": 100000, "actual_amount": 25000, "progress_percent": 30, "risk_level": "medium" } } ### Daily brief GET http://127.0.0.1:8010/api/v1/reports/daily-brief X-API-Key: {{apiKey}} ### Sync legacy tasks POST http://127.0.0.1:8010/api/v1/integrations/mysql/tasks/sync Content-Type: application/json X-API-Key: {{apiKey}} { "dry_run": true, "limit": 50, "field_map": { "title": "task_name", "owner": "task_assignee", "due_date": "task_end_time" } } ### Risk assign POST http://127.0.0.1:8010/api/v1/risks/events/1/assign Content-Type: application/json X-API-Key: {{apiKey}} { "assigned_to": "risk-owner", "comment": "请跟进处理" } ### Report push runs GET http://127.0.0.1:8010/api/v1/reports/push-runs X-API-Key: {{apiKey}} ### AI ask POST http://127.0.0.1:8010/api/v1/ai/ask Content-Type: application/json X-API-Key: {{apiKey}} { "actor": "demo", "prompt": "总结当前项目风险。", "context": { "project": "P-2026-001" } }