opencode-skills-antigravity 1.0.6 → 1.0.7

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.
@@ -17,6 +17,8 @@ This is the maintainer playbook for cutting a repository release. Historical rel
17
17
  npm run release:preflight
18
18
  ```
19
19
 
20
+ This preflight now runs the deterministic `sync:release-state` flow, refreshes the tracked web assets in `apps/web-app/public`, executes the local test suite, runs the web-app build, and performs `npm pack --dry-run --json` so release tags are validated against the same artifact path used later in CI.
21
+
20
22
  2. Mandatory documentation hardening (repo-wide SKILL.md security scan):
21
23
 
22
24
  ```bash
@@ -71,6 +73,7 @@ npm publish
71
73
  ```
72
74
 
73
75
  Normally this still happens via the existing GitHub release workflow after the GitHub release is published.
76
+ That workflow now reruns `sync:release-state`, refreshes tracked web assets, fails on canonical drift via `git diff --exit-code`, executes tests and docs security checks, builds the web app, and dry-runs the npm package before `npm publish`.
74
77
 
75
78
  ## Rollback Notes
76
79
 
@@ -93,9 +93,16 @@ _Always check the Risk label and review the code._
93
93
 
94
94
  ### Where should I install the skills?
95
95
 
96
- The universal path that works with most tools is `.agent/skills/`.
96
+ It depends on how you install:
97
97
 
98
- **Using npx:** `npx antigravity-awesome-skills` (or `npx github:sickn33/antigravity-awesome-skills` if you get a 404).
98
+ - **Using the installer CLI (`npx antigravity-awesome-skills`)**:
99
+ The default install target is `~/.gemini/antigravity/skills/` for Antigravity's global library.
100
+ - **Using a tool-specific flag**:
101
+ Use `--claude`, `--cursor`, `--gemini`, `--codex`, `--kiro`, or `--antigravity` to target the matching tool path automatically.
102
+ - **Using a manual clone or custom workspace path**:
103
+ `.agent/skills/` is still a good universal workspace convention for Antigravity/custom setups.
104
+
105
+ If you get a 404 from npm, use: `npx github:sickn33/antigravity-awesome-skills`
99
106
 
100
107
  **Using git clone:**
101
108
 
@@ -121,10 +128,10 @@ This repository now includes `.claude-plugin/marketplace.json` and `.claude-plug
121
128
 
122
129
  ### Does this work with Windows?
123
130
 
124
- **Yes.** Use the standard install flow:
131
+ **Yes.** Use the same standard install flow as other platforms:
125
132
 
126
133
  ```bash
127
- git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skills
134
+ npx antigravity-awesome-skills
128
135
  ```
129
136
 
130
137
  If you have an older clone created around the removed symlink workaround, reinstall into a fresh directory or rerun `npx antigravity-awesome-skills`.
@@ -221,8 +228,10 @@ Include:
221
228
  The repository enforces automated quality control. Your skill might be missing:
222
229
 
223
230
  1. A valid `description`.
224
- 2. Usage examples.
225
- Run `npm run validate` locally to check before you push.
231
+ 2. Clear usage guidance or examples.
232
+ 3. The expected PR template checklist in the PR body.
233
+
234
+ Run `npm run validate` locally before you push, and make sure you opened the PR with the default template so the Quality Bar checklist is present.
226
235
 
227
236
  ### My PR failed "security docs" check. What should I do?
228
237
 
@@ -254,6 +263,18 @@ Since v8.0.0, GitHub automatically runs a `skill-review` workflow on any PR that
254
263
 
255
264
  You do not need to close and reopen the PR. Informational or style-only findings do not block merging.
256
265
 
266
+ ### Do community PRs need generated files like `CATALOG.md` or `skills_index.json`?
267
+
268
+ **No.** Community PRs should stay **source-only**.
269
+
270
+ Do **not** include generated registry artifacts like:
271
+
272
+ - `CATALOG.md`
273
+ - `skills_index.json`
274
+ - `data/*.json`
275
+
276
+ Maintainers regenerate and canonicalize those files on `main` after merge. If you touch docs, workflows, or infra, run `npm run validate:references` and `npm test` locally instead.
277
+
257
278
  ### Can I update an "Official" skill?
258
279
 
259
280
  **No.** Official skills (in `skills/official/`) are mirrored from vendors. Open an issue instead.
@@ -12,7 +12,7 @@ Great question! Here's what just happened and what to do next:
12
12
 
13
13
  When you ran `npx antigravity-awesome-skills` or cloned the repository, you:
14
14
 
