opencode-skills-antigravity 1.0.56 → 1.0.58
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.
|
@@ -145,19 +145,19 @@ More instructions...
|
|
|
145
145
|
**This is the heart of your skill** - clear, actionable steps
|
|
146
146
|
|
|
147
147
|
#### 5. Examples
|
|
148
|
-
|
|
148
|
+
````markdown
|
|
149
149
|
## Examples
|
|
150
150
|
|
|
151
151
|
### Example 1: [Use Case]
|
|
152
|
-
|
|
152
|
+
```javascript
|
|
153
153
|
// Example code
|
|
154
|
-
|
|
154
|
+
```
|
|
155
155
|
|
|
156
156
|
### Example 2: [Another Use Case]
|
|
157
|
-
|
|
157
|
+
```javascript
|
|
158
158
|
// More code
|
|
159
|
-
\`\`\`
|
|
160
159
|
```
|
|
160
|
+
````
|
|
161
161
|
|
|
162
162
|
**Why examples matter:** They show the AI exactly what good output looks like
|
|
163
163
|
|
|
@@ -264,12 +264,12 @@ scripts/
|
|
|
264
264
|
```
|
|
265
265
|
|
|
266
266
|
**Reference them in SKILL.md:**
|
|
267
|
-
|
|
267
|
+
````markdown
|
|
268
268
|
Run the setup script:
|
|
269
|
-
|
|
269
|
+
```bash
|
|
270
270
|
bash scripts/setup.sh
|
|
271
|
-
\`\`\`
|
|
272
271
|
```
|
|
272
|
+
````
|
|
273
273
|
|
|
274
274
|
### Examples Directory
|
|
275
275
|
|
|
@@ -296,12 +296,12 @@ templates/
|
|
|
296
296
|
```
|
|
297
297
|
|
|
298
298
|
**Reference in SKILL.md:**
|
|
299
|
-
|
|
299
|
+
````markdown
|
|
300
300
|
Use this template as a starting point:
|
|
301
|
-
|
|
301
|
+
```typescript
|
|
302
302
|
{{#include templates/component.tsx}}
|
|
303
|
-
\`\`\`
|
|
304
303
|
```
|
|
304
|
+
````
|
|
305
305
|
|
|
306
306
|
### References Directory
|
|
307
307
|
|
|
@@ -344,11 +344,11 @@ references/
|
|
|
344
344
|
|
|
345
345
|
#### Code Blocks
|
|
346
346
|
Always specify the language:
|
|
347
|
-
|
|
348
|
-
|
|
347
|
+
````markdown
|
|
348
|
+
```javascript
|
|
349
349
|
const example = "code";
|
|
350
|
-
\`\`\`
|
|
351
350
|
```
|
|
351
|
+
````
|
|
352
352
|
|
|
353
353
|
#### Lists
|
|
354
354
|
Use consistent formatting:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: github-issue-creator
|
|
3
|
-
description: "
|
|
3
|
+
description: "Turn error logs, screenshots, voice notes, and rough bug reports into crisp, developer-ready GitHub issues with repro steps, impact, and evidence."
|
|
4
4
|
risk: unknown
|
|
5
5
|
source: community
|
|
6
6
|
date_added: "2026-02-27"
|
|
@@ -140,4 +140,4 @@ Was working yesterday - possible permission/config change or service regression
|
|
|
140
140
|
```
|
|
141
141
|
|
|
142
142
|
## When to Use
|
|
143
|
-
|
|
143
|
+
Use this skill when you have unstructured bug input such as pasted errors, support notes, screenshots, or voice dictation and need to turn it into a clean GitHub issue with a summary, reproduction steps, expected vs actual behavior, impact, and attachment references.
|
package/package.json
CHANGED