port-nuker 1.0.0 → 1.0.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.
@@ -1,512 +0,0 @@
1
- # Visual Quick Start Guide
2
-
3
- **Learn by seeing!** This guide uses diagrams and visual examples to help you understand skills.
4
-
5
- ---
6
-
7
- ## The Big Picture
8
-
9
- ```
10
- ┌─────────────────────────────────────────────────────────────┐
11
- │ YOU (Developer) │
12
- │ ↓ │
13
- │ "Help me build a payment system" │
14
- │ ↓ │
15
- ├─────────────────────────────────────────────────────────────┤
16
- │ AI ASSISTANT │
17
- │ ↓ │
18
- │ Loads @stripe-integration skill │
19
- │ ↓ │
20
- │ Becomes an expert in Stripe payments │
21
- │ ↓ │
22
- │ Provides specialized help with code examples │
23
- └─────────────────────────────────────────────────────────────┘
24
- ```
25
-
26
- ---
27
-
28
- ## 📦 Repository Structure (Visual)
29
-
30
- ```
31
- antigravity-awesome-skills/
32
-
33
- ├── 📄 README.md ← Overview & skill list
34
- ├── 📄 GETTING_STARTED.md ← Start here! (NEW)
35
- ├── 📄 CONTRIBUTING.md ← How to contribute
36
- ├── 📄 FAQ.md ← Troubleshooting
37
-
38
- ├── 📁 skills/ ← All 250+ skills live here
39
- │ │
40
- │ ├── 📁 brainstorming/
41
- │ │ └── 📄 SKILL.md ← Skill definition
42
- │ │
43
- │ ├── 📁 stripe-integration/
44
- │ │ ├── 📄 SKILL.md
45
- │ │ └── 📁 examples/ ← Optional extras
46
- │ │
47
- │ └── ... (250+ more skills)
48
-
49
- ├── 📁 scripts/ ← Validation & management
50
- │ ├── validate_skills.py ← Quality Bar Enforcer
51
- │ └── generate_index.py ← Registry Generator
52
-
53
- ├── 📁 .github/
54
- │ └── 📄 MAINTENANCE.md ← Maintainers Guide
55
-
56
- └── 📁 docs/ ← Documentation
57
- ├── 📄 BUNDLES.md ← Starter Packs (NEW)
58
- ├── 📄 QUALITY_BAR.md ← Quality Standards
59
- ├── 📄 SKILL_ANATOMY.md ← How skills work
60
- └── 📄 VISUAL_GUIDE.md ← This file!
61
- ```
62
-
63
- ---
64
-
65
- ## How Skills Work (Flow Diagram)
66
-
67
- ```
68
- ┌──────────────┐
69
- │ 1. INSTALL │ Copy skills to .agent/skills/
70
- └──────┬───────┘
71
-
72
-
73
- ┌──────────────┐
74
- │ 2. INVOKE │ Type: @skill-name in AI chat
75
- └──────┬───────┘
76
-
77
-
78
- ┌──────────────┐
79
- │ 3. LOAD │ AI reads SKILL.md file
80
- └──────┬───────┘
81
-
82
-
83
- ┌──────────────┐
84
- │ 4. EXECUTE │ AI follows skill instructions
85
- └──────┬───────┘
86
-
87
-
88
- ┌──────────────┐
89
- │ 5. RESULT │ You get specialized help!
90
- └──────────────┘
91
- ```
92
-
93
- ---
94
-
95
- ## 🎯 Skill Categories (Visual Map)
96
-
97
- ```
98
- ┌─────────────────────────┐
99
- │ 250+ AWESOME SKILLS │
100
- └────────────┬────────────┘
101
-
102
- ┌────────────────────────┼────────────────────────┐
103
- │ │ │
104
- ┌────▼────┐ ┌──────▼──────┐ ┌──────▼──────┐
105
- │ CREATIVE│ │ DEVELOPMENT │ │ SECURITY │
106
- │ (10) │ │ (25) │ │ (50) │
107
- └────┬────┘ └──────┬──────┘ └──────┬──────┘
108
- │ │ │
109
- • UI/UX Design • TDD • Ethical Hacking
110
- • Canvas Art • Debugging • Metasploit
111
- • Themes • React Patterns • Burp Suite
112
- • SQLMap
113
- │ │ │
114
- └────────────────────────┼────────────────────────┘
115
-
116
- ┌────────────────────────┼────────────────────────┐
117
- │ │ │
118
- ┌────▼────┐ ┌──────▼──────┐ ┌──────▼──────┐
119
- │ AI │ │ DOCUMENTS │ │ MARKETING │
120
- │ (30) │ │ (4) │ │ (23) │
121
- └────┬────┘ └──────┬──────┘ └──────┬──────┘
122
- │ │ │
123
- • RAG Systems • DOCX • SEO
124
- • LangGraph • PDF • Copywriting
125
- • Prompt Eng. • PPTX • CRO
126
- • Voice Agents • XLSX • Paid Ads
127
- ```
128
-
129
- ---
130
-
131
- ## Skill File Anatomy (Visual)
132
-
133
- ````
134
- ┌─────────────────────────────────────────────────────────┐
135
- │ SKILL.md │
136
- ├─────────────────────────────────────────────────────────┤
137
- │ │
138
- │ ┌───────────────────────────────────────────────┐ │
139
- │ │ FRONTMATTER (Metadata) │ │
140
- │ │ ───────────────────────────────────────────── │ │
141
- │ │ --- │ │
142
- │ │ name: my-skill │ │
143
- │ │ description: "What this skill does" │ │
144
- │ │ --- │ │
145
- │ └───────────────────────────────────────────────┘ │
146
- │ │
147
- │ ┌───────────────────────────────────────────────┐ │
148
- │ │ CONTENT (Instructions) │ │
149
- │ │ ───────────────────────────────────────────── │ │
150
- │ │ │ │
151
- │ │ # Skill Title │ │
152
- │ │ │ │
153
- │ │ ## Overview │ │
154
- │ │ What this skill does... │ │
155
- │ │ │ │
156
- │ │ ## When to Use │ │
157
- │ │ - Use when... │ │
158
- │ │ │ │
159
- │ │ ## Instructions │ │
160
- │ │ 1. First step... │ │
161
- │ │ 2. Second step... │ │
162
- │ │ │ │
163
- │ │ ## Examples │ │
164
- │ │ ```javascript │ │
165
- │ │ // Example code │ │
166
- │ │ ``` │ │
167
- │ │ │ │
168
- │ └───────────────────────────────────────────────┘ │
169
- │ │
170
- └─────────────────────────────────────────────────────────┘
171
- ````
172
-
173
- ---
174
-
175
- ## Installation (Visual Steps)
176
-
177
- ### Step 1: Clone the Repository
178
-
179
- ```
180
- ┌─────────────────────────────────────────┐
181
- │ Terminal │
182
- ├─────────────────────────────────────────┤
183
- │ $ git clone https://github.com/ │
184
- │ sickn33/antigravity-awesome-skills │
185
- │ .agent/skills │
186
- │ │
187
- │ ✓ Cloning into '.agent/skills'... │
188
- │ ✓ Done! │
189
- └─────────────────────────────────────────┘
190
- ```
191
-
192
- ### Step 2: Verify Installation
193
-
194
- ```
195
- ┌─────────────────────────────────────────┐
196
- │ File Explorer │
197
- ├─────────────────────────────────────────┤
198
- │ 📁 .agent/ │
199
- │ └── 📁 skills/ │
200
- │ ├── 📁 brainstorming/ │
201
- │ ├── 📁 stripe-integration/ │
202
- │ ├── 📁 react-best-practices/ │
203
- │ └── ... (176 more) │
204
- └─────────────────────────────────────────┘
205
- ```
206
-
207
- ### Step 3: Use a Skill
208
-
209
- ```
210
- ┌─────────────────────────────────────────┐
211
- │ AI Assistant Chat │
212
- ├─────────────────────────────────────────┤
213
- │ You: @brainstorming help me design │
214
- │ a todo app │
215
- │ │
216
- │ AI: Great! Let me help you think │
217
- │ through this. First, let's │
218
- │ understand your requirements... │
219
- │ │
220
- │ What's the primary use case? │
221
- │ a) Personal task management │
222
- │ b) Team collaboration │
223
- │ c) Project planning │
224
- └─────────────────────────────────────────┘
225
- ```
226
-
227
- ---
228
-
229
- ## Example: Using a Skill (Step-by-Step)
230
-
231
- ### Scenario: You want to add Stripe payments to your app
232
-
233
- ```
234
- ┌─────────────────────────────────────────────────────────────┐
235
- │ STEP 1: Identify the Need │
236
- ├─────────────────────────────────────────────────────────────┤
237
- │ "I need to add payment processing to my app" │
238
- └─────────────────────────────────────────────────────────────┘
239
-
240
- ┌─────────────────────────────────────────────────────────────┐
241
- │ STEP 2: Find the Right Skill │
242
- ├─────────────────────────────────────────────────────────────┤
243
- │ Search: "payment" or "stripe" │
244
- │ Found: @stripe-integration │
245
- └─────────────────────────────────────────────────────────────┘
246
-
247
- ┌─────────────────────────────────────────────────────────────┐
248
- │ STEP 3: Invoke the Skill │
249
- ├─────────────────────────────────────────────────────────────┤
250
- │ You: @stripe-integration help me add subscription billing │
251
- └─────────────────────────────────────────────────────────────┘
252
-
253
- ┌─────────────────────────────────────────────────────────────┐
254
- │ STEP 4: AI Loads Skill Knowledge │
255
- ├─────────────────────────────────────────────────────────────┤
256
- │ • Stripe API patterns │
257
- │ • Webhook handling │
258
- │ • Subscription management │
259
- │ • Best practices │
260
- └─────────────────────────────────────────────────────────────┘
261
-
262
- ┌─────────────────────────────────────────────────────────────┐
263
- │ STEP 5: Get Expert Help │
264
- ├─────────────────────────────────────────────────────────────┤
265
- │ AI provides: │
266
- │ • Code examples │
267
- │ • Setup instructions │
268
- │ • Security considerations │
269
- │ • Testing strategies │
270
- └─────────────────────────────────────────────────────────────┘
271
- ```
272
-
273
- ---
274
-
275
- ## Finding Skills (Visual Guide)
276
-
277
- ### Method 1: Browse by Category
278
-
279
- ```
280
- README.md → Scroll to "Full Skill Registry" → Find category → Pick skill
281
- ```
282
-
283
- ### Method 2: Search by Keyword
284
-
285
- ```
286
- Terminal → ls skills/ | grep "keyword" → See matching skills
287
- ```
288
-
289
- ### Method 3: Use the Index
290
-
291
- ```
292
- Open skills_index.json → Search for keyword → Find skill path
293
- ```
294
-
295
- ---
296
-
297
- ## Creating Your First Skill (Visual Workflow)
298
-
299
- ```
300
- ┌──────────────┐
301
- │ 1. IDEA │ "I want to share my Docker knowledge"
302
- └──────┬───────┘
303
-
304
-
305
- ┌──────────────┐
306
- │ 2. CREATE │ mkdir skills/docker-mastery
307
- └──────┬───────┘ touch skills/docker-mastery/SKILL.md
308
-
309
-
310
- ┌──────────────┐
311
- │ 3. WRITE │ Add frontmatter + content
312
- └──────┬───────┘ (Use template from CONTRIBUTING.md)
313
-
314
-
315
- ┌──────────────┐
316
- │ 4. TEST │ Copy to .agent/skills/
317
- └──────┬───────┘ Try: @docker-mastery
318
-
319
-
320
- ┌──────────────┐
321
- │ 5. VALIDATE │ python3 scripts/validate_skills.py
322
- └──────┬───────┘
323
-
324
-
325
- ┌──────────────┐
326
- │ 6. SUBMIT │ git commit + push + Pull Request
327
- └──────────────┘
328
- ```
329
-
330
- ---
331
-
332
- ## Skill Complexity Levels
333
-
334
- ```
335
- ┌─────────────────────────────────────────────────────────────┐
336
- │ SKILL COMPLEXITY │
337
- ├─────────────────────────────────────────────────────────────┤
338
- │ │
339
- │ SIMPLE STANDARD COMPLEX │
340
- │ ────── ──────── ─────── │
341
- │ │
342
- │ • 1 file • 1 file • Multiple │
343
- │ • 100-200 words • 300-800 words • 800-2000 │
344
- │ • Basic structure • Full structure • Scripts │
345
- │ • No extras • Examples • Examples │
346
- │ • Best practices • Templates│
347
- │ • Docs │
348
- │ Example: Example: Example: │
349
- │ git-pushing brainstorming loki-mode │
350
- │ │
351
- └─────────────────────────────────────────────────────────────┘
352
- ```
353
-
354
- ---
355
-
356
- ## 🎯 Contribution Impact (Visual)
357
-
358
- ```
359
- Your Contribution
360
-
361
- ├─→ Improves Documentation
362
- │ │
363
- │ └─→ Helps 1000s of developers understand
364
-
365
- ├─→ Creates New Skill
366
- │ │
367
- │ └─→ Enables new capabilities for everyone
368
-
369
- ├─→ Fixes Bug/Typo
370
- │ │
371
- │ └─→ Prevents confusion for future users
372
-
373
- └─→ Adds Example
374
-
375
- └─→ Makes learning easier for beginners
376
- ```
377
-
378
- ---
379
-
380
- ## Learning Path (Visual Roadmap)
381
-
382
- ```
383
- START HERE
384
-
385
-
386
- ┌─────────────────┐
387
- │ Read │
388
- │ GETTING_STARTED │
389
- └────────┬────────┘
390
-
391
-
392
- ┌─────────────────┐
393
- │ Try 2-3 Skills │
394
- │ in AI Assistant │
395
- └────────┬────────┘
396
-
397
-
398
- ┌─────────────────┐
399
- │ Read │
400
- │ SKILL_ANATOMY │
401
- └────────┬────────┘
402
-
403
-
404
- ┌─────────────────┐
405
- │ Study Existing │
406
- │ Skills │
407
- └────────┬────────┘
408
-
409
-
410
- ┌─────────────────┐
411
- │ Create Simple │
412
- │ Skill │
413
- └────────┬────────┘
414
-
415
-
416
- ┌─────────────────┐
417
- │ Read │
418
- │ CONTRIBUTING │
419
- └────────┬────────┘
420
-
421
-
422
- ┌─────────────────┐
423
- │ Submit PR │
424
- └────────┬────────┘
425
-
426
-
427
- CONTRIBUTOR! 🎉
428
- ```
429
-
430
- ---
431
-
432
- ## 💡 Quick Tips (Visual Cheatsheet)
433
-
434
- ```
435
- ┌─────────────────────────────────────────────────────────────┐
436
- │ QUICK REFERENCE │
437
- ├─────────────────────────────────────────────────────────────┤
438
- │ │
439
- │ 📥 INSTALL │
440
- │ git clone [repo] .agent/skills │
441
- │ │
442
- │ 🎯 USE │
443
- │ @skill-name [your request] │
444
- │ │
445
- │ 🔍 FIND │
446
- │ ls skills/ | grep "keyword" │
447
- │ │
448
- │ ✅ VALIDATE │
449
- │ python3 scripts/validate_skills.py │
450
- │ │
451
- │ 📝 CREATE │
452
- │ 1. mkdir skills/my-skill │
453
- │ 2. Create SKILL.md with frontmatter │
454
- │ 3. Add content │
455
- │ 4. Test & validate │
456
- │ 5. Submit PR │
457
- │ │
458
- │ 🆘 HELP │
459
- │ • GETTING_STARTED.md - Basics │
460
- │ • CONTRIBUTING.md - How to contribute │
461
- │ • SKILL_ANATOMY.md - Deep dive │
462
- │ • GitHub Issues - Ask questions │
463
- │ │
464
- └─────────────────────────────────────────────────────────────┘
465
- ```
466
-
467
- ---
468
-
469
- ## Success Stories (Visual Timeline)
470
-
471
- ```
472
- Day 1: Install skills
473
-
474
- └─→ "Wow, @brainstorming helped me design my app!"
475
-
476
- Day 3: Use 5 different skills
477
-
478
- └─→ "These skills save me so much time!"
479
-
480
- Week 1: Create first skill
481
-
482
- └─→ "I shared my expertise as a skill!"
483
-
484
- Week 2: Skill gets merged
485
-
486
- └─→ "My skill is helping others! 🎉"
487
-
488
- Month 1: Regular contributor
489
-
490
- └─→ "I've contributed 5 skills and improved docs!"
491
- ```
492
-
493
- ---
494
-
495
- ## Next Steps
496
-
497
- 1. ✅ **Understand** the visual structure
498
- 2. ✅ **Install** skills in your AI tool
499
- 3. ✅ **Try** 2-3 skills from different categories
500
- 4. ✅ **Read** CONTRIBUTING.md
501
- 5. ✅ **Create** your first skill
502
- 6. ✅ **Share** with the community
503
-
504
- ---
505
-
506
- **Visual learner?** This guide should help! Still have questions? Check out:
507
-
508
- - [GETTING_STARTED.md](../GETTING_STARTED.md) - Text-based intro
509
- - [SKILL_ANATOMY.md](SKILL_ANATOMY.md) - Detailed breakdown
510
- - [CONTRIBUTING.md](../CONTRIBUTING.md) - How to contribute
511
-
512
- **Ready to contribute?** You've got this! 💪