Add standalone command cheatsheet page

- Create /cheatsheet with all 17 commands grouped by category
- Clean, scannable layout with command relationships
- Print-friendly styling, dark mode support
- Add server route for cheatsheet page
- Link from Commands section and footer

Addresses user feedback requesting a quick reference doc
for practical command usage.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Paul Bakaus
2026-01-11 15:27:40 -08:00
co-authored by Claude Opus 4.5
parent d56a9fc746
commit 98e673b8f4
4 changed files with 303 additions and 1 deletions
+2
View File
@@ -1,5 +1,6 @@
import { serve, file } from "bun";
import homepage from "../public/index.html";
import cheatsheet from "../public/cheatsheet.html";
import {
getSkills,
getCommands,
@@ -14,6 +15,7 @@ const server = serve({
routes: {
"/": homepage,
"/cheatsheet": cheatsheet,
// Static assets - all public subdirectories
"/assets/*": async (req) => {