vibes-plug 1.0.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 (141) hide show
  1. package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  2. package/BLUEPRINT.md +125 -0
  3. package/CHANGELOG.md +195 -0
  4. package/CONTRIBUTING.md +199 -0
  5. package/LICENSE +21 -0
  6. package/README.md +263 -0
  7. package/SECURITY.md +21 -0
  8. package/banner.png +0 -0
  9. package/package.json +25 -0
  10. package/plugin.json +8 -0
  11. package/scripts/update_skills.js +75 -0
  12. package/skills/ai-llm-integration-expert/SKILL.md +162 -0
  13. package/skills/api-design-expert/SKILL.md +310 -0
  14. package/skills/app-analyzer-optimizer/SKILL.md +189 -0
  15. package/skills/asisten_ramah/SKILL.md +41 -0
  16. package/skills/authentication-identity-expert/SKILL.md +45 -0
  17. package/skills/auto-doc-updater/SKILL.md +204 -0
  18. package/skills/bootstrap-to-modern/SKILL.md +87 -0
  19. package/skills/brainstorming/SKILL.md +353 -0
  20. package/skills/bun-runtime-expert/SKILL.md +211 -0
  21. package/skills/ci-cd-devops-architect/SKILL.md +45 -0
  22. package/skills/cloud-hosting-expert/SKILL.md +244 -0
  23. package/skills/coderabbit/SKILL.md +192 -0
  24. package/skills/data-telemetry-expert/SKILL.md +213 -0
  25. package/skills/database-orm-expert/SKILL.md +294 -0
  26. package/skills/design-system-architect/SKILL.md +243 -0
  27. package/skills/e2e-testing-expert/SKILL.md +315 -0
  28. package/skills/event-driven-architect/SKILL.md +81 -0
  29. package/skills/firebase-security-expert/SKILL.md +195 -0
  30. package/skills/fullstack-expert/SKILL.md +202 -0
  31. package/skills/fullstack-expert/references/api_design_guide.md +466 -0
  32. package/skills/fullstack-expert/references/devops_infrastructure.md +477 -0
  33. package/skills/fullstack-expert/references/multi_language_backend.md +528 -0
  34. package/skills/fullstack-expert/references/system_design_patterns.md +358 -0
  35. package/skills/fullstack-expert/scripts/api_contract_validator.py +253 -0
  36. package/skills/fullstack-expert/scripts/architecture_analyzer.py +326 -0
  37. package/skills/gemini-agent-booster/SKILL.md +135 -0
  38. package/skills/global-a11y-i18n-expert/SKILL.md +81 -0
  39. package/skills/go-programming-expert/SKILL.md +295 -0
  40. package/skills/hig/SKILL.md +188 -0
  41. package/skills/js-backend-expert/SKILL.md +192 -0
  42. package/skills/mcp-server-architect/SKILL.md +194 -0
  43. package/skills/mobile-expo-expert/SKILL.md +186 -0
  44. package/skills/monday-design-aesthetic/SKILL.md +67 -0
  45. package/skills/monorepo-architect/SKILL.md +227 -0
  46. package/skills/mpa-orchestrator/SKILL.md +101 -0
  47. package/skills/multi-agent-orchestration/SKILL.md +234 -0
  48. package/skills/multiple-entry-points/SKILL.md +55 -0
  49. package/skills/mvc-expert/SKILL.md +231 -0
  50. package/skills/payment-gateway-expert/SKILL.md +45 -0
  51. package/skills/performance-web-vitals/SKILL.md +332 -0
  52. package/skills/prd-architect/SKILL.md +191 -0
  53. package/skills/production-ready-hardener/SKILL.md +469 -0
  54. package/skills/production-ready-hardener/references/performance_optimization.md +441 -0
  55. package/skills/production-ready-hardener/references/production_checklist.md +161 -0
  56. package/skills/production-ready-hardener/references/security_hardening_guide.md +379 -0
  57. package/skills/production-ready-hardener/scripts/production_readiness_scanner.py +875 -0
  58. package/skills/python-programming-expert/SKILL.md +271 -0
  59. package/skills/realtime-collaboration-expert/SKILL.md +45 -0
  60. package/skills/rust-programming-expert/SKILL.md +235 -0
  61. package/skills/saas-billing/SKILL.md +377 -0
  62. package/skills/saas-multi-tenant/SKILL.md +237 -0
  63. package/skills/saas-mvp-launcher/SKILL.md +231 -0
  64. package/skills/saas-transformer/SKILL.md +446 -0
  65. package/skills/saas-transformer/references/billing_integration_guide.md +401 -0
  66. package/skills/saas-transformer/references/feature_gating_patterns.md +137 -0
  67. package/skills/saas-transformer/references/saas_transformation_checklist.md +121 -0
  68. package/skills/saas-transformer/scripts/saas_transformation_scanner.py +254 -0
  69. package/skills/scalability-clean-code/SKILL.md +229 -0
  70. package/skills/secure-fuzz-testing/SKILL.md +201 -0
  71. package/skills/senior-frontend/SKILL.md +161 -0
  72. package/skills/senior-frontend/references/frontend_best_practices.md +806 -0
  73. package/skills/senior-frontend/references/nextjs_optimization_guide.md +724 -0
  74. package/skills/senior-frontend/references/react_patterns.md +746 -0
  75. package/skills/senior-frontend/scripts/bundle_analyzer.py +407 -0
  76. package/skills/senior-frontend/scripts/component_generator.py +329 -0
  77. package/skills/senior-frontend/scripts/frontend_scaffolder.py +1005 -0
  78. package/skills/senior-fullstack/SKILL.md +167 -0
  79. package/skills/senior-fullstack/references/architecture_patterns.md +160 -0
  80. package/skills/senior-fullstack/references/development_workflows.md +222 -0
  81. package/skills/senior-fullstack/references/tech_stack_guide.md +190 -0
  82. package/skills/senior-fullstack/scripts/code_quality_analyzer.py +114 -0
  83. package/skills/senior-fullstack/scripts/fullstack_scaffolder.py +114 -0
  84. package/skills/senior-fullstack/scripts/project_scaffolder.py +114 -0
  85. package/skills/seo/SKILL.md +225 -0
  86. package/skills/seo/references/cwv-thresholds.md +108 -0
  87. package/skills/seo/references/eeat-framework.md +214 -0
  88. package/skills/seo/references/quality-gates.md +155 -0
  89. package/skills/seo/references/schema-types.md +118 -0
  90. package/skills/seo-aeo-landing-page-writer/SKILL.md +97 -0
  91. package/skills/seo-geo/SKILL.md +188 -0
  92. package/skills/session-handoff-resume/SKILL.md +158 -0
  93. package/skills/skill_baru/SKILL.md +147 -0
  94. package/skills/spa-orchestrator/SKILL.md +288 -0
  95. package/skills/state-management-expert/SKILL.md +272 -0
  96. package/skills/supabase-migration/SKILL.md +45 -0
  97. package/skills/supabase-security-expert/SKILL.md +243 -0
  98. package/skills/tailwind-expert/SKILL.md +188 -0
  99. package/skills/tanstack-query-expert/SKILL.md +199 -0
  100. package/skills/tauri-expert/SKILL.md +97 -0
  101. package/skills/token-saver/SKILL.md +111 -0
  102. package/skills/typescript-expert/SKILL.md +279 -0
  103. package/skills/ui-components-expert/SKILL.md +63 -0
  104. package/skills/ui-ux-pro-max/SKILL.md +201 -0
  105. package/skills/ui-ux-pro-max/data/charts.csv +26 -0
  106. package/skills/ui-ux-pro-max/data/colors.csv +97 -0
  107. package/skills/ui-ux-pro-max/data/icons.csv +101 -0
  108. package/skills/ui-ux-pro-max/data/landing.csv +31 -0
  109. package/skills/ui-ux-pro-max/data/products.csv +97 -0
  110. package/skills/ui-ux-pro-max/data/prompts.csv +24 -0
  111. package/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  112. package/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  113. package/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  114. package/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  115. package/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  116. package/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  117. package/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  118. package/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  119. package/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  120. package/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  121. package/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  122. package/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  123. package/skills/ui-ux-pro-max/data/styles.csv +59 -0
  124. package/skills/ui-ux-pro-max/data/typography.csv +58 -0
  125. package/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  126. package/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  127. package/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  128. package/skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-310.pyc +0 -0
  129. package/skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc +0 -0
  130. package/skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-310.pyc +0 -0
  131. package/skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc +0 -0
  132. package/skills/ui-ux-pro-max/scripts/core.py +257 -0
  133. package/skills/ui-ux-pro-max/scripts/design_system.py +493 -0
  134. package/skills/ui-ux-pro-max/scripts/search.py +81 -0
  135. package/skills/ui_ux_expert/SKILL.md +114 -0
  136. package/skills/vibe-code-gardener/SKILL.md +173 -0
  137. package/skills/web-scraper/SKILL.md +205 -0
  138. package/skills/web-scraper/references/data-transforms.md +397 -0
  139. package/skills/web-scraper/references/extraction-patterns.md +475 -0
  140. package/skills/web-scraper/references/output-templates.md +481 -0
  141. package/skills/zero-to-prod-orchestrator/SKILL.md +180 -0
