main
md 47 lines 2.34 KB
Rendered Raw
1 # Bundled Skills DOX
2
3 ## Purpose
4
5 - Own bundled Agent Zero skills and their agent-facing instructions.
6 - Keep skill workflows accurate, composable, and safe for runtime loading.
7
8 ## Ownership
9
10 - Each direct skill directory owns its `SKILL.md` and any local supporting files.
11 - Plugin-distributed skills belong under the relevant plugin directory.
12 - User-local skills belong under `usr/skills/`.
13
14 ## Local Contracts
15
16 - Every skill directory must include a `SKILL.md`.
17 - Skill instructions must be operational and scoped to the skill's purpose.
18 - Do not include secrets, private user data, or environment-specific credentials.
19 - Supporting files referenced by a skill must exist relative to that skill directory.
20
21 ## Work Guidance
22
23 - Keep skills focused on repeatable workflows that agents should actively follow.
24 - Prefer updating an existing skill over creating overlapping skill variants.
25 - When a skill refers to repository paths, commands, or plugin architecture, keep those references current with source and docs.
26
27 ## Verification
28
29 - Run skill runtime/import tests after changing skill loading assumptions or skill format.
30 - Manually read changed `SKILL.md` files for broken relative references.
31
32 ## Child DOX Index
33
34 Direct child DOX files:
35
36 | Child | Scope |
37 | --- | --- |
38 | [a0-contribute-plugin/AGENTS.md](a0-contribute-plugin/AGENTS.md) | Publishing plugins to the community Plugin Index. |
39 | [a0-create-agent/AGENTS.md](a0-create-agent/AGENTS.md) | Creating Agent Zero agent profiles. |
40 | [a0-create-plugin/AGENTS.md](a0-create-plugin/AGENTS.md) | Creating or extending Agent Zero plugins. |
41 | [a0-debug-plugin/AGENTS.md](a0-debug-plugin/AGENTS.md) | Diagnosing plugin loading, API, frontend, and extension issues. |
42 | [a0-development/AGENTS.md](a0-development/AGENTS.md) | Broad Agent Zero framework development guidance. |
43 | [a0-manage-plugin/AGENTS.md](a0-manage-plugin/AGENTS.md) | Plugin install, update, scan, enable, disable, and removal workflows. |
44 | [a0-plugin-router/AGENTS.md](a0-plugin-router/AGENTS.md) | Routing plugin-related user requests to specialist skills. |
45 | [a0-review-plugin/AGENTS.md](a0-review-plugin/AGENTS.md) | Full plugin audit workflow and checklists. |
46 | [build-skill/AGENTS.md](build-skill/AGENTS.md) | Building and improving Agent Zero skills. |
47 | [scheduled-tasks/AGENTS.md](scheduled-tasks/AGENTS.md) | Managing scheduled, planned, and adhoc tasks. |