Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/spec/src/ai/skill.zod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ export const SkillSchema = lazySchema(() => z.object({
* matches either); the runtime enforces this at load time. An agent's
* tool set is the union of its surface-compatible skills' tools — there
* is no global fall-through (ADR-0064). Defaults to `'ask'`, the
* open-source/free surface.
* data-console surface. (Both the `ask` and `build` in-product agent
* runtimes ship in the cloud / Enterprise distribution per ADR-0025;
* the surface value here is authoring metadata, not an edition gate.)
*/
surface: z.enum(['ask', 'build', 'both']).default('ask').describe(
"Agent surface this skill binds to ('ask' | 'build' | 'both') — ADR-0063 §3",
Expand Down