What problem does it solve? Developing in a Nodefony application fails when agents invent code instead of generating it, miss documentation hidden inside node_modules, or skip verification steps. This Skill orchestrates the full development workflow — understanding existing code, choosing the right facade, generating rather than hand-writing, and proving the change works — while routing specialized tasks to their dedicated skills. ## Core Features & Use Cases - Task Routing: A dispatch table directs specialized work (CRUD resources, services, realtime channels, route guards, schema migrations, browser checks) to the correct dedicated skill before any code is written. - Installed Documentation Search: The bundled docs.mjs script searches the 70+ pages of documentation shipped inside node_modules that ordinary grep cannot see, returning exact file paths and line numbers with meaningful exit codes. - Server and Frontend Pitfall Catalog: Documents measured failure modes — stale dist/ builds, undeclared classes, unbounded queries, unhandled promise rejections, event-loop blocking, XSS sinks, and Vite cache staleness — each with its fix. - Use Case: An agent asked to add a feature first inspects real routes and services with npx nodefony inspect, searches installed docs for the relevant facade, runs the appropriate generator with --dry-run, then proves the change with npm run verify. ## Quick Start Ask the agent to start a development task in this Nodefony application and it will load this skill first, route to any specialized skill needed, and verify the result before declaring it done.