From fe28cce09e069778aee1ef6ccce6bc079f94ef33 Mon Sep 17 00:00:00 2001 From: Jonathan Hefner Date: Mon, 9 Mar 2026 09:30:26 -0500 Subject: [PATCH] Add `...` entry to directory tree in specification doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The directory listing is not exhaustive — skill authors can include other files and subdirectories beyond those shown. Adding a `...` entry makes this explicit. Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/specification.mdx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/specification.mdx b/docs/specification.mdx index 0e8d05b..e2cc97a 100644 --- a/docs/specification.mdx +++ b/docs/specification.mdx @@ -7,14 +7,15 @@ This document defines the Agent Skills format. ## Directory structure -A skill is a directory containing at minimum a `SKILL.md` file: +A skill is a directory containing, at minimum, a `SKILL.md` file: ``` skill-name/ ├── SKILL.md # Required: metadata + instructions ├── scripts/ # Optional: executable code ├── references/ # Optional: documentation -└── assets/ # Optional: templates, resources +├── assets/ # Optional: templates, resources +└── ... # Any additional files or directories ``` ## `SKILL.md` format