diff --git a/.claude/skills/presentation/vibe-to-agentic-framework/SKILL.md b/.claude/skills/presentation/vibe-to-agentic-framework/SKILL.md
index 728daba..36fa19b 100644
--- a/.claude/skills/presentation/vibe-to-agentic-framework/SKILL.md
+++ b/.claude/skills/presentation/vibe-to-agentic-framework/SKILL.md
@@ -23,9 +23,12 @@ Every technique is demonstrated on a realistic full-stack project:
todoapp/
├── backend/ # FastAPI (Python)
│ ├── main.py # App entry + CORS
-│ ├── models.py # SQLAlchemy models
│ ├── routes/
│ │ └── todos.py # CRUD endpoints
+│ │ └── users.py # Auth endpoints
+│ ├── models/
+│ │ ├── todo.py # SQLAlchemy Todo model
+│ │ └── user.py # SQLAlchemy User model
│ └── tests/
│ └── test_todos.py
├── frontend/ # Next.js (TypeScript)
@@ -33,7 +36,10 @@ todoapp/
│ │ ├── TodoList.tsx
│ │ └── Sidebar.tsx
│ ├── pages/
-│ └── styles/ # Tailwind tokens
+│ │ ├── index.tsx
+│ │ └── todos.tsx
+│ └── lib/
+│ └── api.ts # API client
└── CLAUDE.md
```
diff --git a/presentation/index.html b/presentation/index.html
index f1a374c..740a7ca 100644
--- a/presentation/index.html
+++ b/presentation/index.html
@@ -763,8 +763,9 @@ When creating or modifying frontend components:
📝descriptionWhen to invoke — helps Claude auto-discover the skill
🤖modelOverride which model runs the skill
🔧allowed-toolsRestrict which tools the skill can use
+
🔁context: forkRun the skill in an isolated subagent context for complex workflows
-