-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent_contract.json
More file actions
154 lines (154 loc) · 3.99 KB
/
Copy pathagent_contract.json
File metadata and controls
154 lines (154 loc) · 3.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"schema_version": "0.4.0",
"project": "DataToInsightWorkflowAgent",
"mode": {
"local_first": true,
"public_safe": true,
"demo_mode": true
},
"input_schema": {
"type": "object",
"required": [
"item_id",
"source_type",
"title",
"raw_text",
"language",
"source_origin",
"created_at",
"tags",
"sensitivity_level"
],
"properties": {
"item_id": "Stable synthetic demo item id.",
"source_type": "Example: learning_note, project_output, customer_feedback, job_description.",
"title": "Short public-safe item title.",
"raw_text": "Synthetic public-safe source text.",
"language": "Language code such as en or zh.",
"source_origin": "Must be synthetic_demo for included demo data.",
"created_at": "Demo creation date.",
"tags": "List of public-safe demo tags.",
"sensitivity_level": "Must be public_safe.",
"synthetic": "Must be true for demo data."
}
},
"output_schema": {
"type": "object",
"required": [
"item_id",
"source_type",
"title",
"normalized_text",
"classification",
"scores",
"overall_score",
"priority_level",
"keep_or_ignore",
"key_signals",
"recommended_actions",
"recommended_route",
"reason"
],
"properties": {
"item_id": "Source item id.",
"source_type": "Normalized source type.",
"title": "Normalized title.",
"normalized_text": "Whitespace-normalized text.",
"classification": "Content category from the D2I taxonomy.",
"scores": "0-5 score dictionary across D2I dimensions.",
"overall_score": "Average or weighted value score.",
"priority_level": "High, Medium, Low, Noise, or Needs Review.",
"keep_or_ignore": "keep, archive, ignore, review_later, route_to_agent, or convert_to_project.",
"key_signals": "Actionable signals with why_it_matters, evidence, and possible_use.",
"recommended_actions": "Recommended action objects.",
"recommended_route": "Target agent or None.",
"reason": "Human-readable explanation."
}
},
"scoring_schema": {
"score_range": "0-5",
"dimensions": [
"learning_value",
"business_value",
"project_value",
"portfolio_value",
"career_value",
"content_value",
"actionability",
"novelty",
"evidence_strength",
"reuse_potential",
"urgency",
"strategic_fit"
],
"priority_levels": [
"High",
"Medium",
"Low",
"Noise",
"Needs Review"
]
},
"action_schema": {
"action_types": [
"save_to_knowledge_base",
"route_to_existing_agent",
"create_project_idea",
"use_for_assignment",
"use_for_portfolio",
"use_for_job_search",
"use_for_content_creation",
"generate_report",
"enrich_with_more_data",
"review_later",
"ignore_as_noise"
],
"required_fields": [
"action_type",
"target",
"priority",
"reason",
"next_step"
],
"route_targets": [
"PersonalKnowledgeAgent",
"AgentHubControlCenter",
"SocialPainFinderAgent",
"BusinessOpsAgent",
"CareerPilotAgent",
"NewsSignalAgent",
"VideoExtractSkill",
"DataToInsightWorkflowAgent",
"None"
]
},
"agenthub_summary_schema": {
"required_fields": [
"agent_id",
"agent_name",
"status",
"demo_mode",
"public_safe",
"total_items_processed",
"high_value_signals",
"medium_value_items",
"low_value_or_noise_items",
"recommended_actions_count",
"top_routes",
"latest_report_path",
"capabilities",
"generated_at"
],
"route_targets": [
"AgentHubControlCenter",
"PersonalKnowledgeAgent",
"BusinessOpsAgent",
"CareerPilotAgent",
"SocialPainFinderAgent",
"NewsSignalAgent",
"VideoExtractSkill",
"DataToInsightWorkflowAgent",
"None"
]
}
}