UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

53 lines (44 loc) 1.21 kB
# AIWG SDLC Framework — CI Workflow (GitHub Actions) # # Deployed by: aiwg use sdlc --ci-hooks-enabled # Source: agentic/code/frameworks/sdlc-complete/ci/github/workflows/aiwg-sdlc.yml # # Review this file before committing. It runs on your repository's CI infrastructure. # # What this does: # - Validates AIWG framework deployments are up to date # - Runs aiwg doctor on pull requests and pushes to main # # Customize the triggers and steps below for your project's needs. name: AIWG SDLC on: push: branches: [main, master] paths: - '.claude/**' - '.aiwg/**' - 'package.json' pull_request: branches: [main, master] paths: - '.claude/**' - '.aiwg/**' - 'package.json' workflow_dispatch: jobs: aiwg-health: name: AIWG Framework Health runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '20' - name: Install AIWG run: npm install -g aiwg - name: Check AIWG health run: aiwg doctor - name: Verify framework deployment run: aiwg sync --dry-run