What problem does it solve? Setting up CI by hand often means guessing the stack, duplicating existing checks, or creating workflows that always pass. This Skill inspects the real project setup and creates one shared Verify command that runs identically locally and on GitHub pull requests. ## Core Features & Use Cases - Stack Detection: Reads manifests, lockfiles, runtime version files, and existing workflows to identify the real package manager, runtime, and default branch instead of assuming npm or Node.js. - Verify Command Definition: Combines only the typecheck, test, and build commands that actually exist into a single documented Verify command in AGENTS.md, never inventing placeholder tests. - Safe Workflow Creation: Creates .github/workflows/verify.yml only when the path is free, preserves existing CI, runs Verify locally as proof, and never pushes or changes remote rulesets. - Use Case: After onboarding a new project, ask the agent to set up CI; it detects a pnpm TypeScript project, adds a verify script, writes a minimal GitHub Actions workflow, and confirms it passes locally. ## Quick Start Ask the agent to set up automatic GitHub checks for this project using the ci skill.