Skip to content

Commit 2af76d0

Browse files
committed
refactor: rename skills to cognitive domains + document naming criteria
Skill renames: - research.synthesize -> analysis.synthesize - agent.decide -> decision.make New domains in vocabulary.json: - analysis: Structured analysis, synthesis, and interpretation of information - decision: Structured decision-making under criteria and uncertainty Documentation (VOCABULARY.md): - Added Skill Naming section: principles, anti-patterns, capability vs skill comparison - Added Domain Design Criteria section: technical vs cognitive domains, when to create new domains - Updated examples to reflect new skill names Updated cross-references in SEMANTIC_FAMILY_MAP.md and skill descriptions. Catalog regenerated.
1 parent e0e47ac commit 2af76d0

File tree

9 files changed

+1258
-1054
lines changed

9 files changed

+1258
-1054
lines changed

catalog/capability_governance_guardrails.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
"summary": {
33
"capabilities_total": 104,
44
"covered_domains": 25,
5-
"uncovered_domains": 0,
5+
"uncovered_domains": 2,
66
"semantic_family_alerts": 11,
77
"duplicate_description_alerts": 0,
88
"metadata_issues": 101
99
},
10-
"uncovered_domains": [],
10+
"uncovered_domains": [
11+
"analysis",
12+
"decision"
13+
],
1114
"semantic_family_alerts": [
1215
{
1316
"domain": "agent",

catalog/graph.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
{
22
"skills": {
3-
"agent.decide": {
4-
"capabilities": [
5-
"agent.option.generate",
6-
"eval.option.score",
7-
"eval.output.score",
8-
"model.output.generate"
9-
],
10-
"skills": []
11-
},
123
"agent.plan-and-route": {
134
"capabilities": [
145
"agent.plan.generate",
@@ -30,6 +21,13 @@
3021
],
3122
"skills": []
3223
},
24+
"analysis.synthesize": {
25+
"capabilities": [
26+
"model.output.generate",
27+
"research.source.retrieve"
28+
],
29+
"skills": []
30+
},
3331
"audio.transcribe-summary": {
3432
"capabilities": [
3533
"audio.transcribe",
@@ -51,6 +49,15 @@
5149
],
5250
"skills": []
5351
},
52+
"decision.make": {
53+
"capabilities": [
54+
"agent.option.generate",
55+
"eval.option.score",
56+
"eval.output.score",
57+
"model.output.generate"
58+
],
59+
"skills": []
60+
},
5461
"doc.chunk-and-embed": {
5562
"capabilities": [
5663
"doc.chunk",
@@ -144,13 +151,6 @@
144151
],
145152
"skills": []
146153
},
147-
"research.synthesize": {
148-
"capabilities": [
149-
"model.output.generate",
150-
"research.source.retrieve"
151-
],
152-
"skills": []
153-
},
154154
"table.filter-summary": {
155155
"capabilities": [
156156
"table.filter",

0 commit comments

Comments
 (0)