@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}} ### 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" } }