v3.1.0: Remove obsolete adapters, simplify for Agent Skills standard #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish to npm | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # For creating GitHub releases | |
| id-token: write # For npm provenance | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Upgrade npm for OIDC Trusted Publishing | |
| run: npm install -g npm@latest | |
| - name: Install dependencies | |
| run: npm ci || npm install | |
| - name: Run tests | |
| run: npm test | |
| - name: Validate skill structure | |
| run: npm run validate | |
| - name: Build .skill file | |
| run: npm run build:skill | |
| - name: Publish to npm | |
| run: npm publish --provenance --access public | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| name: Release ${{ github.ref_name }} | |
| files: prompt-architect.skill | |
| body: | | |
| See [CHANGELOG.md](https://github.com/${{ github.repository }}/blob/main/CHANGELOG.md) for details. | |
| ## Installation | |
| **npm (interactive multi-agent installer):** | |
| ```bash | |
| npm install -g @ckelsoe/prompt-architect | |
| npx @ckelsoe/prompt-architect | |
| ``` | |
| **ChatGPT / Gemini CLI / Agent Skills:** | |
| Download `prompt-architect.skill` below and upload to your tool. | |
| **Claude Code Plugin:** | |
| ``` | |
| /plugin marketplace add ckelsoe/prompt-architect | |
| /plugin install prompt-architect@prompt-architect-marketplace | |
| ``` | |
| draft: false | |
| prerelease: false |