skills/in-your-face/SKILL.md
--- 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
npx skillsauth add RonanCodes/ronan-skills skills/in-your-faceInstall 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.
Side questions get answered inline and then the session moves on. When the context clears, the answer is gone. This skill captures that answer as a standalone markdown file, renders it to HTML (plus PDF when it is free), and launches it on screen automatically. The launch is the point: an artifact nobody sees is as dead as the chat scroll it came from.
Do NOT fire for throwaway answers (one-liners, yes/no, ephemeral state like "what branch am I on") or for content that already lives in a durable home (a committed doc, an open PR, a wiki page).
/ro:in-your-face # capture the most recent side answer
/ro:in-your-face the docker networking explanation # capture a specific earlier answer
/ro:in-your-face --vault ai-research # force wiki routing to a vault
/ro:in-your-face --no-open # write everything but skip the launch
Write the answer as clean standalone markdown. Standalone means a reader with zero chat context understands it:
YYYY-MM-DD near the top) so a stale copy is self-evidently stale./ro:write-copy rules: no em-dashes or en-dashes, no AI-tell vocabulary, no rhetorical-reversal filler.In order:
./.ronan-skills-llm-wiki.local.json exists (or /ro:wiki resolves a vault for this project), ingest the answer there following /ro:wiki conventions, and still write the local copy below. The vault is the durable memory; the local copy is what gets launched.~/Desktop/in-your-face/<YYYY-MM-DD>-<slug>.md. Desktop on purpose: a human sees it without being told where to look. Create the directory if missing (mkdir -p).bash <skill-dir>/scripts/render-launch.sh ~/Desktop/in-your-face/2026-07-04-example.md
The script:
<pre> page. The launch never fails for lack of tooling.opens the HTML automatically. That auto-launch is the skill's reason to exist; only suppress it with --no-open (tests, SSH sessions).Print the three paths the script echoes (md / html / pdf-or-skipped) and, when wiki-routed, the vault page path too:
md: /Users/ronan/Desktop/in-your-face/2026-07-04-docker-networking.md
html: /Users/ronan/Desktop/in-your-face/2026-07-04-docker-networking.html
pdf: skipped (no pdf engine)
wiki: ~/Dev/ai-projects/llm-wiki/vaults/llm-wiki-ai-research/wiki/sources/docker-networking.md
2026-07-04: a session produced a ChatGPT deep-research prompt for nutmeg model selection, plus the session answers that shaped it. It was hand-saved to ~/Desktop/nutmeg-model-deep-research-prompt.md, rendered with pandoc to the sibling .html, and launched with open. This skill mechanises exactly that flow: same Desktop landing, same pandoc render, same auto-launch, minus the hand-rolling.
/ro:wiki handles the vault ingest when the project is wiki-mapped; this skill defers to its conventions rather than re-implementing them./ro:handoff overlaps on "session answers worth keeping", but serves resumable state. These artifacts are terminal (read them, done), so the pickup pattern (registered dir + printed pickup command) deliberately does NOT apply here.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
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".
development
Interact with the BoardGameGeek XML API2. Search games, fetch details with ratings and weight, pull a user's collection or wishlist, download box art from the CDN. Covers the 2026 auth reality (registered application token, Bearer header, 401 without one, approval takes a week or more) plus a browser fallback via the GEEK.geekitemPreload JSON while approval is pending. Reads BGG_XML_API_TOKEN from ~/.claude/.env. Triggers on "boardgamegeek", "bgg", "fetch my BGG collection", "look up a board game", "bgg search", "download board game images".