Skip to content

Commit e670d04

Browse files
committed
fix(docs): escape angle brackets in MDX and update infographic layout
Bare `<` characters in component-types.mdx were parsed as JSX by the MDX compiler, breaking the Astro build on GitHub Pages. Also includes updated infographic SVG spacing and card sizing.
1 parent 422a0e2 commit e670d04

2 files changed

Lines changed: 29 additions & 29 deletions

File tree

.github/readme-infographic.svg

Lines changed: 27 additions & 27 deletions
Loading

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

Lines changed: 2 additions & 2 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:**
@@ -44,7 +44,7 @@ Validate OpenAPI specification files for correctness and compliance.
4444
1. Read the target OpenAPI spec file (YAML or JSON).
4545
2. Run the validation script:
4646
```
47-
scripts/validate.py <spec-file>
47+
scripts/validate.py &lt;spec-file&gt;
4848
```
4949
3. Report findings grouped by severity (error, warning, info).
5050

0 commit comments

Comments
 (0)