-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Expand file tree
/
Copy pathagent-skills.json
More file actions
137 lines (137 loc) · 5.92 KB
/
Copy pathagent-skills.json
File metadata and controls
137 lines (137 loc) · 5.92 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
{
"schemaVersion": 1,
"id": "agent-skills",
"title": "Agent Skills Engineering",
"summary": "Build, route, secure, evaluate, package, and verify Agent Skills in real hosts.",
"estimatedMinutes": 570,
"stateFile": "AGENT-SKILLS-LEARNING.md",
"prerequisites": [
{
"type": "knowledge",
"required": true,
"title": "Files, Python, and the command line",
"description": "You can edit a text file, inspect a directory, and run a Python command. No agent framework experience is required."
},
{
"type": "software",
"required": true,
"title": "Node.js, npx, and Python 3 for real labs",
"description": "The install and bundled-script checkpoints require working node, npx, and python3 commands. The website and docs remain a conceptual fallback when these commands are unavailable."
},
{
"type": "host",
"required": true,
"title": "One selected skill-capable host and install scope",
"description": "Choose a supported agent host plus a writable project or user skill scope before installation. Record the exact host, scope, and installed path; do not infer discovery from installer success."
},
{
"type": "lesson",
"required": false,
"title": "The Tool Interface",
"path": "phases/13-tools-and-protocols/01-the-tool-interface",
"description": "Skim this first if tool schemas and side-effect boundaries are new to you."
},
{
"type": "lesson",
"required": false,
"title": "Tool Schema Design",
"path": "phases/13-tools-and-protocols/05-tool-schema-design",
"description": "Skim this first if you have not designed typed tool contracts."
},
{
"id": "tool-poisoning-and-untrusted-instructions",
"type": "knowledge",
"required": true,
"title": "Tool poisoning and untrusted instructions",
"description": "Before Lesson 26, explain why skill and tool metadata is untrusted input. Lesson 15 is an optional refresher outside this five-lesson route when this preflight is not yet confirmed."
}
],
"invocation": {
"codex": "learn-agent-skills, or choose it from /skills",
"claudeCode": "/learn-agent-skills",
"portableFallback": "Use learn-agent-skills to start or resume the Agent Skills Engineering path."
},
"conceptualFallback": "Read the website or each lesson's docs/en.md manually. Mark real-host discovery, invocation, script, update, and uninstall evidence pending until Node.js, npx, Python 3, a compatible host, and a writable install scope are available.",
"quickStart": {
"estimatedMinutes": 10,
"lessonPath": "phases/13-tools-and-protocols/22-skills-and-agent-sdks",
"goal": "Create a small skill, install the complete reviewer bundle into a real host, invoke it explicitly, verify its output, and remove it cleanly.",
"installCommand": "npx skills add rohitg00/ai-engineering-from-scratch --skill skill-contract-reviewer --full-depth",
"workingDirectory": "An empty learner workspace. Save its absolute path as TARGET_ROOT before installation.",
"expectedEvidence": [
"The installer reports the selected host and destination.",
"The host discovers skill-contract-reviewer after a rescan or new session.",
"An explicit invocation returns a validation report and primitive choice, plus the resolved script path, target path, cwd, argv, and exit code.",
"The uninstall command removes only skill-contract-reviewer from the selected host."
]
},
"lessons": [
{
"order": 1,
"phase": 13,
"lesson": 22,
"title": "Agent Skills: Portable Contract and Runtime Boundary",
"path": "phases/13-tools-and-protocols/22-skills-and-agent-sdks",
"minutes": 90,
"required": true,
"checkpoint": "Create, install, invoke, verify, and remove one complete skill bundle in a real host."
},
{
"order": 2,
"phase": 13,
"lesson": 24,
"title": "Skill Discovery and Progressive Disclosure",
"path": "phases/13-tools-and-protocols/24-skill-discovery-and-progressive-disclosure",
"minutes": 105,
"required": true,
"checkpoint": "Trace discovery, catalog publication, activation, and branch-specific resource loading separately."
},
{
"order": 3,
"phase": 13,
"lesson": 25,
"title": "Skill Invocation and Routing",
"path": "phases/13-tools-and-protocols/25-skill-invocation-and-routing",
"minutes": 105,
"required": true,
"checkpoint": "Exercise explicit invocation, implicit selection, abstention, and a near-miss request."
},
{
"order": 4,
"phase": 13,
"lesson": 26,
"title": "Skill Permissions, Sandboxes, and Trust",
"path": "phases/13-tools-and-protocols/26-skill-permissions-sandboxes-and-trust",
"minutes": 120,
"required": true,
"prerequisitePaths": [
"phases/13-tools-and-protocols/25-skill-invocation-and-routing"
],
"prerequisiteChecks": [
"tool-poisoning-and-untrusted-instructions"
],
"checkpoint": "Distinguish instructions, permission prompts, sandbox containment, and independent verification with observed evidence."
},
{
"order": 5,
"phase": 13,
"lesson": 27,
"title": "Skill Evals, Packaging, and Portability",
"path": "phases/13-tools-and-protocols/27-skill-evals-packaging-and-portability",
"minutes": 150,
"required": true,
"checkpoint": "Run the release gate in a real host, record routing and authority evidence, and verify upgrade and uninstall behavior."
}
],
"optionalLessons": [
{
"phase": 13,
"lesson": 23,
"title": "Capstone: Stateless Tool Ecosystem",
"path": "phases/13-tools-and-protocols/23-capstone-tool-ecosystem",
"minutes": 120,
"required": false,
"entryRule": "Complete the Agent Skills route and Phase 13 lessons 06 through 20 before starting this systems integration capstone."
}
]
}