Skip to content

Commit 1f01376

Browse files
committed
refactor: migrate docs from Mintlify to Astro Starlight
- Move introduction.mdx to src/content/docs/index.mdx - Move specification/*.mdx to src/content/docs/specification/ - Move design/rationale.mdx to src/content/docs/design/ - Move logos to src/assets/, favicon to public/ - Remove docs.json Mintlify config - Fix MDX parse errors for angle brackets in content - Add dist/ and .astro/ to .gitignore
1 parent 912f66a commit 1f01376

20 files changed

Lines changed: 4 additions & 84 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ node_modules/
77
Gemfile.lock
88
.DS_Store
99
*.ccpkg
10+
dist/
11+
.astro/

docs.json

Lines changed: 0 additions & 79 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

specification/component-types.mdx renamed to src/content/docs/specification/component-types.mdx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Skills conform to the [Agent Skills specification](https://agentskills.io/specif
2121
Skills support three-tier progressive disclosure to minimize context token usage:
2222

2323
1. **Metadata** (~100 tokens): The `name` and `description` from frontmatter, loaded at session startup for all installed skills.
24-
2. **Instructions** (<5000 tokens recommended): The full `SKILL.md` body, loaded when the skill is activated.
24+
2. **Instructions** (&lt;5000 tokens recommended): The full `SKILL.md` body, loaded when the skill is activated.
2525
3. **Resources** (as needed): Files in `scripts/`, `references/`, and `assets/`, loaded only when required during execution.
2626

2727
**Example SKILL.md:**
@@ -39,10 +39,7 @@ Validate OpenAPI specification files for correctness and compliance.
3939
## Usage
4040

4141
1. Read the target OpenAPI spec file (YAML or JSON).
42-
2. Run the validation script:
43-
```
44-
scripts/validate.py <spec-file>
45-
```
42+
2. Run the validation script: `scripts/validate.py <spec-file>`
4643
3. Report findings grouped by severity (error, warning, info).
4744

4845
## Edge Cases

0 commit comments

Comments
 (0)