# KingClawArmy - 第八部分:JSON Schema > 基於 v2 schema 更新,新增會議相關 schema > 所有 schema 只保留格式模板,不放假資料 --- ## 8.1 共用欄位 ```json { "task_id": "", "project_id": "", "agent_id": "", "role": "", "timestamp": "", "status": "", "input_version": "" } ``` --- ## 8.2 管理層 Schema ### Task_Spec.json(CEO/COO 產出) ```json { "task_id": "", "project_id": "", "agent_id": "ceo_coo", "role": "ceo_coo", "timestamp": "", "status": "", "goal": "", "success_criteria": [""], "routes": [ { "agent_id": "", "subtask": "", "required_output": "", "collaboration_mode": "" } ], "priority": "", "meeting_required": "", "meeting_type": "", "notes": [""] } ``` ### Final_Decision_Packet.json(CEO/COO 產出) ```json { "task_id": "", "project_id": "", "agent_id": "ceo_coo", "timestamp": "", "status": "done", "summary": "", "options": [ { "name": "", "description": "", "pros": [""], "cons": [""], "risk_level": "" } ], "recommended_option": "", "review_verdict": "", "meeting_conclusions": [""], "decision_needed": [""] } ``` ### Meeting_Summary.json(秘書產出) ```json { "task_id": "", "project_id": "", "agent_id": "secretary", "timestamp": "", "meeting_type": "", "topic": "", "participants": [""], "key_points": [""], "consensus": "", "disagreements": [""], "action_items": [ { "owner": "", "task": "", "deadline": "" } ], "unresolved": [""] } ``` ### State_Diff.json(秘書產出) ```json { "task_id": "", "agent_id": "secretary", "timestamp": "", "added": [""], "changed": [""], "removed": [""] } ``` ### Review_Report.json(審查員產出) ```json { "task_id": "", "agent_id": "reviewer", "timestamp": "", "reviewed_agent_id": "", "reviewed_output_type": "", "verdict": "", "issues": [ { "severity": "", "category": "", "evidence": "", "required_fix": "" } ], "revise_count": "", "recommend_meeting": "", "notes": "" } ``` --- ## 8.3 量化研究 Schema ### Finance_Research_Brief.json ```json { "task_id": "", "agent_id": "finance_researcher", "timestamp": "", "sources": [ { "title": "", "url": "", "published_at": "", "source_type": "", "summary": "", "confidence": "", "dedupe_key": "" } ], "macro_summary": "", "conflicts": [""], "takeaways": [""] } ``` ### Market_Structure_Report.json ```json { "task_id": "", "agent_id": "market_structure_researcher", "timestamp": "", "timeframes_used": [""], "structure_summary": [""], "liquidity_zones": [""], "poi_candidates": [""], "mss_signals": [""], "bias": "", "confidence": "", "notes": [""] } ``` ### Bullish_Research_Report.json ```json { "task_id": "", "agent_id": "bullish_researcher", "timestamp": "", "bull_case": [""], "supporting_evidence": [""], "expected_edge": [""], "invalidations": [""], "conviction_level": "" } ``` ### Bearish_Research_Report.json ```json { "task_id": "", "agent_id": "bearish_researcher", "timestamp": "", "bear_case": [""], "supporting_evidence": [""], "risk_warnings": [""], "trade_rejection_reasons": [""], "conviction_level": "" } ``` ### Quant_Strategy_Spec.json(含風控) ```json { "task_id": "", "agent_id": "quant_strategist", "timestamp": "", "strategy_hypothesis": [""], "entry_rules": [""], "exit_rules": [""], "risk_control": { "position_sizing": [""], "stop_rules": [""], "take_profit_rules": [""], "max_drawdown": "", "max_concurrent_positions": "" }, "bias_checks": [""], "meeting_based": "", "meeting_id": "" } ``` ### Backtest_Delivery.json ```json { "task_id": "", "agent_id": "quant_engineer", "timestamp": "", "implementation_type": "", "rules_implemented": [""], "data_used": [""], "assumptions": [""], "results_summary": { "winrate": "", "expectancy": "", "max_drawdown": "", "sharpe_ratio": "", "total_trades": "", "period": "" }, "artifacts": [""], "bias_warnings": [""], "handoff_notes": [""] } ``` ### Data_Analysis_Report.json ```json { "task_id": "", "agent_id": "data_analyst", "timestamp": "", "report_type": "", "kpi_summary": [""], "insights": [""], "anomalies": [""], "recommendations": [""] } ``` --- ## 8.4 行銷 & 內容 Schema ### Market_Research_Brief.json / Market_Analysis_Report.json ```json { "task_id": "", "agent_id": "market_researcher", "timestamp": "", "report_type": "", "sources": [ { "title": "", "url": "", "summary": "", "confidence": "" } ], "pain_points": [""], "competitor_patterns": [""], "trend_signals": [""], "takeaways": [""] } ``` ### Brand_Strategy_Plan.json / Growth_Strategy_Plan.json ```json { "task_id": "", "agent_id": "strategy_director", "timestamp": "", "plan_type": "", "usp": [""], "target_audience": [""], "core_messages": [""], "campaign_direction": [""], "funnel_plan": [""], "test_plan": [""] } ``` ### Ads_Performance_Report.json ```json { "task_id": "", "agent_id": "ads_analyst", "timestamp": "", "performance_summary": [""], "diagnosis": [""], "optimization_suggestions": [""], "alerts": [""] } ``` ### Copywriting_Pack.json ```json { "task_id": "", "agent_id": "copywriter", "timestamp": "", "content_type": "", "hooks": [""], "bodies": [""], "ctas": [""], "video_sections": [ { "scene": "", "message": "", "duration_seconds": "" } ] } ``` ### Static_Creative_Brief.json / Storyboard_Brief.json ```json { "task_id": "", "agent_id": "creative_director", "timestamp": "", "brief_type": "", "visual_direction": [""], "must_include": [""], "asset_specs": [""], "shots": [ { "scene": "", "visual": "", "motion": "", "caption": "" } ], "style_notes": [""] } ``` --- ## 8.5 新增:會議相關 Schema ### Meeting_Request.json(發起會議) ```json { "meeting_id": "", "meeting_type": "", "topic": "", "requested_by": "", "participants": [""], "moderator": "", "input_context": [""], "max_rounds": "", "stop_condition": "", "discord_channel": "" } ``` ### Meeting_Conclusion.json(會議結論) ```json { "meeting_id": "", "meeting_type": "", "topic": "", "participants": [""], "moderator": "", "total_rounds": "", "conclusion": "", "consensus_reached": "", "key_arguments": [ { "agent_id": "", "position": "", "key_points": [""] } ], "action_items": [ { "owner": "", "task": "" } ], "dissenting_opinions": [""], "next_steps": [""] } ```