Alright — so the honest answer is: **there are currently no custom skills installed** on your system. Let me explain what they *are* so you can think about whether any would help your CPB workflow. --- ## What Are Custom Skills? Skills are a capability unique to **Antigravity** (the AI assistant you're talking to right now, distinct from Claude Code running in your terminal). They're essentially **packaged instruction sets** — folders containing: | File / Folder | Purpose | |---|---| | **`SKILL.md`** (required) | The main instruction file — tells me *exactly* how to perform a specific complex task, step by step | | `scripts/` (optional) | Helper scripts and utilities that extend what I can do | | `examples/` (optional) | Reference implementations and usage patterns | | `resources/` (optional) | Templates, assets, or other supporting files | When a skill exists and is relevant to what you've asked, I read its `SKILL.md` and follow the instructions precisely. Think of them as **reusable playbooks** I can invoke. --- ## What Could Be Useful for CPB? Here are some skill ideas worth meditating on, given your vault's structure and conventions: 1. **📥 Inbox Triage** — A skill that knows how to process `§ Inbox/` notes: check frontmatter, suggest tags, propose whether the note belongs in `1 Focus/` or `2 Commonplace/`, and move it accordingly. 2. **📝 Note Scaffolding** — A skill that understands your template conventions (`9 meta/-tmp/`, `9 meta/--tmp/`) and can create new notes with proper frontmatter, in the right location, using the right template patterns. 3. **🔗 Link Auditing** — A skill to find broken `[[wiki-links]]`, orphan notes, or notes missing expected frontmatter fields. 4. **📰 Bear Blog Publishing** — A skill that knows your `--bb*` template conventions and can prepare a note for publishing to wm.xyz / wm.foo. 5. **📊 Vault Health / Dataview Queries** — A skill that knows how to write Dataview queries against your vault's frontmatter schema to surface things like stale notes, notes without tags, etc. 6. **🗓️ Periodic Note Review** — A skill that understands your `OTD/` structure (Daily, Weekly, Monthly, Quarterly, Yearly) and can help generate or review periodic notes. --- ## How You'd Create One If any of those ideas resonate, you'd create a skill by placing a folder somewhere discoverable (e.g., in your vault or home directory) with a `SKILL.md` file. The file uses YAML frontmatter + markdown: ```markdown --- name: inbox-triage description: Process and sort notes from § Inbox into the correct vault locations --- ## Steps 1. List all files in `§ Inbox/` 2. For each file, read the frontmatter... 3. ... ``` The key is being **very specific** in the instructions — the more precise the playbook, the more reliably I'll execute it. Want me to draft one of these skills for a workflow you'd find useful? [[Okay okay calm down here we go now]]