-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllms.tmpl.txt
More file actions
47 lines (28 loc) · 1.09 KB
/
Copy pathllms.tmpl.txt
File metadata and controls
47 lines (28 loc) · 1.09 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
# Agent Skills
AI assistant skills for Claude, Copilot, and other LLMs, following the Agent Skills specification.
## Trigger phrase
Include `use stuffbucket` in a prompt to force-route through `list_skills` before answering.
Skills also auto-trigger from "Use when..." sentences in each `description`.
Recommended priming for system prompts: instruct the agent to call `list_skills` early
for any task that might match a packaged workflow, load matches via `get_skill`, and
follow the skill's "Use when..." guidance when present.
## Quick Start
{{QUICK_START}}
## Repository Health
{{HEALTH}}
## Skills
{{SKILLS}}
## Available Commands
{{COMMANDS}}
## MCP Server
{{MCP}}
## Structure
{{STRUCTURE}}
## Conventions
- Each skill lives in its own directory with a required `SKILL.md`
- YAML frontmatter requires `name` (kebab-case, matches directory) and `description`
- Optional frontmatter: `license`, `metadata`, `compatibility`, `allowed-tools`
- Content should be under 500 lines for optimal context management
- Optional subdirectories: `scripts/`, `references/`, `assets/`
## Docs
{{DOCS}}