15
- ✅ **Downloaded 1,304+ skill files** to your computer (default: `~/.gemini/antigravity/skills/`; or `~/.agent/skills/` if you used `--path`)
15
+ ✅ **Downloaded 1,304+ skill files** to your computer (default: `~/.gemini/antigravity/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
16
16
  ✅ **Made them available** to your AI assistant
17
17
  ❌ **Did NOT enable them all automatically** (they're just sitting there, waiting)
18
18
 
@@ -310,7 +310,7 @@ AI: [Creates tests, sets up CI/CD, deploys to Vercel]
310
310
  Yes! Three ways:
311
311
 
312
312
  1. Browse [CATALOG.md](../../CATALOG.md) (searchable list)
313
- 2. Run `ls ~/.agent/skills/` (if installed there)
313
+ 2. Run `ls ~/.gemini/antigravity/skills/` (or your actual install path)
314
314
  3. Ask your AI: "What skills do you have for [topic]?"
315
315
 
316
316
  ### "Do I need to restart my IDE after installing?"
@@ -344,7 +344,7 @@ Use @skill-creator to help me build a custom skill for [your task]
344
344
 
345
345
  ### "What if a skill doesn't work as expected?"
346
346
 
347
- 1. Check the skill's SKILL.md file directly: `~/.agent/skills/[skill-name]/SKILL.md`
347
+ 1. Check the skill's `SKILL.md` file directly in your installed path, for example: `~/.gemini/antigravity/skills/[skill-name]/SKILL.md`
348
348
  2. Read the description to ensure you're using it correctly
349
349
  3. [Open an issue](https://github.com/sickn33/antigravity-awesome-skills/issues) with details
350
350
 
@@ -70,7 +70,7 @@ antigravity-awesome-skills/
70
70
 
71
71
  ```
72
72
  ┌──────────────┐
73
- │ 1. INSTALL │ Copy skills to .agent/skills/
73
+ │ 1. INSTALL │ Run npx installer or clone to your tool path
74
74
  └──────┬───────┘
75
75
 
76
76
 
@@ -178,31 +178,30 @@ antigravity-awesome-skills/
178
178
 
179
179
  ## Installation (Visual Steps)
180
180
 
181
- ### Step 1: Clone the Repository
181
+ ### Step 1: Install the Repository
182
182
  ```
183
183
  ┌─────────────────────────────────────────┐
184
184
  │ Terminal │
185
185
  ├─────────────────────────────────────────┤
186
- │ $ git clone https://github.com/
187
- │ sickn33/antigravity-awesome-skills │
188
- │ .agent/skills │
186
+ │ $ npx antigravity-awesome-skills
189
187
  │ │
190
- │ ✓ Cloning into '.agent/skills'...
191
- ✓ Done!
188
+ │ ✓ Installing to
189
+ ~/.gemini/antigravity/skills/
192
190
  └─────────────────────────────────────────┘
193
191
  ```
194
192
 
193
+ If you want a workspace-style manual install instead, cloning into `.agent/skills/` is still a valid custom path for Antigravity.
194
+
195
195
  ### Step 2: Verify Installation
196
196
  ```
197
197
  ┌─────────────────────────────────────────┐
198
198
  │ File Explorer │
199
199
  ├─────────────────────────────────────────┤
200
- │ 📁 .agent/
201
- └── 📁 skills/
202
- ├── 📁 brainstorming/
203
- ├── 📁 stripe-integration/
204
- ├── 📁 react-best-practices/
205
- │ └── ... (1,304+ total) │
200
+ │ 📁 ~/.gemini/antigravity/skills/
201
+ ├── 📁 brainstorming/
202
+ ├── 📁 stripe-integration/
203
+ ├── 📁 react-best-practices/
204
+ └── ... (1,304+ total)
206
205
  └─────────────────────────────────────────┘
207
206
  ```
208
207
 
@@ -311,7 +310,7 @@ Open skills_index.json → Search for keyword → Find skill path
311
310
 
312
311
 
313
312
  ┌──────────────┐
314
- │ 4. TEST │ Copy to .agent/skills/
313
+ │ 4. TEST │ Copy to your tool's installed skills path
315
314
  └──────┬───────┘ Try: @docker-mastery
316
315
 
317
316
 
@@ -435,7 +434,7 @@ START HERE
435
434
  ├─────────────────────────────────────────────────────────────┤
436
435
  │ │
437
436
  │ 📥 INSTALL │
438
- git clone [repo] .agent/skills │
437
+ npx antigravity-awesome-skills │
439
438
  │ │
440
439
  │ 🎯 USE │
441
440
  │ @skill-name [your request] │
@@ -455,6 +454,7 @@ START HERE
455
454
  │ │
456
455
  │ 🆘 HELP │
457
456
  │ • docs/users/getting-started.md │
457
+ │ • docs/users/faq.md │
458
458
  │ • CONTRIBUTING.md │
459
459
  │ • docs/contributors/skill-anatomy.md │
460
460
  │ • GitHub Issues - Ask questions │
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-skills-antigravity",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "OpenCode CLI plugin that automatically downloads and keeps Antigravity Awesome Skills up to date.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",