codex-skills/productionos-build-productionos/SKILL.md
ProductionOS smart router — single entry point that routes to the right pipeline based on intent. The ONLY command new users need to know.
npx skillsauth add ShaheerKhawaja/ProductionOS productionos-build-productionosInstall 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.
Use this alias when you want the same workflow through a top-level Codex-safe name without the productionos: namespace.
This is the Codex-native workflow wrapper for .claude/commands/build-productionos.md.
Use it when the user wants this exact ProductionOS workflow, not just the umbrella productionos router.
If session context contains FIRST_RUN: true, read templates/ONBOARDING.md and execute the onboarding flow before any other dispatch. This only runs once — the stop hook marks .onboarded after the first session.
Before static intent classification, check if the user's goal matches a composite skill chain. Run the skill router:
ROUTE_RESULT=$(bun run "${CLAUDE_PLUGIN_ROOT}/scripts/skill-router.ts" "USER_GOAL" 2>/dev/null || echo '{}')
Parse the JSON result. If confidence > 0.6 and chain is non-empty, execute the skills in the chain sequentially. Each chain step's output feeds into the next step as context. If confidence <= 0.6 or the router fails, fall through to the existing static intent classification below.
When multiple skills match the same intent, consult SKILL_REGISTRY.md for the canonical source.
intent — What you want to do. Natural language or keyword. Examples: 'audit this project', 'fix the frontend', 'research authentication', 'review my PR', 'ship it', 'debug the login bug' Required.target — Target directory, file, or URL (default: current directory) Optional.PREAMBLE.md.productionos/ artifacts called out in the source command.tools
Implementation planning workflow that turns approved ideas into dependency-aware execution plans.
development
Local RAG and Graph RAG over the SecondBrain wiki vault. Progressive context loading (hot cache -> index -> domain -> entity). Graph traversal via wikilink resolution. Use when agents need cross-project context, when answering questions that span multiple domains, or when building context for planning tasks. Triggers on: "wiki context", "cross-project context", "what do we know about", "check the wiki", "graph context", "/wiki-rag".
devops
UX improvement pipeline — creates user stories from UI guidelines, maps user journeys, identifies friction, dispatches fix agents. The user-experience equivalent of /production-upgrade.
development
Test-driven development workflow that writes failing tests first, implements minimally, and refactors safely.