ai-first-cli 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,8 @@ on:
14
14
  jobs:
15
15
  publish:
16
16
  runs-on: ubuntu-latest
17
-
17
+ permissions:
18
+ contents: write
18
19
  steps:
19
20
  - name: Checkout code
20
21
  uses: actions/checkout@v4
@@ -45,11 +46,10 @@ jobs:
45
46
 
46
47
  - name: Create GitHub Release
47
48
  if: success()
48
- uses: actions/create-release@v1
49
+ uses: softprops/action-gh-release@v2
50
+ with:
51
+ tag_name: v${{ github.event.inputs.version || 'patch' }}
52
+ name: Release v${{ github.event.inputs.version || 'patch' }}
53
+ generate_release_notes: true
49
54
  env:
50
55
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
- with:
52
- tag_name: v${{ github.event.inputs.version || 'latest' }}
53
- release_name: Release v${{ github.event.inputs.version || 'latest' }}
54
- draft: false
55
- prerelease: false
@@ -2,7 +2,7 @@
2
2
  "nodes": [],
3
3
  "edges": [],
4
4
  "metadata": {
5
- "generated": "2026-03-19T19:47:49.824Z",
5
+ "generated": "2026-03-19T19:58:35.497Z",
6
6
  "sources": [],
7
7
  "nodeCount": 0,
8
8
  "edgeCount": 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-first-cli",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "CLI tool that prepares any repository to be used effectively by AI coding agents",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",