@codewithdan/zingit 0.14.0 → 0.16.0

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.
Files changed (2) hide show
  1. package/AGENTS.md +13 -1
  2. package/package.json +2 -1
package/AGENTS.md CHANGED
@@ -299,4 +299,16 @@ Automated release and deployment on commits starting with "release:":
299
299
  1. Runs `npm run release` - versions, builds, and publishes to npm
300
300
  2. Runs `npm run deploy` - deploys demo site to GitHub Pages
301
301
 
302
- Requires `NPM_TOKEN` secret in repository settings.
302
+ **Setup Requirements:**
303
+ - `NPM_TOKEN` secret in repository settings (for npm publishing)
304
+ - `GITHUB_TOKEN` is automatically provided by GitHub Actions (for gh-pages deployment)
305
+
306
+ **Authentication:**
307
+ The workflow configures git with an authenticated remote URL before deploying:
308
+ ```bash
309
+ git remote set-url origin https://x-access-token:$GITHUB_TOKEN@github.com/${{ github.repository }}.git
310
+ ```
311
+
312
+ This allows `gh-pages` to push to the repository without prompting for credentials.
313
+
314
+ **Workflow File:** `.github/workflows/release.yml`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codewithdan/zingit",
3
- "version": "0.14.0",
3
+ "version": "0.16.0",
4
4
  "description": "AI-powered UI annotation tool - point, annotate, and let AI fix it",
5
5
  "type": "module",
6
6
  "engines": {
@@ -40,6 +40,7 @@
40
40
  "copilot",
41
41
  "codex",
42
42
  "development",
43
+ "prompts",
43
44
  "tool"
44
45
  ],
45
46
  "author": "Dan Wahlin",