@michael-joseph-miller/ant-bot 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/LICENSE +21 -0
- package/README.md +267 -0
- package/dist/browser-OHRD7YI3.js +524 -0
- package/dist/browser-OHRD7YI3.js.map +7 -0
- package/dist/bundled-46DUK5PG.js +133 -0
- package/dist/bundled-46DUK5PG.js.map +7 -0
- package/dist/chunk-7BOHBPB2.js +287 -0
- package/dist/chunk-7BOHBPB2.js.map +7 -0
- package/dist/chunk-AHAON6J7.js +24 -0
- package/dist/chunk-AHAON6J7.js.map +7 -0
- package/dist/chunk-DYIJTUMY.js +321 -0
- package/dist/chunk-DYIJTUMY.js.map +7 -0
- package/dist/chunk-KSQOVWP5.js +310 -0
- package/dist/chunk-KSQOVWP5.js.map +7 -0
- package/dist/chunk-Z2YT2PZN.js +64 -0
- package/dist/chunk-Z2YT2PZN.js.map +7 -0
- package/dist/index.js +1562 -0
- package/dist/index.js.map +7 -0
- package/dist/install-IY2M3OUQ.js +36 -0
- package/dist/install-IY2M3OUQ.js.map +7 -0
- package/dist/plugin-POMHVGD4.js +53 -0
- package/dist/plugin-POMHVGD4.js.map +7 -0
- package/dist/scheduler-Q7OHNGP6.js +274 -0
- package/dist/scheduler-Q7OHNGP6.js.map +7 -0
- package/dist/server.js +3016 -0
- package/dist/server.js.map +7 -0
- package/dist/skills-66WRX64H.js +17 -0
- package/dist/skills-66WRX64H.js.map +7 -0
- package/dist/skills-spec.js +172 -0
- package/dist/skills-spec.js.map +7 -0
- package/dist/tools-P5537ASX.js +148 -0
- package/dist/tools-P5537ASX.js.map +7 -0
- package/package.json +51 -0
- package/skills/README.md +69 -0
- package/skills/SPEC.md +274 -0
- package/skills/bug-repro/SKILL.md +53 -0
- package/skills/deep-research/SKILL.md +451 -0
- package/skills/deep-research/references/V6_1_improvements.md +112 -0
- package/skills/deep-research/references/completeness_review_checklist.md +25 -0
- package/skills/deep-research/references/counter_review_team_guide.md +181 -0
- package/skills/deep-research/references/enterprise_analysis_frameworks.md +135 -0
- package/skills/deep-research/references/enterprise_mode.md +99 -0
- package/skills/deep-research/references/enterprise_quality_checklist.md +160 -0
- package/skills/deep-research/references/enterprise_research_methodology.md +164 -0
- package/skills/deep-research/references/formatting_rules.md +31 -0
- package/skills/deep-research/references/quality_gates.md +77 -0
- package/skills/deep-research/references/report_template_v6.md +82 -0
- package/skills/deep-research/references/research_notes_format.md +147 -0
- package/skills/deep-research/references/research_plan_checklist.md +26 -0
- package/skills/deep-research/references/research_report_template.md +49 -0
- package/skills/deep-research/references/source_accessibility_policy.md +179 -0
- package/skills/deep-research/references/source_quality_rubric.md +28 -0
- package/skills/deep-research/references/subagent_prompt.md +116 -0
- package/skills/inbox-digest/SKILL.md +51 -0
- package/skills/skill-author/SKILL.md +92 -0
- package/skills/weekly-report/SKILL.md +49 -0
- package/web/dist/assets/index-BLQ8rPiN.js +130 -0
- package/web/dist/assets/index-IEIkG_jd.css +2 -0
- package/web/dist/index.html +13 -0
package/skills/SPEC.md
ADDED
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
> ## Documentation Index
|
|
2
|
+
> Fetch the complete documentation index at: https://agentskills.io/llms.txt
|
|
3
|
+
> Use this file to discover all available pages before exploring further.
|
|
4
|
+
|
|
5
|
+
# Specification
|
|
6
|
+
|
|
7
|
+
> The complete format specification for Agent Skills.
|
|
8
|
+
|
|
9
|
+
## Directory structure
|
|
10
|
+
|
|
11
|
+
A skill is a directory containing, at minimum, a `SKILL.md` file:
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
skill-name/
|
|
15
|
+
├── SKILL.md # Required: metadata + instructions
|
|
16
|
+
├── scripts/ # Optional: executable code
|
|
17
|
+
├── references/ # Optional: documentation
|
|
18
|
+
├── assets/ # Optional: templates, resources
|
|
19
|
+
└── ... # Any additional files or directories
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## `SKILL.md` format
|
|
23
|
+
|
|
24
|
+
The `SKILL.md` file must contain YAML frontmatter followed by Markdown content.
|
|
25
|
+
|
|
26
|
+
### Frontmatter
|
|
27
|
+
|
|
28
|
+
| Field | Required | Constraints |
|
|
29
|
+
| --------------- | -------- | ----------------------------------------------------------------------------------------------------------------- |
|
|
30
|
+
| `name` | Yes | Max 64 characters. Lowercase letters, numbers, and hyphens only. Must not start or end with a hyphen. |
|
|
31
|
+
| `description` | Yes | Max 1024 characters. Non-empty. Describes what the skill does and when to use it. |
|
|
32
|
+
| `license` | No | License name or reference to a bundled license file. |
|
|
33
|
+
| `compatibility` | No | Max 500 characters. Indicates environment requirements (intended product, system packages, network access, etc.). |
|
|
34
|
+
| `metadata` | No | Arbitrary key-value mapping for additional metadata (a map from string keys to string values). |
|
|
35
|
+
| `allowed-tools` | No | Space-separated string of pre-approved tools the skill may use. (Experimental) |
|
|
36
|
+
|
|
37
|
+
<Card>
|
|
38
|
+
**Minimal example:**
|
|
39
|
+
|
|
40
|
+
```markdown SKILL.md theme={null}
|
|
41
|
+
---
|
|
42
|
+
name: skill-name
|
|
43
|
+
description: A description of what this skill does and when to use it.
|
|
44
|
+
---
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**Example with optional fields:**
|
|
48
|
+
|
|
49
|
+
```markdown SKILL.md theme={null}
|
|
50
|
+
---
|
|
51
|
+
name: pdf-processing
|
|
52
|
+
description: Extract PDF text, fill forms, merge files. Use when handling PDFs.
|
|
53
|
+
license: Apache-2.0
|
|
54
|
+
metadata:
|
|
55
|
+
author: example-org
|
|
56
|
+
version: "1.0"
|
|
57
|
+
---
|
|
58
|
+
```
|
|
59
|
+
</Card>
|
|
60
|
+
|
|
61
|
+
#### `name` field
|
|
62
|
+
|
|
63
|
+
The required `name` field:
|
|
64
|
+
|
|
65
|
+
* Must be 1-64 characters
|
|
66
|
+
* May only contain unicode lowercase alphanumeric characters (`a-z`, `0-9`) and hyphens (`-`)
|
|
67
|
+
* Must not start or end with a hyphen (`-`)
|
|
68
|
+
* Must not contain consecutive hyphens (`--`)
|
|
69
|
+
* Must match the parent directory name
|
|
70
|
+
|
|
71
|
+
<Card>
|
|
72
|
+
**Valid examples:**
|
|
73
|
+
|
|
74
|
+
```yaml theme={null}
|
|
75
|
+
name: pdf-processing
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
```yaml theme={null}
|
|
79
|
+
name: data-analysis
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
```yaml theme={null}
|
|
83
|
+
name: code-review
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
**Invalid examples:**
|
|
87
|
+
|
|
88
|
+
```yaml theme={null}
|
|
89
|
+
name: PDF-Processing # uppercase not allowed
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
```yaml theme={null}
|
|
93
|
+
name: -pdf # cannot start with hyphen
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
```yaml theme={null}
|
|
97
|
+
name: pdf--processing # consecutive hyphens not allowed
|
|
98
|
+
```
|
|
99
|
+
</Card>
|
|
100
|
+
|
|
101
|
+
#### `description` field
|
|
102
|
+
|
|
103
|
+
The required `description` field:
|
|
104
|
+
|
|
105
|
+
* Must be 1-1024 characters
|
|
106
|
+
* Should describe both what the skill does and when to use it
|
|
107
|
+
* Should include specific keywords that help agents identify relevant tasks
|
|
108
|
+
|
|
109
|
+
<Card>
|
|
110
|
+
**Good example:**
|
|
111
|
+
|
|
112
|
+
```yaml theme={null}
|
|
113
|
+
description: Extracts text and tables from PDF files, fills PDF forms, and merges multiple PDFs. Use when working with PDF documents or when the user mentions PDFs, forms, or document extraction.
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
**Poor example:**
|
|
117
|
+
|
|
118
|
+
```yaml theme={null}
|
|
119
|
+
description: Helps with PDFs.
|
|
120
|
+
```
|
|
121
|
+
</Card>
|
|
122
|
+
|
|
123
|
+
#### `license` field
|
|
124
|
+
|
|
125
|
+
The optional `license` field:
|
|
126
|
+
|
|
127
|
+
* Specifies the license applied to the skill
|
|
128
|
+
* We recommend keeping it short (either the name of a license or the name of a bundled license file)
|
|
129
|
+
|
|
130
|
+
<Card>
|
|
131
|
+
**Example:**
|
|
132
|
+
|
|
133
|
+
```yaml theme={null}
|
|
134
|
+
license: Proprietary. LICENSE.txt has complete terms
|
|
135
|
+
```
|
|
136
|
+
</Card>
|
|
137
|
+
|
|
138
|
+
#### `compatibility` field
|
|
139
|
+
|
|
140
|
+
The optional `compatibility` field:
|
|
141
|
+
|
|
142
|
+
* Must be 1-500 characters if provided
|
|
143
|
+
* Should only be included if your skill has specific environment requirements
|
|
144
|
+
* Can indicate intended product, required system packages, network access needs, etc.
|
|
145
|
+
|
|
146
|
+
<Card>
|
|
147
|
+
**Examples:**
|
|
148
|
+
|
|
149
|
+
```yaml theme={null}
|
|
150
|
+
compatibility: Designed for Claude Code (or similar products)
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
```yaml theme={null}
|
|
154
|
+
compatibility: Requires git, docker, jq, and access to the internet
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
```yaml theme={null}
|
|
158
|
+
compatibility: Requires Python 3.14+ and uv
|
|
159
|
+
```
|
|
160
|
+
</Card>
|
|
161
|
+
|
|
162
|
+
<Note>
|
|
163
|
+
Most skills do not need the `compatibility` field.
|
|
164
|
+
</Note>
|
|
165
|
+
|
|
166
|
+
#### `metadata` field
|
|
167
|
+
|
|
168
|
+
The optional `metadata` field:
|
|
169
|
+
|
|
170
|
+
* A map from string keys to string values
|
|
171
|
+
* Clients can use this to store additional properties not defined by the Agent Skills spec
|
|
172
|
+
* We recommend making your key names reasonably unique to avoid accidental conflicts
|
|
173
|
+
|
|
174
|
+
<Card>
|
|
175
|
+
**Example:**
|
|
176
|
+
|
|
177
|
+
```yaml theme={null}
|
|
178
|
+
metadata:
|
|
179
|
+
author: example-org
|
|
180
|
+
version: "1.0"
|
|
181
|
+
```
|
|
182
|
+
</Card>
|
|
183
|
+
|
|
184
|
+
#### `allowed-tools` field
|
|
185
|
+
|
|
186
|
+
The optional `allowed-tools` field:
|
|
187
|
+
|
|
188
|
+
* A space-separated string of tools that are pre-approved to run
|
|
189
|
+
* Experimental. Support for this field may vary between agent implementations
|
|
190
|
+
|
|
191
|
+
<Card>
|
|
192
|
+
**Example:**
|
|
193
|
+
|
|
194
|
+
```yaml theme={null}
|
|
195
|
+
allowed-tools: Bash(git:*) Bash(jq:*) Read
|
|
196
|
+
```
|
|
197
|
+
</Card>
|
|
198
|
+
|
|
199
|
+
### Body content
|
|
200
|
+
|
|
201
|
+
The Markdown body after the frontmatter contains the skill instructions. There are no format restrictions. Write whatever helps agents perform the task effectively.
|
|
202
|
+
|
|
203
|
+
Recommended sections:
|
|
204
|
+
|
|
205
|
+
* Step-by-step instructions
|
|
206
|
+
* Examples of inputs and outputs
|
|
207
|
+
* Common edge cases
|
|
208
|
+
|
|
209
|
+
Note that the agent will load this entire file once it's decided to activate a skill. Consider splitting longer `SKILL.md` content into referenced files.
|
|
210
|
+
|
|
211
|
+
## Optional directories
|
|
212
|
+
|
|
213
|
+
A skill directory may contain any files and directories beyond the required `SKILL.md`. The conventions below are recommendations for organizing common types of content.
|
|
214
|
+
|
|
215
|
+
### `scripts/`
|
|
216
|
+
|
|
217
|
+
Contains executable code that agents can run. Scripts should:
|
|
218
|
+
|
|
219
|
+
* Be self-contained or clearly document dependencies
|
|
220
|
+
* Include helpful error messages
|
|
221
|
+
* Handle edge cases gracefully
|
|
222
|
+
|
|
223
|
+
Supported languages depend on the agent implementation. Common options include Python, Bash, and JavaScript.
|
|
224
|
+
|
|
225
|
+
### `references/`
|
|
226
|
+
|
|
227
|
+
Contains additional documentation that agents can read when needed:
|
|
228
|
+
|
|
229
|
+
* `REFERENCE.md` - Detailed technical reference
|
|
230
|
+
* `FORMS.md` - Form templates or structured data formats
|
|
231
|
+
* Domain-specific files (`finance.md`, `legal.md`, etc.)
|
|
232
|
+
|
|
233
|
+
Keep individual [reference files](#file-references) focused. Agents load these on demand, so smaller files mean less use of context.
|
|
234
|
+
|
|
235
|
+
### `assets/`
|
|
236
|
+
|
|
237
|
+
Contains static resources:
|
|
238
|
+
|
|
239
|
+
* Templates (document templates, configuration templates)
|
|
240
|
+
* Images (diagrams, examples)
|
|
241
|
+
* Data files (lookup tables, schemas)
|
|
242
|
+
|
|
243
|
+
## Progressive disclosure
|
|
244
|
+
|
|
245
|
+
Agents load skills *progressively*, pulling in more detail only as a task calls for it. Skills should be structured to take advantage of this:
|
|
246
|
+
|
|
247
|
+
1. **Metadata** (\~100 tokens): The `name` and `description` fields are loaded at startup for all skills
|
|
248
|
+
2. **Instructions** (\< 5000 tokens recommended): The full `SKILL.md` body is loaded when the skill is activated
|
|
249
|
+
3. **Resources** (as needed): Files (e.g. those in `scripts/`, `references/`, or `assets/`) are loaded only when required
|
|
250
|
+
|
|
251
|
+
Keep your main `SKILL.md` under 500 lines. Move detailed reference material to separate files.
|
|
252
|
+
|
|
253
|
+
## File references
|
|
254
|
+
|
|
255
|
+
When referencing other files in your skill, use relative paths from the skill root:
|
|
256
|
+
|
|
257
|
+
```markdown SKILL.md theme={null}
|
|
258
|
+
See [the reference guide](references/REFERENCE.md) for details.
|
|
259
|
+
|
|
260
|
+
Run the extraction script:
|
|
261
|
+
scripts/extract.py
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
Keep file references one level deep from `SKILL.md`. Avoid deeply nested reference chains.
|
|
265
|
+
|
|
266
|
+
## Validation
|
|
267
|
+
|
|
268
|
+
Use the [skills-ref](https://github.com/agentskills/agentskills/tree/main/skills-ref) reference library to validate your skills:
|
|
269
|
+
|
|
270
|
+
```bash theme={null}
|
|
271
|
+
skills-ref validate ./my-skill
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
This checks that your `SKILL.md` frontmatter is valid and follows all naming conventions.
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: bug-repro
|
|
3
|
+
description: "Turns a raw bug report into a reliable repro pack: exact steps, expected vs. actual, evidence, and a minimal test case, on a fresh test account in staging."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## When to use it
|
|
7
|
+
|
|
8
|
+
Use this skill when handed a bug report (from a ticket, a message, or a user complaint) that
|
|
9
|
+
needs to become something an engineer can act on immediately, without first having to reproduce
|
|
10
|
+
it themselves. Not for triaging severity or deciding priority — just for turning "it's broken"
|
|
11
|
+
into "here's exactly how, and here's proof."
|
|
12
|
+
|
|
13
|
+
## Required inputs and access
|
|
14
|
+
|
|
15
|
+
- The original bug report text, ticket link, or user message.
|
|
16
|
+
- Access to a **staging** environment and a **fresh test account** — never a production account
|
|
17
|
+
or real customer data.
|
|
18
|
+
- Browser and network-inspection tools for evidence capture.
|
|
19
|
+
- If staging is unavailable or the bug depends on production-only data, stop and report that
|
|
20
|
+
instead of attempting the repro against production.
|
|
21
|
+
|
|
22
|
+
## Sequence of work
|
|
23
|
+
|
|
24
|
+
1. Read the report and write down what you believe is being claimed: expected vs. actual.
|
|
25
|
+
2. Create or reuse a fresh test account in staging — never reuse a production/customer login.
|
|
26
|
+
3. Attempt the exact steps described, in order, capturing a screenshot and the browser
|
|
27
|
+
console/network log at each meaningful step.
|
|
28
|
+
4. If the first attempt doesn't reproduce it, vary one variable at a time (browser, account
|
|
29
|
+
state, timing) and note what changed.
|
|
30
|
+
5. Once reproduced, strip the steps down to the smallest sequence that still triggers it.
|
|
31
|
+
6. If it does not reproduce after reasonable attempts, say so plainly — do not force a result.
|
|
32
|
+
|
|
33
|
+
## How to validate the result
|
|
34
|
+
|
|
35
|
+
- The repro steps must be re-runnable by someone else from a fresh test account, using only what
|
|
36
|
+
is written down.
|
|
37
|
+
- Expected vs. actual must be stated in one sentence each, unambiguously.
|
|
38
|
+
- Every step must have supporting evidence (screenshot, console/network excerpt) attached.
|
|
39
|
+
- If the bug turns out to be data-dependent on production, that is itself a finding — report it,
|
|
40
|
+
do not attempt to pull real production data to compensate.
|
|
41
|
+
|
|
42
|
+
## What to return
|
|
43
|
+
|
|
44
|
+
A repro pack containing: exact numbered steps, expected result, actual result, screenshots per
|
|
45
|
+
step, relevant console/network excerpts, browser/OS versions used, the minimal test case, and (if
|
|
46
|
+
reproduction failed) a clear statement of what was tried and what is still unknown.
|
|
47
|
+
|
|
48
|
+
## What requires approval
|
|
49
|
+
|
|
50
|
+
- Touching any production environment or any real customer account or data — always stay in
|
|
51
|
+
staging with a fresh test account.
|
|
52
|
+
- Filing or closing the ticket on the reporter's behalf, unless explicitly asked to.
|
|
53
|
+
- Sharing the repro pack anywhere outside the originating ticket/conversation.
|