TomeVault Design (Tome Adapter)
This is a thin adapter that points at the internal tomevault-design Tome at /home/tomevault/tomevault-design/. The Tome is the source of truth — this file just routes you to it and sets the working directory expectation.
What to do
Read the Tome's orchestrator skill first:
/home/tomevault/tomevault-design/skills/tomevault-design/SKILL.md
Follow its instructions. It will tell you which TomeVault context files to load, which of the four bundled skills to apply, and in what order.
Resolve all paths in the orchestrator relative to the Tome root:
/home/tomevault/tomevault-design/
When the orchestrator says "load components/.impeccable.md", read /home/tomevault/tomevault-design/components/.impeccable.md. When it says "run skills/ui-ux-pro-max/scripts/search.py", run /home/tomevault/tomevault-design/skills/ui-ux-pro-max/scripts/search.py.
The Tome's four bundled skills are at:
/home/tomevault/tomevault-design/skills/design-an-interface/SKILL.md
/home/tomevault/tomevault-design/skills/impeccable/SKILL.md (plus reference/ subfiles)
/home/tomevault/tomevault-design/skills/taste-skill/SKILL.md
/home/tomevault/tomevault-design/skills/ui-ux-pro-max/SKILL.md (plus data/, scripts/, templates/)
TomeVault-specific design decisions live at:
/home/tomevault/tomevault-design/components/
These override the bundled skills when they conflict. Palette, typography, brand, motion, light/dark, deploy discipline, analytics, voice.
When this skill fires
Trigger on any of:
- Frontend / UI / design work on
tomevault-web/
- Page layout, component design, form / button / modal / nav / card / table / chart
- Brand, logo, favicon, color, font, motion
- Visual review or polish requests
Skip when the task is pure backend, pure infra, or pure pipeline scripting with no UI surface.
Why this adapter exists
The internal Tome is a separate git repo at /home/tomevault/tomevault-design/. Symlinking it into .claude/skills/ directly would break the orchestrator's relative paths. This adapter is the cheap, removable indirection: parent harness discovers tomevault-design.md, which redirects to the real Tome.
Once we publish the Tome and decide to vendor it back into the parent (or install via a future Tome runtime), this adapter goes away.
Status
The Tome is currently internal and private (no public remote, no GitHub repo). We're dogfooding it on the next handful of design surfaces. After 3 uses, we'll evaluate whether the four bundled skill choices, the orchestration routing, and the components/ coverage are right.
Don't propose changes to the Tome's components/ files without an actual surface in front of you that needs the change — over-designing the design system pre-dogfood is exactly the failure mode we're trying to avoid.
Source: tomevault-io/companyos — distributed by TomeVault.
Source: tomevault-io/tomes — distributed by TomeVault.
Source: tomevault-io/tomes — distributed by TomeVault.
Source: tomevault-io/skills-registry — distributed by TomeVault.
Source: tomevault-io/skills-registry — distributed by TomeVault.
Source: tomevault-io/skills-registry — distributed by TomeVault.
Source: tomevault-io/skills-registry — distributed by TomeVault.
Source: tomevault-io/skills-registry — distributed by TomeVault.
1---2name: tomevault-design3description: AUTO-INVOKE on any task that touches frontend, UI, design, components, layout, page, styling, brand, logo, color, palette, font, typography, motion, animation, copy, button, modal, navbar, sidebar, card, form, table, chart, hero, landing, or anything that ships pixels to tomevault-web. Triggers on file edits to tomevault-web/src/**/*.tsx, tomevault-web/src/app/**, .css, tailwind config, globals.css, or any UI component file. Loads the internal tomevault-design Tome at /home/tomevault/tomevault-design/, which composes four upstream design skills (design-an-interface, impeccable, taste-skill, ui-ux-pro-max) with TomeVault-specific design context (palette, typography, brand, motion, light-dark, deploy discipline, voice, analytics). REPLACES the archived Anthropic frontend-design skill — do not re-introduce that skill. Skip ONLY for pure backend, pure pipeline, pure infra work with no UI surface. Use when this capability is needed. Use when this capability is needed. Use when this capability is needed. Use when t4---56# TomeVault Design (Tome Adapter)78This is a thin adapter that points at the internal **tomevault-design Tome** at `/home/tomevault/tomevault-design/`. The Tome is the source of truth — this file just routes you to it and sets the working directory expectation.910## What to do11121. **Read the Tome's orchestrator skill first:**1314 ```15 /home/tomevault/tomevault-design/skills/tomevault-design/SKILL.md16 ```1718 Follow its instructions. It will tell you which TomeVault context files to load, which of the four bundled skills to apply, and in what order.19202. **Resolve all paths in the orchestrator relative to the Tome root:**2122 ```23 /home/tomevault/tomevault-design/24 ```2526 When the orchestrator says "load `components/.impeccable.md`", read `/home/tomevault/tomevault-design/components/.impeccable.md`. When it says "run `skills/ui-ux-pro-max/scripts/search.py`", run `/home/tomevault/tomevault-design/skills/ui-ux-pro-max/scripts/search.py`.27283. **The Tome's four bundled skills are at:**2930 - `/home/tomevault/tomevault-design/skills/design-an-interface/SKILL.md`31 - `/home/tomevault/tomevault-design/skills/impeccable/SKILL.md` (plus `reference/` subfiles)32 - `/home/tomevault/tomevault-design/skills/taste-skill/SKILL.md`33 - `/home/tomevault/tomevault-design/skills/ui-ux-pro-max/SKILL.md` (plus `data/`, `scripts/`, `templates/`)34354. **TomeVault-specific design decisions live at:**3637 `/home/tomevault/tomevault-design/components/`3839 These override the bundled skills when they conflict. Palette, typography, brand, motion, light/dark, deploy discipline, analytics, voice.4041## When this skill fires4243Trigger on any of:4445- Frontend / UI / design work on `tomevault-web/`46- Page layout, component design, form / button / modal / nav / card / table / chart47- Brand, logo, favicon, color, font, motion48- Visual review or polish requests4950Skip when the task is pure backend, pure infra, or pure pipeline scripting with no UI surface.5152## Why this adapter exists5354The internal Tome is a separate git repo at `/home/tomevault/tomevault-design/`. Symlinking it into `.claude/skills/` directly would break the orchestrator's relative paths. This adapter is the cheap, removable indirection: parent harness discovers `tomevault-design.md`, which redirects to the real Tome.5556Once we publish the Tome and decide to vendor it back into the parent (or install via a future Tome runtime), this adapter goes away.5758## Status5960The Tome is currently **internal and private** (no public remote, no GitHub repo). We're dogfooding it on the next handful of design surfaces. After 3 uses, we'll evaluate whether the four bundled skill choices, the orchestration routing, and the `components/` coverage are right.6162Don't propose changes to the Tome's `components/` files without an actual surface in front of you that needs the change — over-designing the design system pre-dogfood is exactly the failure mode we're trying to avoid.6364---65> Source: [tomevault-io/companyos](https://github.com/tomevault-io/companyos) — distributed by [TomeVault](https://tomevault.io).66<!-- tomevault:4.0:skill_md:2026-05-14 -->6768---69> Source: [tomevault-io/tomes](https://github.com/tomevault-io/tomes) — distributed by [TomeVault](https://tomevault.io).70<!-- tomevault:4.0:skill_md:2026-05-14 -->7172---73> Source: [tomevault-io/tomes](https://github.com/tomevault-io/tomes) — distributed by [TomeVault](https://tomevault.io).74<!-- tomevault:4.0:skill_md:2026-05-14 -->7576---77> Source: [tomevault-io/skills-registry](https://github.com/tomevault-io/skills-registry) — distributed by [TomeVault](https://tomevault.io).78<!-- tomevault:4.0:skill_md:2026-05-14 -->7980---81> Source: [tomevault-io/skills-registry](https://github.com/tomevault-io/skills-registry) — distributed by [TomeVault](https://tomevault.io).82<!-- tomevault:4.0:skill_md:2026-05-14 -->8384---85> Source: [tomevault-io/skills-registry](https://github.com/tomevault-io/skills-registry) — distributed by [TomeVault](https://tomevault.io).86<!-- tomevault:4.0:skill_md:2026-05-14 -->8788---89> Source: [tomevault-io/skills-registry](https://github.com/tomevault-io/skills-registry) — distributed by [TomeVault](https://tomevault.io).90<!-- tomevault:4.0:skill_md:2026-05-14 -->9192---93> Source: [tomevault-io/skills-registry](https://github.com/tomevault-io/skills-registry) — distributed by [TomeVault](https://tomevault.io).94<!-- tomevault:4.0:skill_md:2026-05-14 -->