What problem does it solve? Setting up a secure CI/CD pipeline to publish an AI toolkit package to AWS CodeArtifact requires careful wiring of GitHub Actions, OIDC authentication, and package validation, 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 Security: Configures AWS authentication through aws-actions/configure-aws-credentials with id-token: write, avoiding long-lived access keys. - 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 credentials in GitHub. ## Quick Start Ask the assistant to generate the CI/CD workflow that validates the ai-toolkit package and publishes it to AWS CodeArtifact using OIDC.