skills/way-of-working/SKILL.md
Ronan's default working norms — commit cadence, checkpointing, asking for decisions, definition-of-done. Reference skill that should inform every coding session. Load at session start alongside coding-principles.
npx skillsauth add RonanCodes/ronan-skills way-of-workingInstall 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.
How Ronan wants day-to-day coding to feel. Short, blunt, non-negotiable unless he says otherwise mid-session.
Treat commits as save points, not milestones.
Use /ro:commit — it handles the emoji prefix, the timestamp rules, and the Co-Authored-By exclusion.
Before starting a multi-step task, spell out the checkpoints. After each one:
If a task fans out unexpectedly, break it into a second commit rather than bundling unrelated changes.
If a decision comes up that isn't obvious from context, use AskUserQuestion, not a question typed inline in chat. This is enforced by the global CLAUDE.md. Keep doing it — Ronan prefers the structured UI.
A task isn't done until:
tsc --noEmit clean on TS projects)"It probably works" is not done.
When you discover something unrelated that also wants fixing:
Scope creep is how clean commits turn into 2,000-line diffs nobody can review.
--no-verify on commits unless the user explicitly says sogit reset --hard or force-push without askingThe whole point of the cadence above is that recovery is always cheap. Respect that.
Claude Code is primary. Codex (GPT-5.5-backed desktop app) earns a slot for parallel async refactors and high-volume cheap-token bulk jobs (one cited 10x cost win on a mechanical refactor). Reach for it when the work is mechanical, fan-out parallel, and Claude Code's per-task latency dominates. Default everything else to Claude Code; the .claude/skills/ library, hooks, and ralph loop are a Claude-Code-native moat that does not port.
/ro:coding-principles — the what: simplicity, SOLID, DRY, testing normsBoth should be in mental scope for every session.
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".