@@ -0,0 +1,481 @@
1
+ # Output Templates Reference
2
+
3
+ Complete formatting templates for all supported output formats.
4
+ Every output must be wrapped in a delivery envelope with metadata.
5
+
6
+ ---
7
+
8
+ ## Delivery Envelope (Required)
9
+
10
+ Every extraction result MUST include this metadata wrapper,
11
+ regardless of output format:
12
+
13
+ ```markdown
14
+ ## Extraction Results
15
+
16
+ **Source:** [Page Title](https://example.com/page)
17
+ **Date:** 2026-02-25 14:30 UTC
18
+ **Items:** 47 records
19
+ **Confidence:** HIGH
20
+ **Format:** Markdown Table
21
+
22
+ ---
23
+
24
+ [DATA GOES HERE]
25
+
26
+ ---
27
+
28
+ **Notes:**
29
+ - Any gaps, anomalies, or observations
30
+ - Filters or sorts applied
31
+ - Pages scraped (if paginated)
32
+ ```
33
+
34
+ ---
35
+
36
+ ## Markdown Table Format
37
+
38
+ ### Standard Table
39
+
40
+ ```markdown
41
+ | Name | Price | Rating | Availability |
42
+ |:---------------|---------:|:------:|:-------------|
43
+ | Product Alpha | $29.99 | 4.5 | In Stock |
44
+ | Product Beta | $49.99 | 4.2 | In Stock |
45
+ | Product Gamma | $119.00 | 4.8 | Pre-order |
46
+ | Product Delta | $15.50 | 3.9 | Out of Stock |
47
+ ```
48
+
49
+ ### Alignment Rules
50
+
51
+ | Data Type | Alignment | Markdown Syntax |
52
+ |:-------------|:----------|:----------------|
53
+ | Text | Left | `:---` |
54
+ | Numbers | Right | `---:` |
55
+ | Centered | Center | `:---:` |
56
+ | Mixed/Status | Left | `:---` |
57
+
58
+ ### Table with Summary Row
59
+
60
+ ```markdown
61
+ | Product | Units Sold | Revenue |
62
+ |:---------------|----------:|-----------:|
63
+ | Widget A | 1,234 | $12,340 |
64
+ | Widget B | 567 | $8,505 |
65
+ | Widget C | 2,890 | $57,800 |
66
+ | **Total** | **4,691** | **$78,645**|
67
+ ```
68
+
69
+ ### Wide Data (Split Tables)
70
+
71
+ When data has more than 10 columns, split into logical groups:
72
+
73
+ ```markdown
74
+ ### Basic Information
75
+
76
+ | Name | Category | Brand | SKU |
77
+ |:--------|:---------|:--------|:---------|
78
+ | Item A | Tools | Acme | ACM-001 |
79
+
80
+ ### Pricing and Availability
81
+
82
+ | Name | Price | Sale Price | Stock | Ships In |
83
+ |:--------|--------:|-----------:|:------|:---------|
84
+ | Item A | $49.99 | $39.99 | 142 | 2 days |
85
+ ```
86
+
87
+ ### Multi-URL Comparison Table
88
+
89
+ ```markdown
90
+ | Source | Product | Price | Rating |
91
+ |:-------------|:-----------|--------:|:------:|
92
+ | store-a.com | Laptop X | $999 | 4.3 |
93
+ | store-b.com | Laptop X | $949 | 4.5 |
94
+ | store-c.com | Laptop X | $1,029 | 4.1 |
95
+ ```
96
+
97
+ ### Truncation Rules
98
+
99
+ For values exceeding 60 characters:
100
+ ```markdown
101
+ | Title | Author |
102
+ |:------------------------------------------------------------|:--------|
103
+ | Introduction to Advanced Machine Learning Techni... | J. Smith|
104
+ ```
105
+
106
+ ---
107
+
108
+ ## JSON Format
109
+
110
+ ### Standard JSON Output
111
+
112
+ ```json
113
+ {
114
+ "metadata": {
115
+ "source": "https://example.com/products",
116
+ "title": "Product Catalog - Example Store",
117
+ "extractedAt": "2026-02-25T14:30:00Z",
118
+ "itemCount": 3,
119
+ "confidence": "HIGH",
120
+ "fields": ["name", "price", "rating", "availability"],
121
+ "notes": []
122
+ },
123
+ "data": [
124
+ {
125
+ "name": "Product Alpha",
126
+ "price": 29.99,
127
+ "currency": "USD",
128
+ "rating": 4.5,
129
+ "availability": "In Stock"
130
+ },
131
+ {
132
+ "name": "Product Beta",
133
+ "price": 49.99,
134
+ "currency": "USD",
135
+ "rating": 4.2,
136
+ "availability": "In Stock"
137
+ },
138
+ {
139
+ "name": "Product Gamma",
140
+ "price": 119.00,
141
+ "currency": "USD",
142
+ "rating": 4.8,
143
+ "availability": "Pre-order"
144
+ }
145
+ ]
146
+ }
147
+ ```
148
+
149
+ ### JSON Key Naming
150
+
151
+ | Rule | Example |
152
+ |:-----------------------|:----------------------------------|
153
+ | camelCase | `productName`, `unitPrice` |
154
+ | Numbers stay numeric | `29.99` not `"29.99"` |
155
+ | Booleans stay boolean | `true` not `"true"` |
156
+ | Missing = null | `null` not `""` or `"N/A"` |
157
+ | Arrays for multiples | `"tags": ["sale", "new"]` |
158
+ | ISO-8601 for dates | `"2026-02-25T14:30:00Z"` |
159
+
160
+ ### Nested JSON (Product with Details)
161
+
162
+ ```json
163
+ {
164
+ "metadata": { "..." : "..." },
165
+ "data": [
166
+ {
167
+ "name": "Laptop Pro X",
168
+ "brand": "TechCo",
169
+ "pricing": {
170
+ "current": 999.99,
171
+ "original": 1299.99,
172
+ "currency": "USD",
173
+ "discount": "23%"
174
+ },
175
+ "rating": {
176
+ "score": 4.5,
177
+ "count": 1234
178
+ },
179
+ "specifications": {
180
+ "processor": "M3 Pro",
181
+ "ram": "16 GB",
182
+ "storage": "512 GB SSD",
183
+ "display": "14.2 inch Retina"
184
+ },
185
+ "availability": {
186
+ "inStock": true,
187
+ "shipsIn": "2-3 business days"
188
+ }
189
+ }
190
+ ]
191
+ }
192
+ ```
193
+
194
+ ### Multi-URL JSON
195
+
196
+ ```json
197
+ {
198
+ "metadata": {
199
+ "sources": [
200
+ "https://store-a.com/laptop-x",
201
+ "https://store-b.com/laptop-x"
202
+ ],
203
+ "extractedAt": "2026-02-25T14:30:00Z",
204
+ "itemCount": 2,
205
+ "confidence": "HIGH"
206
+ },
207
+ "data": [
208
+ {
209
+ "source": "store-a.com",
210
+ "name": "Laptop X",
211
+ "price": 999,
212
+ "currency": "USD",
213
+ "rating": 4.3
214
+ },
215
+ {
216
+ "source": "store-b.com",
217
+ "name": "Laptop X",
218
+ "price": 949,
219
+ "currency": "USD",
220
+ "rating": 4.5
221
+ }
222
+ ]
223
+ }
224
+ ```
225
+
226
+ ---
227
+
228
+ ## CSV Format
229
+
230
+ ### Standard CSV
231
+
232
+ ```csv
233
+ # Source: https://example.com/products
234
+ # Extracted: 2026-02-25 14:30 UTC
235
+ # Items: 3 | Confidence: HIGH
236
+ name,price,currency,rating,availability
237
+ "Product Alpha",29.99,USD,4.5,"In Stock"
238
+ "Product Beta",49.99,USD,4.2,"In Stock"
239
+ "Product Gamma",119.00,USD,4.8,"Pre-order"
240
+ ```
241
+
242
+ ### CSV Rules
243
+
244
+ | Rule | Example |
245
+ |:-------------------------------------|:-------------------------------|
246
+ | Always include header row | `name,price,rating` |
247
+ | Quote fields with commas | `"Smith, John"` |
248
+ | Quote fields with quotes (escape) | `"He said ""hello"""` |
249
+ | Quote fields with newlines | `"Line 1\nLine 2"` |
250
+ | UTF-8 encoding with BOM | `\xEF\xBB\xBF` prefix |
251
+ | Comma delimiter (standard) | `,` |
252
+ | Metadata as comments (# prefix) | `# Source: URL` |
253
+ | null/missing as empty field | `field1,,field3` |
254
+
255
+ ### Multi-URL CSV
256
+
257
+ ```csv
258
+ # Sources: store-a.com, store-b.com
259
+ # Extracted: 2026-02-25 14:30 UTC
260
+ source,name,price,currency,rating
261
+ "store-a.com","Laptop X",999,USD,4.3
262
+ "store-b.com","Laptop X",949,USD,4.5
263
+ ```
264
+
265
+ ---
266
+
267
+ ## Summary Statistics Template
268
+
269
+ When extracted data contains numeric fields, include a summary block:
270
+
271
+ ```markdown
272
+ ### Summary Statistics
273
+
274
+ | Metric | Price | Rating |
275
+ |:----------|----------:|-------:|
276
+ | Count | 47 | 47 |
277
+ | Min | $12.99 | 2.1 |
278
+ | Max | $299.99 | 5.0 |
279
+ | Average | $67.42 | 4.1 |
280
+ | Median | $54.99 | 4.3 |
281
+ ```
282
+
283
+ Include only when:
284
+ - Data has numeric columns
285
+ - More than 5 items extracted
286
+ - User would likely benefit from aggregate view (prices, ratings, quantities)
287
+
288
+ ---
289
+
290
+ ## Contact Data Template
291
+
292
+ ```markdown
293
+ | Name | Title | Email | Phone |
294
+ |:---------------|:-------------------|:---------------------|:---------------|
295
+ | Jane Smith | CEO | jane@example.com | +1-555-0101 |
296
+ | John Doe | CTO | john@example.com | +1-555-0102 |
297
+ | Alice Johnson | VP Engineering | alice@example.com | N/A |
298
+ ```
299
+
300
+ ---
301
+
302
+ ## Article Extraction Template
303
+
304
+ ```markdown
305
+ ## Article: [Title]
306
+
307
+ **Author:** Author Name
308
+ **Published:** YYYY-MM-DD
309
+ **Source:** [Site Name](URL)
310
+
311
+ ### Summary
312
+ [2-3 sentence summary of the article content]
313
+
314
+ ### Key Data Points
315
+ - [Factual data point 1]
316
+ - [Factual data point 2]
317
+ - [Statistical finding]
318
+
319
+ ### Tags
320
+ `tag1` `tag2` `tag3`
321
+ ```
322
+
323
+ Note: Summarize article content. Do not reproduce full article text
324
+ due to copyright.
325
+
326
+ ---
327
+
328
+ ## FAQ Extraction Template
329
+
330
+ ```markdown
331
+ ### FAQ: [Page Title]
332
+
333
+ **Source:** [Site Name](URL)
334
+ **Items:** 12 questions
335
+
336
+ | # | Question | Answer (excerpt) |
337
+ |--:|:---------|:-----------------|
338
+ | 1 | How do I reset my password? | Navigate to Settings > Security and click "Reset..." |
339
+ | 2 | What payment methods do you accept? | We accept Visa, Mastercard, PayPal, and bank transfer... |
340
+ ```
341
+
342
+ Or as JSON (default for FAQ mode):
343
+ ```json
344
+ {
345
+ "metadata": { "source": "URL", "itemCount": 12, "confidence": "HIGH" },
346
+ "data": [
347
+ { "question": "How do I reset my password?", "answer": "Navigate to...", "category": "Account" },
348
+ { "question": "What payment methods?", "answer": "We accept...", "category": "Billing" }
349
+ ]
350
+ }
351
+ ```
352
+
353
+ ---
354
+
355
+ ## Pricing Plans Template
356
+
357
+ ```markdown
358
+ ### Pricing: [Product Name]
359
+
360
+ **Source:** [Site Name](URL)
361
+ **Plans:** 3 tiers
362
+
363
+ | Plan | Monthly | Annual | Highlighted |
364
+ |:------------|----------:|----------:|:-----------:|
365
+ | Starter | $9/mo | $7/mo | |
366
+ | Pro | $29/mo | $24/mo | * |
367
+ | Enterprise | Custom | Custom | |
368
+
369
+ #### Feature Comparison
370
+
371
+ | Feature | Starter | Pro | Enterprise |
372
+ |:----------------------|:-------:|:---:|:----------:|
373
+ | Users | 1 | 10 | Unlimited |
374
+ | Storage | 5 GB | 50 GB | Unlimited |
375
+ | API Access | N/A | Yes | Yes |
376
+ | Priority Support | N/A | N/A | Yes |
377
+ ```
378
+
379
+ ---
380
+
381
+ ## Job Listings Template
382
+
383
+ ```markdown
384
+ | Title | Company | Location | Salary | Type | Posted |
385
+ |:-------------------|:------------|:---------------|:----------------|:----------|:-----------|
386
+ | Senior Engineer | TechCo | Remote, US | $150k - $200k | Full-time | 2026-02-20 |
387
+ | Product Manager | StartupXYZ | San Francisco | $130k - $160k | Full-time | 2026-02-18 |
388
+ | Data Analyst | DataCorp | London, UK | GBP 55k - 70k | Contract | 2026-02-22 |
389
+ ```
390
+
391
+ ---
392
+
393
+ ## Events Template
394
+
395
+ ```markdown
396
+ | Event | Date | Time | Location | Speakers |
397
+ |:-----------------------|:-----------|:--------|:------------------|:---------------|
398
+ | Opening Keynote | 2026-03-15 | 09:00 | Main Hall | J. Smith |
399
+ | Workshop: AI Basics | 2026-03-15 | 14:00 | Room 201 | A. Johnson |
400
+ | Networking Reception | 2026-03-15 | 18:00 | Rooftop Lounge | N/A |
401
+ ```
402
+
403
+ ---
404
+
405
+ ## Differential (Diff) Output Template
406
+
407
+ When comparing current extraction with a previous run:
408
+
409
+ ```markdown
410
+ ## Extraction Results (Diff)
411
+
412
+ **Source:** [Page Title](URL)
413
+ **Date:** 2026-02-25 14:30 UTC
414
+ **Compared to:** 2026-02-20 10:00 UTC
415
+ **Changes:** +5 new, -2 removed, 3 modified
416
+
417
+ ---
418
+
419
+ ### New Items (+5)
420
+
421
+ | Name | Price | Rating |
422
+ |:---------------|--------:|:------:|
423
+ | Product Eta | $39.99 | 4.6 |
424
+ | Product Theta | $24.99 | 4.1 |
425
+ | ... | | |
426
+
427
+ ### Removed Items (-2)
428
+
429
+ | Name | Price | Rating |
430
+ |:---------------|--------:|:------:|
431
+ | ~~Product Alpha~~ | ~~$29.99~~ | ~~4.5~~ |
432
+ | ~~Product Beta~~ | ~~$49.99~~ | ~~4.2~~ |
433
+
434
+ ### Modified Items (3)
435
+
436
+ | Name | Field | Was | Now |
437
+ |:---------------|:--------|:-----------|:-----------|
438
+ | Product Gamma | Price | $119.00 | $109.00 |
439
+ | Product Gamma | Rating | 4.8 | 4.9 |
440
+ | Product Delta | Stock | Out of Stock | In Stock |
441
+
442
+ ---
443
+
444
+ **Summary:**
445
+ - 5 new products added since last extraction
446
+ - 2 products removed (possibly discontinued)
447
+ - Product Gamma had a price drop of $10 and rating increase
448
+ - Product Delta is back in stock
449
+ ```
450
+
451
+ ---
452
+
453
+ ## Error / Partial Result Template
454
+
455
+ When extraction partially fails:
456
+
457
+ ```markdown
458
+ ## Extraction Results (Partial)
459
+
460
+ **Source:** [Page Title](URL)
461
+ **Date:** 2026-02-25 14:30 UTC
462
+ **Items:** 23 of ~50 expected records
463
+ **Confidence:** LOW
464
+ **Strategy:** A (WebFetch) -> escalated to B (Browser)
465
+
466
+ ---
467
+
468
+ [PARTIAL DATA]
469
+
470
+ ---
471
+
472
+ **Issues:**
473
+ - 27 items could not be extracted (content behind JS rendering)
474
+ - Price field missing for 5 items (marked N/A)
475
+ - Auto-escalation from WebFetch to Browser recovered 15 additional items
476
+
477
+ **Suggestions:**
478
+ - Re-run with explicit Browser automation for complete results
479
+ - Check if site has an API endpoint for direct data access
480
+ - Try at a different time if rate-limited
481
+ ```
@@ -0,0 +1,180 @@
1
+ ---
2
+ name: zero-to-prod-orchestrator
3
+ description: "Master orchestrator to build an application from scratch to a production-ready release, enforcing strict step-by-step progression and continuous documentation / Orkestrator utama untuk membangun aplikasi dari nol hingga rilis siap produksi dengan dokumentasi bertahap."
4
+ author: "Roedy Rustam"
5
+ ---
6
+
7
+ # Zero to Production Orchestrator (2026 Master Edition)
8
+
9
+ [English](#english) | [Bahasa Indonesia](#bahasa-indonesia)
10
+
11
+ ---
12
+
13
+ <a name="english"></a>
14
+ ## English
15
+
16
+ ### Overview
17
+ The **Zero to Production Orchestrator** is the ultimate master skill designed to orchestrate the entire `vibes-plug` ecosystem as a highly interconnected **engineering swarm**. By acting as the central conductor, it ensures that no sub-skill is executed in isolation. It guides fullstack developers through the complete software engineering lifecycle — from concept discovery to AI integration, multi-platform backend architecture, design systems, automated testing, GEO/AEO optimization, and production deployment.
18
+
19
+ ### Trigger Conditions
20
+ - Starting any new application development from scratch.
21
+ - Asking for a complete, end-to-end fullstack development roadmap.
22
+ - Orchestrating multiple domain skills across UI, Backend, AI/LLM, Database, Security, and Cloud.
23
+
24
+ ### Core Principles & Hard Gates
25
+ 1. **Never Skip Phases**: Each phase must be completed and validated before advancing to the next.
26
+ 2. **Continuous Auto-Documentation**: Invoke `auto-doc-updater` to log changes in `CHANGELOG.md` and `BLUEPRINT.md` after every major milestone.
27
+ 3. **Strict Progress Tracking**: Maintain a `PROGRESS.md` checklist in the repository root.
28
+ 4. **State Preservation**: Utilize `session-handoff-resume` when pausing work or switching contexts, ensuring zero token waste.
29
+ 5. **Efficiency**: Keep `token-saver` active during large refactors to maintain a lean, powerful execution loop.
30
+
31
+ ---
32
+
33
+ ### The 8-Phase Master Fullstack Pipeline
34
+
35
+ ```
36
+ PHASE 1 PHASE 2 PHASE 3 PHASE 4
37
+ Discovery/PRD ---> Foundation ---> Database/ORM ---> Backend/APIs
38
+ | |
39
+ v v
40
+ PHASE 8 PHASE 7 PHASE 6 PHASE 5
41
+ Launch/Deploy <--- Security/GEO <--- Testing/QA <--- Frontend/UI
42
+ ```
43
+
44
+ #### PHASE 1: Discovery & AI PRD Architectural Planning
45
+ **Orchestrates:** `prd-architect`, `brainstorming`, `mcp-server-architect`
46
+ - [ ] Conduct structured dialogue to clarify product intent, target audience, and non-functional goals.
47
+ - [ ] Draft a comprehensive Product Requirements Document (PRD).
48
+ - [ ] Plan AI/LLM integration strategy (Vercel AI SDK, MCP Server tools, or Multi-Agent Graph).
49
+ - [ ] Initialize `BLUEPRINT.md` and `PROGRESS.md`.
50
+
51
+ #### PHASE 2: Project Foundation & Monorepo Setup
52
+ **Orchestrates:** `monorepo-architect`, `bun-runtime-expert`, `python-programming-expert`, `go-programming-expert`
53
+ - [ ] Initialize monorepo (Turborepo + pnpm workspaces) or single repo foundation.
54
+ - [ ] Set up language runtimes: Node.js 22 LTS / Bun 1.2+ / Python 3.12+ (uv) / Go 1.23+.
55
+ - [ ] Configure `Ruff`, `ESLint`, `Prettier`, and TypeScript strict configurations.
56
+ - [ ] Setup initial CI/CD pipeline template.
57
+
58
+ #### PHASE 3: Database & Multi-Tenant Core Architecture
59
+ **Orchestrates:** `fullstack-expert`, `saas-multi-tenant`, `supabase-migration`, `supabase-security-expert`
60
+ - [ ] Design normalized relational schemas and document models.
61
+ - [ ] Configure ORM layer (Drizzle ORM / Prisma 6 / SQLx / sqlc).
62
+ - [ ] Implement Row-Level Security (RLS) policies and tenant isolation.
63
+ - [ ] Apply initial database migrations and connection poolers (PgBouncer/Supavisor/Neon).
64
+
65
+ #### PHASE 4: Backend APIs, Microservices & AI Agents
66
+ **Orchestrates:** `js-backend-expert`, `go-programming-expert`, `ai-llm-integration-expert`, `multi-agent-orchestration`, `mcp-server-architect`
67
+ - [ ] Build high-throughput REST / GraphQL / gRPC APIs using Fastify 5, Hono, Gin, or Axum.
68
+ - [ ] Implement authentication (Clerk, Auth.js, Supabase Auth) and RBAC middleware.
69
+ - [ ] Build MCP Server tools or stateful LangGraph multi-agent workflows with human-in-the-loop gates.
70
+ - [ ] Implement background processing queues (BullMQ + Redis) and rate limiters.
71
+
72
+ #### PHASE 5: Frontend, Design Systems & Mobile Apps
73
+ **Orchestrates:** `design-system-architect`, `senior-frontend`, `tailwind-expert`, `tanstack-query-expert`, `spa-orchestrator`, `mobile-expo-expert`, `tauri-expert`
74
+ - [ ] Implement design tokens (OKLCH) and Tailwind CSS v4 `@theme` directive tokens.
75
+ - [ ] Construct accessible component primitives using Radix UI / Base UI and CVA variants.
76
+ - [ ] Build React 19 / Next.js 15 pages utilizing Server Components, Server Actions (`useActionState`, `useOptimistic`), advanced animations (GSAP), or Expo Router v4 for Mobile / Tauri v2 for Desktop.
77
+ - [ ] If SPA architecture — coordinate with `spa-orchestrator` for routing (TanStack Router), state (TanStack Query v5), and decoupled API layer.
78
+ - [ ] Integrate frontend state management with TanStack Query v5.
79
+
80
+ #### PHASE 6: Automated Testing & Security Audit
81
+ **Orchestrates:** `e2e-testing-expert`, `secure-fuzz-testing`, `firebase-security-expert`
82
+ - [ ] Write unit and integration tests with Vitest and pytest.
83
+ - [ ] Write resilient E2E browser tests with Playwright.
84
+ - [ ] Execute security fuzz testing (Atheris / cargo-fuzz / native Go fuzzing).
85
+ - [ ] Audit CORS, CSP headers, rate-limiting, and input sanitization.
86
+
87
+ #### PHASE 7: Pre-Launch Hardening, Web Vitals & GEO/SEO
88
+ **Orchestrates:** `production-ready-hardener`, `app-analyzer-optimizer`, `seo`, `seo-geo`, `seo-aeo-landing-page-writer`
89
+ - [ ] Perform pre-launch audit across Core Web Vitals (LCP, INP, CLS) and bundle sizes.
90
+ - [ ] Optimize Generative Engine Optimization (GEO) for AI Overviews, Perplexity, ChatGPT Search, and deploy `/llms.txt`.
91
+ - [ ] Generate structured Schema.org JSON-LD markup and AEO conversion landing pages.
92
+
93
+ #### PHASE 8: Launch, Deployment & Handover
94
+ **Orchestrates:** `cloud-hosting-expert`, `saas-billing`, `saas-transformer`, `auto-doc-updater`
95
+ - [ ] Deploy backend and edge services to Vercel, Cloudflare, AWS, or Railway.
96
+ - [ ] For SaaS applications: deploy Super Admin dashboard on a **separate subdomain** (e.g., `admin.yourdomain.com`) with strict role-based access (`isSuperAdmin` flag).
97
+ - [ ] Configure Stripe / Polar.sh / LemonSqueezy billing and webhooks.
98
+ - [ ] Finalize `CHANGELOG.md`, `BLUEPRINT.md`, and `PROGRESS.md`.
99
+ - [ ] Handover the production-grade application to the user.
100
+
101
+ ---
102
+
103
+ <a name="bahasa-indonesia"></a>
104
+ ## Bahasa Indonesia
105
+
106
+ ### Ringkasan
107
+ **Zero to Production Orchestrator** adalah skill master utama yang dirancang untuk mengorkestrasi seluruh ekosistem `vibes-plug` sebagai sebuah **engineering swarm** yang saling terhubung erat. Dengan bertindak sebagai konduktor pusat, skill ini memastikan tidak ada sub-skill yang dieksekusi secara terisolasi. Skill ini memandu pengembang *fullstack* melalui seluruh siklus hidup rekayasa perangkat lunak — mulai dari tahap ide awal hingga integrasi AI, arsitektur backend multi-platform, design system, pengujian otomatis, optimasi GEO/AEO, dan deployment produksi.
108
+
109
+ ### Kondisi Pemicu
110
+ - Memulai pengembangan aplikasi baru dari nol.
111
+ - Meminta panduan roadmap pengembangan fullstack end-to-end yang terstruktur.
112
+ - Mengorkestrasi berbagai skill spesialis lintas domain (UI, Backend, AI/LLM, Database, Keamanan, dan Cloud).
113
+
114
+ ### Prinsip Inti & Gerbang Ketat
115
+ 1. **Jangan Pernah Melewati Fase**: Setiap fase harus diselesaikan dan divalidasi sebelum beralih ke fase berikutnya.
116
+ 2. **Otomatisasi Dokumentasi**: Panggil `auto-doc-updater` untuk memperbarui `CHANGELOG.md` dan `BLUEPRINT.md` setelah setiap milestone utama.
117
+ 3. **Pelacakan Progres**: Pelihara daftar periksa `PROGRESS.md` di root repositori.
118
+ 4. **Preservasi State**: Gunakan `session-handoff-resume` saat menjeda pekerjaan atau berganti konteks, memastikan tidak ada token yang terbuang percuma.
119
+ 5. **Efisiensi**: Aktifkan `token-saver` selama refactoring besar-besaran untuk mempertahankan *loop* eksekusi yang ringkas dan *powerful*.
120
+
121
+ ---
122
+
123
+ ### Master Pipeline Fullstack 8-Fase
124
+
125
+ #### FASE 1: Discovery & Perencanaan Arsitektur PRD AI
126
+ **Mengorkestrasi:** `prd-architect`, `brainstorming`, `mcp-server-architect`
127
+ - [ ] Dialog terstruktur untuk memperjelas tujuan produk, audiens target, dan persyaratan non-fungsional.
128
+ - [ ] Menyusun Product Requirements Document (PRD) yang komprehensif.
129
+ - [ ] Merencanakan integrasi AI/LLM (Vercel AI SDK, alat MCP Server, atau Graf Multi-Agen).
130
+ - [ ] Menginisialisasi `BLUEPRINT.md` dan `PROGRESS.md`.
131
+
132
+ #### FASE 2: Fondasi Proyek & Monorepo
133
+ **Mengorkestrasi:** `monorepo-architect`, `bun-runtime-expert`, `python-programming-expert`, `go-programming-expert`
134
+ - [ ] Inisialisasi monorepo (Turborepo + pnpm workspaces) atau repositori tunggal.
135
+ - [ ] Menyiapkan runtime bahasa: Node.js 22 LTS / Bun 1.2+ / Python 3.12+ (uv) / Go 1.23+.
136
+ - [ ] Konfigurasi `Ruff`, `ESLint`, `Prettier`, dan TypeScript ketat.
137
+ - [ ] Menyiapkan template pipeline CI/CD awal.
138
+
139
+ #### FASE 3: Database & Arsitektur Multi-Tenant
140
+ **Mengorkestrasi:** `fullstack-expert`, `saas-multi-tenant`, `supabase-migration`, `supabase-security-expert`
141
+ - [ ] Merancang skema relasional ter-normalisasi dan pemodelan dokumen.
142
+ - [ ] Konfigurasi lapisan ORM (Drizzle ORM / Prisma 6 / SQLx / sqlc).
143
+ - [ ] Mengimplementasikan kebijakan Row-Level Security (RLS) dan isolasi tenant.
144
+ - [ ] Menerapkan migrasi database awal dan connection poolers (PgBouncer/Supavisor/Neon).
145
+
146
+ #### FASE 4: API Backend, Microservices & Agen AI
147
+ **Mengorkestrasi:** `js-backend-expert`, `go-programming-expert`, `ai-llm-integration-expert`, `multi-agent-orchestration`, `mcp-server-architect`
148
+ - [ ] Membangun REST / GraphQL / gRPC API throughput tinggi menggunakan Fastify 5, Hono, Gin, atau Axum.
149
+ - [ ] Mengimplementasikan autentikasi (Clerk, Auth.js, Supabase Auth) dan middleware RBAC.
150
+ - [ ] Membangun alat MCP Server atau alur kerja multi-agen LangGraph berbasis state dengan gerbang *human-in-the-loop*.
151
+ - [ ] Mengimplementasikan antrean pemrosesan latar belakang (BullMQ + Redis) dan rate limiters.
152
+
153
+ #### FASE 5: Frontend, Design System & Aplikasi Mobile
154
+ **Mengorkestrasi:** `design-system-architect`, `senior-frontend`, `tailwind-expert`, `tanstack-query-expert`, `spa-orchestrator`, `mobile-expo-expert`, `tauri-expert`
155
+ - [ ] Mengimplementasikan *design tokens* (OKLCH) dan token direktif Tailwind CSS v4 `@theme`.
156
+ - [ ] Membangun komponen dasar tanpa styling (*headless primitives*) menggunakan Radix UI / Base UI dan CVA.
157
+ - [ ] Membangun halaman React 19 / Next.js 15 dengan Server Components, Server Actions, animasi tingkat lanjut (GSAP), atau Expo Router v4 untuk Mobile / Tauri v2 untuk Desktop.
158
+ - [ ] Jika arsitektur SPA — koordinasikan dengan `spa-orchestrator` untuk routing (TanStack Router), state (TanStack Query v5), dan API layer terpisah.
159
+ - [ ] Mengintegrasikan manajemen state frontend dengan TanStack Query v5.
160
+
161
+ #### FASE 6: Pengujian Otomatis & Audit Keamanan
162
+ **Mengorkestrasi:** `e2e-testing-expert`, `secure-fuzz-testing`, `firebase-security-expert`
163
+ - [ ] Menulis unit test dan integration test dengan Vitest dan pytest.
164
+ - [ ] Menulis pengujian browser E2E yang tangguh menggunakan Playwright.
165
+ - [ ] Menjalankan pengujian fuzzing keamanan (Atheris / cargo-fuzz / native Go fuzzing).
166
+ - [ ] Mengaudit CORS, CSP headers, rate-limiting, dan sanitasi input.
167
+
168
+ #### FASE 7: Hardening Pra-Peluncuran, Web Vitals & GEO/SEO
169
+ **Mengorkestrasi:** `production-ready-hardener`, `app-analyzer-optimizer`, `seo`, `seo-geo`, `seo-aeo-landing-page-writer`
170
+ - [ ] Audit pra-peluncuran pada Core Web Vitals (LCP, INP, CLS) dan ukuran bundle.
171
+ - [ ] Mengoptimalkan Generative Engine Optimization (GEO) untuk AI Overviews, Perplexity, ChatGPT Search, dan merilis `/llms.txt`.
172
+ - [ ] Membuat markup terstruktur Schema.org JSON-LD dan landing page konversi AEO.
173
+
174
+ #### FASE 8: Peluncuran, Deployment & Serah Terima
175
+ **Mengorkestrasi:** `cloud-hosting-expert`, `saas-billing`, `saas-transformer`, `auto-doc-updater`
176
+ - [ ] Deploy backend dan edge services ke Vercel, Cloudflare, AWS, atau Railway.
177
+ - [ ] Untuk aplikasi SaaS: deploy dashboard Super Admin pada **subdomain terpisah** (misal: `admin.domain.com`) dengan kontrol akses berbasis role (`isSuperAdmin`).
178
+ - [ ] Konfigurasi billing Stripe / Polar.sh / LemonSqueezy dan webhooks.
179
+ - [ ] Menyelesaikan `CHANGELOG.md`, `BLUEPRINT.md`, dan `PROGRESS.md`.
180
+ - [ ] Serah terima aplikasi siap produksi kepada pengguna.