skills/about-page/SKILL.md
--- name: about-page description: Add a standard About page to any web app, what it is, the tech stack, and an FAQ, wired into a footer link with a sticky footer. Built with Spartan + Tailwind (the canonical component layer) and falls back to semantic HTML so it ships reliably. Use whenever building, polishing, or shipping an app, every app should have one. Triggers on "add an about page", "about page", "footer about link", or as a standard step in app build/polish. category: frontend argument-h
npx skillsauth add RonanCodes/ronan-skills skills/about-pageInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Every app gets an About page. It is the page that tells a visitor what the thing is, what it is built on, and answers the obvious questions, and it is a cheap, high-trust signal that the app is real and cared for. Add it as a standard step when building or polishing any app.
layer · tech · one-line note. Be honest about what is live vs in progress.--no-faq.Keep it plain and specific (honour /ro:write-copy: no em-dashes, no AI-tell filler). The About page is the one place you state the honest scope, so say what is real and what is coming. House defaults apply: light mode by default (dark via the app's toggle), and a little cheek in the FAQ answers is welcome (it is the page where personality is safest).
/about (its own component / route file).<div class="min-h-screen flex flex-col">
<header>…</header>
<main class="flex-1">…</main>
<footer>… <a href="/about">About</a></footer>
</div>
The canonical component layer is Spartan (spartan-ng) + Tailwind. Use Spartan's helm components where they fit:
hlm-accordion.hlm-card.hlm-button.If Spartan is not yet wired in the app, use semantic HTML + Tailwind so the page still ships, and leave a note to upgrade the FAQ to hlm-accordion. A native <details>/<summary> styled with Tailwind is a perfectly good accordion with zero dependencies:
<details class="group rounded-xl border px-5 py-3.5">
<summary class="cursor-pointer list-none flex items-center justify-between font-medium">
{{ question }}
<span class="transition-transform group-open:rotate-45">+</span>
</summary>
<p class="mt-3 text-sm">{{ answer }}</p>
</details>
About component + a route in app.routes.ts; the root component becomes the layout shell (header + <router-outlet> + footer). Use routerLink for the footer link.routes/about.tsx route + a shared layout component with the footer; <Link to="/about">.src/pages/about.astro + the shared layout footer.In an Nx (or any non-root-app) workspace, set the Tailwind content glob absolute to the config file, or Tailwind scans the wrong directory and purges every utility (you get a tiny base-only stylesheet and an unstyled page):
const { join } = require('path');
module.exports = { content: [join(__dirname, 'src/**/*.{html,ts}')], ... };
testing
--- name: linear-pipeline description: The Fable orchestrator for a single dispatched Linear ticket. Holds almost no context itself; it receives `--issue <ID> --detached`, decides the stage sequence, and fans out a sub-agent per stage, passing forward only each stage's artifact (never re-derived, never inlined into its own context). Step zero, before any planning or stage routing, is a boundary triage against `canon/security-boundary.md` (#199): a match tags Ronan Connolly and stops the run, no
development
--- name: in-your-face description: Capture a chat-only answer into a durable artifact (markdown + HTML, PDF when cheap) and launch it automatically so the user cannot miss it. Use when user says "in your face", "don't let me lose this", "save that answer", "make that durable", or right after answering a substantive side question (a recipe, comparison, how-to, or generated prompt) that would otherwise die with the context. category: workflow argument-hint: [--no-open] [--vault <short>] [hint of
tools
One-shot headless OpenAI Codex CLI calls for background/admin AI tasks — summaries, classification, extraction, admin glue. The default engine for anything that runs AI constantly in the background (daemon-driven, per-event), because it bills the flat ChatGPT subscription instead of Claude usage or per-token API spend, and it keeps working while Claude is rate-limited. NEVER for coding — coding stays Claude. Use when a skill or daemon needs a cheap always-on AI call, when the user says "use codex", "ask codex", "codex as backup", or when building a background summarizer/classifier into a listener or loop. Reads auth from ~/.codex/auth.json (ChatGPT account, no API key).
research
Turn a warranty rejection, repair quote, or RMA email into a cited decision brief — legal read (NL/EU consumer law), is the part user-serviceable, live part and new-unit prices, repair-vs-DIY-vs-new economics, before-you-send-it checklist, deadlines. Use when the user pastes or screenshots a repair quote, warranty rejection, "not covered" email, onderzoekskosten fee, or asks "should I repair or replace this".