← ClaudeAtlas

autonomous-cilisted

Ensures Claude verifies both local tests AND remote CI before claiming completion. Use BEFORE any completion claims, commits, or pull requests. Mandatory verification with evidence.
aiskillstore/marketplace · ★ 329 · DevOps & Infrastructure · score 79
Install: claude install-skill aiskillstore/marketplace
# Autonomous CI Verification ## Overview **Never claim success without CI verification.** This skill ensures Claude automatically verifies both local tests AND remote CI before declaring work complete. **Core Principle:** Evidence before claims. Always. ## When to Use This Skill This skill is **MANDATORY** before: - ANY completion claims - ANY expressions of satisfaction ("Done!", "Fixed!", "Working now!") - Committing code - Creating pull requests - Moving to next task - Responding "should work" or similar phrases ## The Verification Protocol ```text BEFORE claiming any completion: 1. RUN LOCAL VERIFICATION └─> Execute project-specific test command └─> Check exit code └─> If fails: Fix and repeat 2. COMMIT AND PUSH └─> Only if local tests pass └─> Push to remote repository 3. MONITOR CI (BLOCKING) └─> Find workflow run for commit └─> WAIT for completion (do not proceed) └─> Check all workflows in .github/workflows/ 4. IF CI FAILS └─> Download failure logs └─> Analyze root cause └─> Fix the issue └─> REPEAT from step 1 5. ONLY WHEN ALL CI PASSES └─> Report success with evidence ``` ## Available Tools This skill uses scripts from the plugin directory: ### Local Verification The plugin provides a generic test runner that auto-detects your project type: ```bash # For .NET projects dotnet test --configuration Release # For Node.js projects npm test # For Python projects pytest # For Go projects go test ./... ``` Claude