Skip to content
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
d60e7be
Add Slidev presentation on Agent Skills and Mapbox skills
mattpodwysocki Mar 10, 2026
faa9b04
Fix Prettier formatting and last slide frontmatter
mattpodwysocki Mar 10, 2026
b637ffe
Exclude presentations/ from Prettier (Slidev uses --- as slide separa…
mattpodwysocki Mar 10, 2026
e12cd86
Exclude presentations/ from markdownlint (Slidev uses multiple H1s pe…
mattpodwysocki Mar 10, 2026
98a238b
Add intro slides: the problem, why skills, why Mapbox, skills as stra…
mattpodwysocki Mar 10, 2026
d39771c
Add three slides on writing and benchmarking evals for your own skill
mattpodwysocki Mar 10, 2026
bbf6e88
Add CTA slides for uncovered skill areas and community contributions
mattpodwysocki Mar 11, 2026
69fecb9
Add contact info to title slide
mattpodwysocki Mar 11, 2026
8bade45
Split benchmark slide, shorten skill names to fit table on screen
mattpodwysocki Mar 12, 2026
2a53b22
Fix callout box colors for dark theme — replace light bg with translu…
mattpodwysocki Mar 12, 2026
f4a768c
Tighten benchmark results slide to prevent overflow
mattpodwysocki Mar 12, 2026
04e11b2
Remove border box from benchmark results slide
mattpodwysocki Mar 12, 2026
44d66c6
Add slide: use Claude's built-in skill-creator to write skills and evals
mattpodwysocki Mar 12, 2026
8f1dfed
Add slide: discovering skills on skills.sh and installing via npx
mattpodwysocki Mar 12, 2026
fa5686e
Reorder slides for coherent narrative flow
mattpodwysocki Mar 12, 2026
5d745ed
Add plugin install options to Discovering & Installing Skills slide
mattpodwysocki Mar 19, 2026
558f3c7
Replace ASCII table on Skills + MCP slide with card layout
mattpodwysocki Mar 19, 2026
a1552ea
Add plugin install command to Resources slide
mattpodwysocki Mar 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .markdownlintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules
build
**/build/**
.git
presentations/**
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ package-lock.json
.git
CHANGELOG.md

# Slidev presentations (use --- as slide separators, not Markdown HR)
presentations/

# Build artifacts
**/build/
**/.gradle/
Expand Down
3 changes: 3 additions & 0 deletions presentations/mapbox-skills/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
dist/
*.pdf
38 changes: 38 additions & 0 deletions presentations/mapbox-skills/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Mapbox Agent Skills — Presentation

A [Slidev](https://sli.dev) presentation covering Agent Skills and the Mapbox skills library.

## Running

```bash
cd presentations/mapbox-skills
npm install
npm run dev
```

Then open [http://localhost:3030](http://localhost:3030).

## Building

```bash
npm run build # outputs to dist/
npm run export # exports to PDF
```

## Slides

1. Title — Mapbox Agent Skills
2. What Are Agent Skills? (tools vs skills vs prompts)
3. How Skills Work (install commands)
4. Skill Structure (file layout + frontmatter)
5. 18 Skills Across 6 Domains (overview)
6. 18 Skills (cont.) — MCP, migration, security
7. Deep Dive: Web Performance
8. Deep Dive: iOS & Android
9. Deep Dive: MCP Integration
10. Skill Benchmarks (evals)
11. Why Evals Matter (base model failures)
12. Skills + MCP: Better Together
13. Contributing a Skill
14. Resources
15. Q&A
Loading
Loading