What problem does it solve? Setting up a secure CI/CD pipeline to publish an AI toolkit package to AWS CodeArtifact requires careful handling of OIDC authentication, workflow permissions, and validation steps, which is error-prone when done manually. ## Core Features & Use Cases - Workflow Generation: Creates .github/workflows/ci.yml with a validation job and a publish job gated to the default branch. - OIDC-Based AWS Authentication: Configures aws-actions/configure-aws-credentials@v4 with id-token: write so no long-lived AWS access keys are needed. - Package Validation: Checks pack.yaml fields, verifies every skills/*/SKILL.md has matching name and description frontmatter, and runs npm pack --dry-run. - Use Case: A team maintaining an AI toolkit monorepo needs every merge to main to automatically validate skill metadata and publish the package to their CodeArtifact repository without storing AWS secrets in GitHub. ## Quick Start Ask the assistant to run the setup-cicd skill to generate the GitHub Actions workflow that validates and publishes the ai-toolkit package to AWS CodeArtifact using OIDC.