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,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
package/BLUEPRINT.md ADDED
@@ -0,0 +1,125 @@
1
+ # Project Blueprint
2
+
3
+ - **Version**: 1.5.0
4
+ - **Last Updated**: 2026-07-26
5
+ - **Repository**: [vibes-plug](https://github.com/roedyrustam/vibes-plug)
6
+
7
+ [English](#english) | [Bahasa Indonesia](#bahasa-indonesia)
8
+
9
+ ---
10
+
11
+ <a name="english"></a>
12
+ ## English
13
+
14
+ ### Overview
15
+ Vibes Plug is a customized plugin for Antigravity that houses high-performance custom skills designed for SaaS architectures, database management, premium UI/UX design, AI & LLM agentic integrations, frontend performance optimization, and advanced SEO strategies.
16
+
17
+ ### Skill Modules
18
+ - **ai-llm-integration-expert**: Production-grade guidelines for integrating Large Language Models (LLMs), Model Context Protocol (MCP), RAG architecture (`pgvector` HNSW, Qdrant), reasoning models (DeepSeek-R1/V3, Gemini 3.5/3.6, Claude 3.7), and Vercel AI SDK 4.x/5.x.
19
+ - **app-analyzer-optimizer**: Deeply analyzes application architecture, dependencies, and performance configurations (Core Web Vitals, INP), executing targeted optimizations.
20
+ - **asisten-ramah**: Friendly assistant styling to respond with a warm, polite language style and emojis.
21
+ - **auto-doc-updater**: Automated project documentation tracking (`CHANGELOG.md` and `BLUEPRINT.md`).
22
+ - **bootstrap-to-modern**: Refactor and migrate legacy Bootstrap CSS applications to modern utility-first stacks using Tailwind CSS v4 and Alpine.js 3 / HTMX.
23
+ - **brainstorming**: Advanced brainstorming protocol with 2026 Modern Web Guidance — RSC, PPR, Server Actions, AI integration, Passkeys, and structured Design Document templates.
24
+ - **bun-runtime-expert**: Expert skill for the Bun JavaScript/TypeScript runtime (v1.2+) featuring `Bun.serve`, `Bun.sql`, `Bun.s3`, `bun test`, bundler, and package manager.
25
+ - **cloud-hosting-expert**: Expert guide for deploying SaaS applications on edge and serverless platforms like Vercel (Edge, Fluid Compute), Cloudflare (Wrangler v3, Workers/Pages), Supabase, and Neon.
26
+ - **coderabbit**: AI-powered automated code reviews, pull request summarizations, interactive chat prompts, and `.coderabbit.yaml` custom configurations.
27
+ - **data-telemetry-expert**: Observability, OpenTelemetry 1.30+, PostHog, Mixpanel, and telemetry data pipelines.
28
+ - **design-system-architect**: Enterprise UI design systems, Design Tokens (OKLCH), Radix UI/Base UI headless primitives, Tailwind CSS v4 `@theme`, CVA variants, and WCAG 2.2 AAA accessibility.
29
+ - **e2e-testing-expert**: Guidelines for Playwright End-to-End testing (1.48+), Vitest unit/integration testing (2+), MSW 2+, and GitHub Actions CI/CD automation.
30
+ - **event-driven-architect**: Microservices architecture, message queues (NATS, Kafka, RabbitMQ, EventBridge), Event Sourcing, and background workflows (Temporal, Inngest, Trigger.dev v3).
31
+ - **firebase-security-expert**: Firebase Security Rules auditing, Service Account protection, and App Check v11+ integration.
32
+ - **fullstack-expert**: Multi-language (TypeScript, Python, Go, Rust), multi-framework backend references (Next.js, FastAPI, Gin, Axum), OpenAPI 3.1 API design patterns, databases, DevOps, and observability.
33
+ - **global-a11y-i18n-expert**: Web Accessibility (WCAG 2.2 AAA) and internationalization (i18n) standards.
34
+ - **go-programming-expert**: Expert-level skill for Go programming (Go 1.23/1.24+). Covers high-performance backend APIs, microservices, concurrency patterns (`errgroup`, context propagation), `sqlc`, `net/http`, Gin/Echo/Fiber, gRPC, and table-driven testing.
35
+ - **hig**: Human Interface Guidelines for iOS 18 and macOS Sequoia, enforcing visual hierarchy, harmony, and platform consistency.
36
+ - **js-backend-expert**: Production-grade guidance for modern JavaScript/TypeScript backend APIs across Node.js 22 LTS, Bun 1.2+, and Deno 2.x. Covers Fastify 5, Hono, Express 5, NestJS, Prisma 6, Drizzle ORM, WebSockets, and BullMQ background queues.
37
+ - **mcp-server-architect**: Expert guide for designing, building, and securing Model Context Protocol (MCP) servers across TypeScript, Python, and Go (`stdio` and `SSE` transports, Zod/Pydantic schema validation, security guardrails).
38
+ - **mobile-expo-expert**: React Native 0.76+ and Expo SDK 52+ development, covering Expo Router v4, React Native New Architecture (Fabric & TurboModules), EAS builds, OTA updates, and NativeWind v4.
39
+ - **monorepo-architect**: Expert guide for designing and managing scalable monorepos using Turborepo 2.x, pnpm v9+ workspaces, and pnpm catalogs.
40
+ - **multi-agent-orchestration**: Multi-agent AI systems, LangGraph stateful graph workflows, CrewAI/AutoGen swarms, supervisor routing, shared memory state, and Human-in-the-Loop guardrails.
41
+ - **mvc-expert**: Expert guidelines to modernize legacy PHP projects into clean, secure, and structured OOP/MVC architectures adhering to modern PHP (v8.3/8.4+) capabilities and PSR standards.
42
+ - **prd-architect**: Initial guardrail skill that enforces creating a comprehensive Product Requirements Document (PRD) before generating code.
43
+ - **production-ready-hardener**: Automated pre-launch audits across security, performance, accessibility, testing, and deployment.
44
+ - **python-programming-expert**: Expert skill for Python programming (Python 3.12/3.13+) covering PEP 695 type parameter syntax, structured concurrency (`asyncio.TaskGroup`), web backends (FastAPI 0.115+, Pydantic v2), package management (`uv`), quality checks (`Ruff`), and testing with pytest 8+.
45
+ - **rust-programming-expert**: Expert skill for Rust programming (Rust 2024 / v1.85+) covering memory safety (ownership/lifetimes), async (Tokio, async closures), web backends (Axum 0.8+, SQLx 0.8+), CLI (Clap, Serde), unsafe safety, optimization, and Cargo profiling.
46
+ - **saas-billing**: Implementation of payment gateways (Stripe v16+, Midtrans, Paddle), webhook handling, subscription lifecycle states, and database synchronization.
47
+ - **saas-multi-tenant**: Row-Level Security (RLS) and multi-tenant database isolation strategies.
48
+ - **saas-mvp-launcher**: Roadmap and technical design for bootstrapping high-performance multi-tenant B2B/B2C SaaS MVPs with Next.js 15, Tailwind CSS v4, Drizzle/Prisma, Stripe, Clerk, and Vercel AI SDK.
49
+ - **saas-transformer**: Systematic 8-phase transformation of standard applications into production-grade multi-tenant SaaS platforms (database isolation, billing/Stripe, teams, feature gating).
50
+ - **scalability-clean-code**: Guidelines for maintaining code readability (Clean Code, SOLID, DRY) and system scalability (Clean Architecture, loose coupling, horizontal scaling, caching).
51
+ - **secure-fuzz-testing**: Coverage-guided fuzzing (Atheris, cargo-fuzz, native Go fuzzing) with compilers/sanitizers (ASan, MSan, UBSan) for security validation.
52
+ - **senior-frontend**: React 19, Next.js 15, Tailwind CSS v4 frontend patterns — `useActionState`, `useOptimistic`, `useFormStatus`, Turbopack, and bundle optimization.
53
+ - **senior-fullstack**: Advanced fullstack architectural/testing references (Redis caching, BullMQ background queues, connection pooling, CI/CD pipelines, Docker, and Playwright).
54
+ - **seo**, **seo-geo**, & **seo-aeo-landing-page-writer**: Generative search engine optimization and visibility architectures (AI Overviews, ChatGPT Search, Perplexity, `/llms.txt`).
55
+ - **session-handoff-resume**: Zero-token loss session continuation across account switches and chat resets via ultra-compact `STATE_HANDOFF.md` checkpoints.
56
+ - **skill-baru**: Basic template for creating new agent skills in the future.
57
+ - **supabase-migration**: Database schema migration tracking and deployment commands (local and CLI v2+).
58
+ - **supabase-security-expert**: Relational database auditing, RLS security practices, and Supabase Linter.
59
+ - **tailwind-expert**: Tailwind CSS v4 styling rules, CSS-first design (`@theme`), OKLCH colors, container queries, and utility optimization.
60
+ - **tanstack-query-expert**: Asynchronous state management & caching (TanStack Query v5, `useSuspenseQuery`, Next.js SSR hydration, optimistic updates, query key factories).
61
+ - **tauri-expert**: Expert skill for Tauri v2 development (Rust backend, IPC, capabilities, desktop & mobile).
62
+ - **token-saver**: Strict token-saving protocol for minimal fluff and efficient codebase edits.
63
+ - **ui-ux-pro-max** & **hig**: Comprehensive UI/UX design (including modern dashboard architectures) and Human Interface Guidelines consistency.
64
+ - **ui-ux-expert**: UI/UX Designer & Frontend Specialist focusing on responsive layouts, typography, accessibility, and professional dashboard design.
65
+ - **web-scraper**: Multi-strategy data extraction workflow (Crawl4AI, Playwright, BeautifulSoup, LLM extraction), pagination, validation, and structured formats export (CSV/JSON/Markdown).
66
+ - **zero-to-prod-orchestrator**: Master orchestrator skill guiding the complete lifecycle of building a new application from scratch to production.
67
+
68
+ ---
69
+
70
+ <a name="bahasa-indonesia"></a>
71
+ ## Bahasa Indonesia
72
+
73
+ ### Ringkasan
74
+ Vibes Plug adalah plugin kustomisasi untuk Antigravity yang memuat berbagai kemampuan (*skills*) berkinerja tinggi. Dirancang khusus untuk arsitektur SaaS, manajemen database, desain UI/UX premium, integrasi agen AI & LLM, optimasi performa frontend, dan strategi SEO lanjutan.
75
+
76
+ ### Modul Skills
77
+ - **ai-llm-integration-expert**: Panduan tingkat produksi untuk integrasi Large Language Models (LLMs), Model Context Protocol (MCP), RAG (`pgvector` HNSW, Qdrant), model penalaran (DeepSeek-R1/V3, Gemini 3.5/3.6, Claude 3.7), dan Vercel AI SDK 4.x/5.x.
78
+ - **app-analyzer-optimizer**: Menganalisis struktur dan arsitektur aplikasi secara mendalam, audit performa (Core Web Vitals, INP), serta optimasi terarah.
79
+ - **asisten-ramah**: Kepribadian ramah, hangat, dan bersemangat.
80
+ - **auto-doc-updater**: Pendokumentasian otomatis fitur dan perbaikan bug ke `CHANGELOG.md` dan `BLUEPRINT.md`.
81
+ - **bootstrap-to-modern**: Refaktor dan migrasi aplikasi Bootstrap CSS ke stack modern berbasis utility menggunakan Tailwind CSS v4 dan Alpine.js 3 / HTMX.
82
+ - **brainstorming**: Protokol lanjutan dengan pedoman *Modern Web Guidance* (RSC, PPR, Server Actions, integrasi AI, Passkeys).
83
+ - **bun-runtime-expert**: Panduan ahli untuk runtime Bun JavaScript/TypeScript (v1.2+) (`Bun.serve`, `Bun.sql`, `Bun.s3`, `bun test`, bundler, package manager).
84
+ - **cloud-hosting-expert**: Panduan ahli meluncurkan aplikasi SaaS di platform edge & serverless (Vercel, Cloudflare, Supabase, Neon).
85
+ - **coderabbit**: Asisten review kode otomatis berbasis AI, perangkum pull request, dan integrasi `.coderabbit.yaml`.
86
+ - **data-telemetry-expert**: Observabilitas, OpenTelemetry 1.30+, PostHog, Mixpanel, dan analitik pipa data.
87
+ - **design-system-architect**: Design system UI perusahaan, Design Tokens (OKLCH), headless primitives Radix UI/Base UI, Tailwind v4 `@theme`, CVA, dan aksesibilitas WCAG 2.2 AAA.
88
+ - **e2e-testing-expert**: Pengujian End-to-End dengan Playwright 1.48+, Vitest 2+, MSW 2+, dan otomatisasi CI/CD.
89
+ - **event-driven-architect**: Arsitektur microservices, message queues (NATS, Kafka, RabbitMQ, EventBridge), dan background workflows (Temporal, Inngest, Trigger.dev v3).
90
+ - **firebase-security-expert**: Audit Firebase Security Rules, perlindungan Service Account, dan konfigurasi App Check v11+.
91
+ - **fullstack-expert**: Referensi pengembangan fullstack multi-bahasa (TypeScript, Python, Go, Rust), multi-framework (Next.js, FastAPI, Gin, Axum), OpenAPI 3.1, database, DevOps, dan observability.
92
+ - **global-a11y-i18n-expert**: Standar Aksesibilitas Web (WCAG 2.2 AAA) dan internasionalisasi (i18n).
93
+ - **go-programming-expert**: Skill tingkat ahli untuk pemrograman Go (Go 1.23/1.24+). Mencakup API backend, microservices, pola konkurensi (`errgroup`), `sqlc`, routing `net/http`, Gin/Echo/Fiber, gRPC, dan testing.
94
+ - **hig**: Human Interface Guidelines untuk iOS 18 dan macOS Sequoia.
95
+ - **js-backend-expert**: Panduan tingkat produksi untuk API backend JavaScript/TypeScript di Node.js 22 LTS, Bun 1.2+, dan Deno 2.x. Mencakup Fastify 5, Hono, Express 5, NestJS, Prisma 6, Drizzle ORM, WebSocket, dan BullMQ.
96
+ - **mcp-server-architect**: Panduan ahli merancang, membangun, dan mengamankan server Model Context Protocol (MCP) pada TypeScript, Python, dan Go (transport `stdio` & `SSE`, validasi Zod/Pydantic, guardrails keamanan).
97
+ - **mobile-expo-expert**: Pengembangan React Native 0.76+ dan Expo SDK 52+, mencakup Expo Router v4, React Native New Architecture (Fabric & TurboModules), EAS builds, OTA updates, dan NativeWind v4.
98
+ - **monorepo-architect**: Merancang dan mengelola monorepo skalabel menggunakan Turborepo 2.x, pnpm v9+ workspaces, dan pnpm catalogs.
99
+ - **multi-agent-orchestration**: Sistem multi-agen AI, alur kerja graf berbasis state LangGraph, kelompok agen CrewAI/AutoGen, perutean supervisor, memori bersama, dan gerbang persetujuan manusia.
100
+ - **mvc-expert**: Memodernisasi proyek PHP lama menjadi arsitektur OOP/MVC yang bersih dan terstruktur mematuhi standar PSR dan fitur PHP modern (v8.3/8.4+).
101
+ - **prd-architect**: Perumusan wajib Product Requirements Document (PRD) sebelum menulis kode aplikasi baru.
102
+ - **production-ready-hardener**: Audit kesiapan produksi pra-peluncuran pada aspek keamanan, performa, aksesibilitas, testing, dan deployment.
103
+ - **python-programming-expert**: Pemrograman Python (Python 3.12/3.13+), mencakup sintaksis parameter tipe PEP 695, konkurensi terstruktur (`asyncio.TaskGroup`), API backend (FastAPI 0.115+, Pydantic v2), `uv`, `Ruff`, dan pytest 8+.
104
+ - **rust-programming-expert**: Pemrograman Rust (Rust 2024 / v1.85+), mencakup keamanan memori, async (Tokio), web backends (Axum 0.8+, SQLx 0.8+), CLI (Clap, Serde), dan Cargo profiling.
105
+ - **saas-billing**: Implementasi payment gateway (Stripe v16+, Midtrans, Paddle), webhook handling, dan sinkronisasi database.
106
+ - **saas-multi-tenant**: Strategi isolasi database multi-tenant RLS dan isolated schema.
107
+ - **saas-mvp-launcher**: Roadmap dan desain teknis untuk meluncurkan SaaS MVP dengan Next.js 15, Tailwind v4, Drizzle/Prisma, Stripe, Clerk, dan Vercel AI SDK.
108
+ - **saas-transformer**: Transformasi sistematis 8-fase dari aplikasi biasa menjadi platform SaaS multi-tenant lengkap.
109
+ - **scalability-clean-code**: Penulisan kode bersih (SOLID, DRY) dan arsitektur aplikasi modular yang skalabel.
110
+ - **secure-fuzz-testing**: Coverage-guided fuzzing (Atheris, cargo-fuzz, native Go fuzzing) dengan compiler/sanitizer (ASan, MSan, UBSan).
111
+ - **senior-frontend**: Pola frontend React 19, Next.js 15, Tailwind CSS v4 — `useActionState`, `useOptimistic`, `useFormStatus`, Turbopack, dan optimasi bundle.
112
+ - **senior-fullstack**: Referensi fullstack lanjutan (Redis caching, BullMQ background queues, connection pooling, CI/CD, Docker, Playwright).
113
+ - **seo**, **seo-geo**, & **seo-aeo-landing-page-writer**: Optimasi mesin pencari generatif (AI Overviews, ChatGPT Search, Perplexity, `/llms.txt`).
114
+ - **session-handoff-resume**: Penyimpanan checkpoint `STATE_HANDOFF.md` super hemat token dan pemulihan pekerjaan instan saat ganti akun/sesi.
115
+ - **skill-baru**: Template dasar pembuatan skill baru.
116
+ - **supabase-migration**: Pelacakan dan eksekusi migrasi schema database Supabase (lokal dan CLI v2+).
117
+ - **supabase-security-expert**: Audit database relasional, praktik keamanan RLS, dan Supabase Linter.
118
+ - **tailwind-expert**: Aturan styling Tailwind CSS v4 (`@theme`), OKLCH colors, container queries, dan optimasi utilitas.
119
+ - **tanstack-query-expert**: Manajemen state asinkron & caching (TanStack Query v5, `useSuspenseQuery`, Next.js SSR hidrasi, mutasi optimistik).
120
+ - **tauri-expert**: Pengembangan aplikasi Tauri v2 (Rust backend, IPC, capabilities, desktop & mobile).
121
+ - **token-saver**: Protokol penghematan token untuk edisi codebase yang efisien.
122
+ - **ui-ux-pro-max** & **hig**: Desain UI/UX komprehensif (dashboard modern) dan konsistensi Human Interface Guidelines.
123
+ - **ui-ux-expert**: UI/UX Designer & Spesialis Frontend yang berfokus pada layout responsif, tipografi, dan aksesibilitas.
124
+ - **web-scraper**: Ekstraksi data web multi-strategi (Crawl4AI, Playwright, BeautifulSoup, ekstraksi LLM), paginasi, validasi, dan ekspor JSON/CSV/Markdown.
125
+ - **zero-to-prod-orchestrator**: Master orkestrator yang memandu siklus hidup lengkap pembuatan aplikasi dari nol hingga produksi.
package/CHANGELOG.md ADDED
@@ -0,0 +1,195 @@
1
+ # Changelog / Catatan Perubahan
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ *Semua perubahan penting pada proyek ini akan didokumentasikan dalam berkas ini.*
5
+
6
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+ *Format ini didasarkan pada [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), dan proyek ini mematuhi [Semantic Versioning](https://semver.org/spec/v2.0.0.html).*
8
+
9
+ ---
10
+
11
+ ## [1.5.0] - 2026-07-26
12
+
13
+ ### Added / Ditambahkan
14
+ - Added `session-handoff-resume` skill module, providing zero-token loss session continuation across account switches and chat resets via ultra-compact `STATE_HANDOFF.md` checkpoints.
15
+ *(Menambahkan modul skill `session-handoff-resume` untuk menyimpan checkpoint `STATE_HANDOFF.md` super hemat token dan melanjutkan proyek secara instan saat ganti akun/sesi.)*
16
+ - Added `multi-agent-orchestration` skill module, providing expert-level guidelines for multi-agent systems, LangGraph, CrewAI, AutoGen, supervisor routing, state graphs, and Human-in-the-Loop guardrails.
17
+ *(Menambahkan modul skill `multi-agent-orchestration` yang menyediakan pedoman tingkat ahli untuk sistem multi-agen, LangGraph, CrewAI, AutoGen, perutean supervisor, dan gerbang persetujuan manusia.)*
18
+ - Added `design-system-architect` skill module, providing expert-level guidelines for enterprise UI design systems, Design Tokens, Radix UI/Base UI headless primitives, Tailwind CSS v4 `@theme`, CVA variants, and WCAG 2.2 AAA accessibility.
19
+ *(Menambahkan modul skill `design-system-architect` yang menyediakan pedoman tingkat ahli untuk design system UI, Design Tokens, headless primitives Radix UI/Base UI, Tailwind v4 `@theme`, CVA, dan aksesibilitas WCAG 2.2 AAA.)*
20
+ - Added `mcp-server-architect` skill module, providing expert-level guidelines for designing, building, and securing Model Context Protocol (MCP) servers across TypeScript, Python, and Go (stdio/SSE transports, Zod/Pydantic validation, security guardrails).
21
+ *(Menambahkan modul skill `mcp-server-architect` yang menyediakan pedoman tingkat ahli untuk merancang, membangun, dan mengamankan server Model Context Protocol (MCP) pada TypeScript, Python, dan Go.)*
22
+ - Added `go-programming-expert` skill module, providing expert-level guidelines for Go 1.23/1.24+ backend APIs, microservices, concurrency patterns, sqlc, net/http, Gin/Echo/Fiber, gRPC, and table-driven testing.
23
+ *(Menambahkan modul skill `go-programming-expert` yang menyediakan pedoman tingkat ahli untuk Go 1.23/1.24+ backend API, microservices, pola konkurensi, sqlc, net/http, Gin/Echo/Fiber, gRPC, dan testing.)*
24
+ - Added `js-backend-expert` skill module, providing expert-level guidelines for Node.js 22 LTS, Bun 1.2+, Deno 2.x, Fastify 5, Hono, Express 5, NestJS, Prisma 6, Drizzle ORM, WebSockets, and BullMQ background jobs.
25
+ *(Menambahkan modul skill `js-backend-expert` yang menyediakan pedoman tingkat ahli untuk Node.js 22 LTS, Bun 1.2+, Deno 2.x, Fastify 5, Hono, Express 5, NestJS, Prisma 6, Drizzle ORM, WebSocket, dan pemrosesan background job BullMQ.)*
26
+
27
+ ### Changed / Diubah
28
+ - Upgraded all master orchestrator skills (`zero-to-prod-orchestrator`, `app-analyzer-optimizer`, `production-ready-hardener`, `saas-transformer`) to seamlessly integrate and delegate tasks across all newly added 2026 skills (`session-handoff-resume`, `mcp-server-architect`, `multi-agent-orchestration`, `design-system-architect`, `go-programming-expert`, `js-backend-expert`, `seo-geo`).
29
+ *(Memperbarui seluruh skill master orkestrator (`zero-to-prod-orchestrator`, `app-analyzer-optimizer`, `production-ready-hardener`, `saas-transformer`) agar secara otomatis mengintegrasikan dan mendelegasikan tugas ke seluruh skill baru 2026.)*
30
+ - Standardized and updated all 48 skills within `vibes-plug` to match current 2026 technical relevance and industry standards.
31
+ *(Memperbarui dan menyelaraskan seluruh 48 skill di `vibes-plug` agar sesuai dengan relevansi teknis dan standar industri terkini tahun 2026.)*
32
+ - Updated AI/LLM skills (`ai-llm-integration-expert`, `brainstorming`) with Model Context Protocol (MCP), Vercel AI SDK 4.x/5.x, reasoning models (DeepSeek-R1/V3, Gemini 3.5/3.6, Claude 3.7), and HNSW vector search.
33
+ *(Memperbarui skill AI/LLM dengan Model Context Protocol (MCP), Vercel AI SDK 4.x/5.x, model penalaran, dan pencarian vektor HNSW.)*
34
+ - Updated Frontend & Mobile skills (`senior-frontend`, `tailwind-expert`, `mobile-expo-expert`, `tauri-expert`) with Next.js 15+, React 19, Tailwind CSS v4 `@theme`, Expo SDK 52+, React Native 0.76+ New Architecture, and Tauri v2.0+ stable.
35
+ *(Memperbarui skill Frontend & Mobile dengan React 19, Next.js 15+, Tailwind v4, Expo SDK 52+, React Native 0.76+ New Architecture, dan Tauri v2.0+.)*
36
+ - Updated Language & Runtime skills (`python-programming-expert`, `rust-programming-expert`, `bun-runtime-expert`) to Python 3.12/3.13+ (PEP 695 generics, `uv`, `Ruff`), Rust 2024 (v1.85+), and Bun 1.2+.
37
+ *(Memperbarui skill Bahasa & Runtime ke Python 3.12/3.13+, Rust 2024, dan Bun 1.2+.)*
38
+ - Updated Search & Scraping skills (`seo-geo`, `web-scraper`) with Generative Engine Optimization (GEO for AI Overviews, Perplexity, ChatGPT Search) and Crawl4AI / Playwright extraction engines.
39
+ *(Memperbarui skill Search & Scraping dengan Generative Engine Optimization (GEO) dan engine ekstraksi Crawl4AI / Playwright.)*
40
+
41
+ ## [1.4.3] - 2026-07-13
42
+
43
+ ### Added / Ditambahkan
44
+ - Added `mvc-expert` skill module, providing expert-level guidelines to refactor legacy/obsolete PHP spaghetti codebases into modern, secure, and scalable MVC architectures using modern PHP 8.2+ OOP features and PSR standards.
45
+ *(Menambahkan modul skill `mvc-expert` yang menyediakan pedoman tingkat ahli untuk merefaktor codebase PHP spageti lama/usang menjadi arsitektur MVC yang modern, aman, dan skalabel menggunakan fitur OOP PHP 8.2+ modern dan standar PSR.)*
46
+
47
+ ### Changed / Diubah
48
+ - Bumped project and plugin versions to v1.4.3.
49
+ *(Meningkatkan versi proyek dan plugin ke v1.4.3.)*
50
+
51
+ ## [1.4.2] - 2026-07-13
52
+
53
+ ### Changed / Diubah
54
+ - Improved technology version modernization script `update_skills.js` to support matching non-breaking space variants (like `&nbsp;` and `\u0026nbsp;`).
55
+ *(Meningkatkan skrip pencocokan standardisasi teknologi `update_skills.js` agar mendukung pencocokan variasi spasi non-breaking seperti `&nbsp;` dan `\u0026nbsp;`.)*
56
+ - Updated `ui-ux-pro-max` dataset to target Next.js 15 instead of Next.js 14 in non-breaking spaces documentation.
57
+ *(Memperbarui dataset `ui-ux-pro-max` untuk menargetkan Next.js 15 daripada Next.js 14 pada bagian dokumentasi spasi non-breaking.)*
58
+ - Documented missing `auto-doc-updater` and `skill-baru` skills in `README.md` and `BLUEPRINT.md`.
59
+ *(Mendokumentasikan skill `auto-doc-updater` dan `skill-baru` yang sebelumnya belum tercantum di `README.md` dan `BLUEPRINT.md`.)*
60
+ - Bumped project and plugin versions to v1.4.2.
61
+ *(Meningkatkan versi proyek dan plugin ke v1.4.2.)*
62
+
63
+ ## [1.4.1] - 2026-06-30
64
+
65
+ ### Changed / Diubah
66
+ - Updated `ui-ux-expert` and `ui-ux-pro-max` skill modules to add comprehensive design and implementation guidelines for modern, professional, and standard dashboard architectures.
67
+ *(Memperbarui modul skill `ui-ux-expert` dan `ui-ux-pro-max` untuk menambahkan panduan desain dan implementasi komprehensif bagi arsitektur dashboard yang modern, profesional, dan standar.)*
68
+ - Bumped project and plugin versions to v1.4.1.
69
+ *(Meningkatkan versi proyek dan plugin ke v1.4.1.)*
70
+
71
+ ## [1.4.0] - 2026-06-25
72
+
73
+ ### Added / Ditambahkan
74
+ - Added `fullstack-expert` skill module, providing expert-level guidelines for multi-language (TypeScript, Python, Go, Rust), multi-framework (Next.js, FastAPI, Gin, Axum) web development, API design patterns, database architectures, DevOps, and observability.
75
+ *(Menambahkan modul skill `fullstack-expert` yang menyediakan pedoman tingkat ahli untuk pengembangan web multi-bahasa (TypeScript, Python, Go, Rust), multi-framework (Next.js, FastAPI, Gin, Axum), pola desain API, arsitektur database, DevOps, dan observability.)*
76
+ - Added `saas-transformer` master orchestrator skill module to guide systematic 8-phase transformation of standard applications into production-grade multi-tenant SaaS platforms (covering database isolation, billing/Stripe, teams, and feature gating).
77
+ *(Menambahkan modul skill master orkestrator `saas-transformer` untuk memandu transformasi sistematis 8-fase dari aplikasi standar menjadi platform SaaS multi-tenant tingkat produksi (mencakup isolasi database, billing/Stripe, tim, dan feature gating).)*
78
+ - Added `production-ready-hardener` master orchestrator skill module to conduct automated 7-phase application pre-launch audits across security, performance, accessibility, testing, and deployment, including a Python-based diagnostic scanner tool.
79
+ *(Menambahkan modul skill master orkestrator `production-ready-hardener` untuk melakukan audit pra-peluncuran aplikasi 7-fase secara otomatis pada aspek keamanan, performa, aksesibilitas, testing, dan deployment, termasuk alat scanner diagnostik berbasis Python.)*
80
+ - Added/documented missing core skill modules in the plugin index, including `tanstack-query-expert` (asynchronous state management & caching), `web-scraper` (multi-strategy data extraction workflow), `supabase-migration` (database schema migration tracking), `ui-ux-expert` (responsive web design & layout optimization), and `asisten-ramah` (friendly conversational styling).
81
+ *(Menambahkan/mendokumentasikan modul skill inti yang sebelumnya belum tercantum di indeks plugin, termasuk `tanstack-query-expert` (manajemen state asinkron & caching), `web-scraper` (alur kerja ekstraksi data multi-strategi), `supabase-migration` (pelacakan migrasi skema database), `ui-ux-expert` (desain web responsif & optimasi tata letak), dan `asisten-ramah` (gaya percakapan ramah).)*
82
+
83
+ ## [1.3.9] - 2026-06-19
84
+
85
+ ### Changed / Diubah
86
+ - Executed audit and validation across all 29 skill modules in the repository to ensure standardization of frontmatter, modern tech stacks (React 19, Next.js 15, Tailwind CSS v4, TanStack Query v5, Bun v1.1+), trigger conditions formatting, and clean emoji encodings.
87
+ *(Melakukan audit dan validasi di seluruh 29 modul skill dalam repositori untuk memastikan standardisasi frontmatter, stack teknologi modern (React 19, Next.js 15, Tailwind CSS v4, TanStack Query v5, Bun v1.1+), format kondisi pemicu, dan pengodean emoji yang bersih.)*
88
+
89
+ ## [1.3.8] - 2026-06-15
90
+
91
+ ### Added / Ditambahkan
92
+ - Added `secure-fuzz-testing` skill module detailing coverage-guided fuzzing target creation (Atheris for Python, cargo-fuzz for Rust, native Go fuzzing), sanitizers configuration (ASan, MSan, UBSan), diagnostic analysis, and automated DevSecOps CI/CD pipelines integration.
93
+ *(Menambahkan modul skill `secure-fuzz-testing` yang mendetailkan pembuatan target fuzzing berbasis cakupan (Atheris untuk Python, cargo-fuzz untuk Rust, native Go fuzzing), konfigurasi sanitizer (ASan, MSan, UBSan), analisis diagnostik, dan integrasi pipa DevSecOps CI/CD otomatis.)*
94
+
95
+ ## [1.3.7] - 2026-06-15
96
+
97
+ ### Added / Ditambahkan
98
+ - Added `python-programming-expert` skill module detailing Python 3.12+ features, type parameters, generic validation schemas using Pydantic v2, structured concurrency with asyncio TaskGroups, database interactions with SQLAlchemy 2.0 and SQLModel, package management via uv/Poetry, linting with Ruff, and testing with pytest.
99
+ *(Menambahkan modul skill `python-programming-expert` yang mendetailkan fitur Python 3.12+, parameter tipe, skema validasi generik menggunakan Pydantic v2, konkurensi terstruktur dengan asyncio TaskGroups, interaksi database dengan SQLAlchemy 2.0 dan SQLModel, manajemen paket melalui uv/Poetry, linting dengan Ruff, dan pengujian dengan pytest.)*
100
+
101
+ ## [1.3.6] - 2026-06-14
102
+
103
+ ### Changed / Diubah
104
+ - Cleaned up obsolete metadata fields (`github:`, `risk:`, `source:`, and `date_added:`) from all skill definition files in the repository.
105
+ *(Membersihkan bidang metadata usang (`github:`, `risk:`, `source:`, dan `date_added:`) dari seluruh berkas definisi skill di repositori.)*
106
+
107
+ ## [1.3.5] - 2026-06-14
108
+
109
+ ### Changed / Diubah
110
+ - Added header banner image `banner.png` to the top of `README.md`.
111
+ *(Menambahkan gambar banner header `banner.png` di bagian atas `README.md`.)*
112
+
113
+ ## [1.3.4] - 2026-06-14
114
+
115
+ ### Added / Ditambahkan
116
+ - Added `scalability-clean-code` skill module outlining clean coding guidelines (SOLID, readability, DRY, KISS) and scalability architecture principles (Clean Architecture, decoupling, caching, database scale).
117
+ *(Menambahkan modul skill `scalability-clean-code` yang menguraikan pedoman kode bersih (SOLID, readability, DRY, KISS) dan prinsip arsitektur skalabilitas (Clean Architecture, decoupling, caching, database scale).)*
118
+
119
+ ## [1.3.3] - 2026-06-14
120
+
121
+ ### Added / Ditambahkan
122
+ - Added `tailwind-expert` skill module detailing Tailwind CSS v4 CSS-first configuration, OKLCH theme variables, responsive design rules, state modifiers, custom utilities, bundle optimization, and class merging.
123
+ *(Menambahkan modul skill `tailwind-expert` yang merinci konfigurasi CSS-first Tailwind CSS v4, variabel tema OKLCH, aturan desain responsif, modifikator status, utilitas kustom, optimasi bundle, dan penggabungan kelas.)*
124
+
125
+ ## [1.3.2] - 2026-06-14
126
+
127
+ ### Added / Ditambahkan
128
+ - Added `firebase-security-expert` skill module for Firebase security checks, including Firestore/Storage/Realtime Database rules, Service Account safety, GCP API key restrictions, and App Check.
129
+ *(Menambahkan modul skill `firebase-security-expert` untuk pemeriksaan keamanan Firebase, termasuk aturan Firestore/Storage/Realtime Database, keamanan Service Account, pembatasan API key GCP, dan App Check.)*
130
+
131
+ ## [1.3.1] - 2026-06-14
132
+
133
+ ### Added / Ditambahkan
134
+ - Added `CONTRIBUTING.md` containing detailed contribution guidelines for fork developers to create and submit new skills.
135
+ *(Menambahkan `CONTRIBUTING.md` yang berisi panduan kontribusi terperinci bagi pengembang fork untuk membuat dan mengirimkan skill baru.)*
136
+
137
+ ### Changed / Diubah
138
+ - Synced the metadata version in `plugin.json` to match the project version of `1.3.1`.
139
+ *(Menyelaraskan versi metadata di `plugin.json` agar sesuai dengan versi proyek `1.3.1`.)*
140
+
141
+ ## [1.3.0] - 2026-06-12
142
+
143
+ ### Added / Ditambahkan
144
+ - Added `token-saver` skill to enforce concise AI responses and minimal codebase rewrites.
145
+ *(Menambahkan skill `token-saver` untuk memaksakan respons AI yang ringkas dan meminimalkan penulisan ulang kode.)*
146
+ - Added `tauri-expert` skill outlining Tauri v2 best practices, IPC communication, and security capabilities.
147
+ *(Menambahkan skill `tauri-expert` yang menguraikan praktik terbaik Tauri v2, komunikasi IPC, dan kemampuan keamanan.)*
148
+ - Added `prd-architect` skill serving as a mandatory guardrail to generate and validate Product Requirements Documents (PRD) before generating code for new projects.
149
+ *(Menambahkan skill `prd-architect` yang berfungsi sebagai guardrail wajib untuk membuat dan memvalidasi Product Requirements Document (PRD) sebelum menghasilkan kode untuk proyek baru.)*
150
+
151
+ ### Changed / Diubah
152
+ - Standardized all 23 skill metadata (frontmatter) formats across the plugin.
153
+ *(Menstandardisasi semua 23 format metadata (frontmatter) skill di seluruh plugin.)*
154
+ - Standardized the trigger header to `## Kondisi Pemicu` in all skills.
155
+ *(Menstandardisasi header pemicu menjadi `## Kondisi Pemicu` di semua skill.)*
156
+ - Broadly updated technical relevance in existing skills (bumped to React 19, Next.js 15, Tailwind v4, TanStack Query v5, Bun v1.1+).
157
+ *(Memperbarui relevansi teknis secara luas pada skill yang ada (ditingkatkan ke React 19, Next.js 15, Tailwind v4, TanStack Query v5, Bun v1.1+).)*
158
+ - Fixed markdown script paths in `ui-ux-pro-max` and emoji encoding issues in `ui_ux_expert`.
159
+ *(Memperbaiki path skrip markdown di `ui-ux-pro-max` dan masalah pengkodean emoji di `ui_ux_expert`.)*
160
+
161
+ ## [1.2.6] - 2026-05-24
162
+
163
+ ### Added / Ditambahkan
164
+ - Created a new `rust-programming-expert` skill module for Rust programming (Rust 2024 / v1.85+).
165
+ *(Membuat modul skill baru `rust-programming-expert` untuk pemrograman Rust (Rust 2024 / v1.85+).)*
166
+
167
+ ## [1.2.5] - 2026-05-24
168
+
169
+ ### Added / Ditambahkan
170
+ - Created a new `bun-runtime-expert` skill module for Bun runtime (v1.3+).
171
+ *(Membuat modul skill baru `bun-runtime-expert` untuk runtime Bun (v1.3+).)*
172
+
173
+ ## [1.2.4] - 2026-05-24
174
+
175
+ ### Changed / Diubah
176
+ - Updated the `brainstorming` skill with 2026 modern web architecture guidance.
177
+ *(Memperbarui skill `brainstorming` dengan panduan arsitektur web modern 2026.)*
178
+
179
+ ## [1.2.3] - 2026-05-24
180
+
181
+ ### Changed / Diubah
182
+ - Updated the `senior-frontend` skill to target React 19 / Next.js 15 / Tailwind CSS v4.
183
+ *(Memperbarui skill `senior-frontend` untuk menargetkan React 19 / Next.js 15 / Tailwind CSS v4.)*
184
+
185
+ ## [1.2.2] - 2026-05-24
186
+
187
+ ### Changed / Diubah
188
+ - Comprehensively updated the `senior-fullstack` skill with professional, production-grade architectural guidance and code.
189
+ *(Memperbarui secara komprehensif skill `senior-fullstack` dengan panduan arsitektur dan kode tingkat produksi profesional.)*
190
+
191
+ ## [1.2.1] - 2026-05-24
192
+
193
+ ### Changed / Diubah
194
+ - Updated the `saas-mvp-launcher` skill file with state-of-the-art 2026 patterns.
195
+ *(Memperbarui file skill `saas-mvp-launcher` dengan pola mutakhir 2026.)*
@@ -0,0 +1,199 @@
1
+ # Contribution Guide / Panduan Kontribusi
2
+
3
+ [English](#english) | [Bahasa Indonesia](#bahasa-indonesia)
4
+
5
+ ---
6
+
7
+ <a name="english"></a>
8
+ ## English
9
+
10
+ Thank you for contributing to **Vibes Plug**! This guide is designed to make it easy for you if you have *forked* this repository on GitHub to add or update *skills* according to proper standards.
11
+
12
+ ### Contribution Flow (Step-by-Step)
13
+
14
+ #### 1. Sync Your Local Repository
15
+ Ensure your local repository is connected to the main repository (*upstream*) to get the latest updates.
16
+
17
+ If you haven't added the main repository as an *upstream* remote, run the following command in your terminal/PowerShell inside the `vibes-plug` directory:
18
+
19
+ ```bash
20
+ # Add upstream remote
21
+ git remote add upstream https://github.com/roedyrustam/vibes-plug.git
22
+ ```
23
+
24
+ Before you start creating a new skill, sync your local `main` branch with upstream:
25
+
26
+ ```bash
27
+ # Switch to main branch
28
+ git checkout main
29
+
30
+ # Pull the latest updates from upstream
31
+ git pull upstream main
32
+
33
+ # Sync it to your GitHub fork (origin)
34
+ git push origin main
35
+ ```
36
+
37
+ #### 2. Create a New Branch
38
+ Always create a new, descriptive branch for the changes you want to make:
39
+
40
+ ```bash
41
+ git checkout -b feat/add-skill-<skill-name>
42
+ # Example: git checkout -b feat/add-skill-fast-api
43
+ ```
44
+
45
+ #### 3. Create a New Skill Module
46
+ 1. Navigate to the `skills/` directory.
47
+ 2. Create a new folder with your skill name using **kebab-case** (e.g., `skills/fast-api`).
48
+ 3. Create a `SKILL.md` file inside that folder. You can copy the template from [SKILL.md](file:///c:/Users/roedy/.gemini/config/plugins/vibes-plug/skills/skill_baru/SKILL.md).
49
+
50
+ Set up the metadata (frontmatter) at the very top of the `SKILL.md` file:
51
+
52
+ ```yaml
53
+ ---
54
+ name: kebab-case-skill-name
55
+ description: "Short English description / Deskripsi singkat"
56
+ author: "Your Name or GitHub Username"
57
+ ---
58
+ ```
59
+
60
+ The document body must have the following sections:
61
+ - `# Skill Name`
62
+ - `## Description`
63
+ - `## Instructions` (Contains detailed guidelines, code styling rules, etc.)
64
+ - `## Trigger Conditions` (Conditions/context under which this skill should be activated by the agent)
65
+
66
+ #### 4. Register the Skill in README.md and BLUEPRINT.md
67
+ To make your new skill recognized and easily discoverable:
68
+ 1. **`README.md`**: Register your skill in the **Features and Available Skills** section under the relevant category.
69
+ 2. **`BLUEPRINT.md`**: Register your skill module in the **Skill Modules** section.
70
+
71
+ #### 5. Run the Standardization Script
72
+ We provide an automated script to format markdown, align technology stack versions (e.g., React 19, Next.js 15), and fix emoji encoding issues.
73
+
74
+ Run the following command before committing:
75
+
76
+ ```bash
77
+ node scripts/update_skills.js
78
+ ```
79
+
80
+ Ensure the script runs successfully and check if any of your new skill files were updated.
81
+
82
+ #### 6. Commit and Push Changes
83
+ Once everything is neat and validated, commit your changes:
84
+
85
+ ```bash
86
+ git add .
87
+ git commit -m "feat: add skill <skill-name>"
88
+ git push origin feat/add-skill-<skill-name>
89
+ ```
90
+
91
+ #### 7. Create a Pull Request (PR)
92
+ 1. Open your forked repository page on GitHub (e.g., `https://github.com/username/vibes-plug`).
93
+ 2. You will see a yellow button saying **"Compare & pull request"**. Click that button.
94
+ 3. Provide a clear description of the purpose and utility of the skill you added.
95
+ 4. Submit your Pull Request (PR) to the `main` branch of the original repository (`roedyrustam/vibes-plug`).
96
+
97
+ ### Additional Rules & Tips
98
+ > [!NOTE]
99
+ > - Ensure instructions are written in a clear and instructive language.
100
+ > - Avoid duplicate instructions with existing skills. If your skill is similar, consider updating an existing skill instead.
101
+ > - Do not include extra frontmatter fields other than `name`, `description`, and `author`, as they will be cleaned automatically by the `update_skills.js` script.
102
+
103
+ ---
104
+
105
+ <a name="bahasa-indonesia"></a>
106
+ ## Bahasa Indonesia
107
+
108
+ Terima kasih telah berkontribusi ke **Vibes Plug**! Panduan ini dirancang khusus untuk mempermudah Anda yang telah melakukan *fork* repositori ini di GitHub agar dapat menambahkan atau memperbarui *skills* dengan standar yang sesuai.
109
+
110
+ ### Alur Kontribusi (Step-by-Step)
111
+
112
+ #### 1. Sinkronisasi Repositori Lokal Anda
113
+ Pastikan repositori lokal Anda terhubung dengan repositori utama (*upstream*) agar selalu mendapatkan pembaruan terbaru.
114
+
115
+ Jika Anda belum menambahkan repositori utama sebagai *upstream*, jalankan perintah berikut di terminal/PowerShell di dalam direktori `vibes-plug`:
116
+
117
+ ```bash
118
+ # Tambahkan remote upstream
119
+ git remote add upstream https://github.com/roedyrustam/vibes-plug.git
120
+ ```
121
+
122
+ Sebelum mulai membuat skill baru, lakukan sinkronisasi branch `main` lokal Anda dengan upstream:
123
+
124
+ ```bash
125
+ # Pindah ke branch main
126
+ git checkout main
127
+
128
+ # Tarik pembaruan terbaru dari upstream
129
+ git pull upstream main
130
+
131
+ # Sinkronisasikan ke fork GitHub Anda (origin)
132
+ git push origin main
133
+ ```
134
+
135
+ #### 2. Buat Branch Baru
136
+ Selalu buat branch baru yang deskriptif untuk perubahan yang ingin Anda lakukan:
137
+
138
+ ```bash
139
+ git checkout -b feat/add-skill-<nama-skill>
140
+ # Contoh: git checkout -b feat/add-skill-fast-api
141
+ ```
142
+
143
+ #### 3. Buat Modul Skill Baru
144
+ 1. Masuk ke direktori `skills/`.
145
+ 2. Buat folder baru dengan nama skill Anda menggunakan format **kebab-case** (misalnya `skills/fast-api`).
146
+ 3. Buat file `SKILL.md` di dalam folder tersebut. Anda bisa menyalin template dari [SKILL.md](file:///c:/Users/roedy/.gemini/config/plugins/vibes-plug/skills/skill_baru/SKILL.md).
147
+
148
+ Atur format metadata (frontmatter) di bagian paling atas file `SKILL.md`:
149
+
150
+ ```yaml
151
+ ---
152
+ name: nama-skill-kebab-case
153
+ description: "Deskripsi singkat / Short description"
154
+ author: "Nama Anda atau Username GitHub"
155
+ ---
156
+ ```
157
+
158
+ Struktur isi dokumen harus memiliki bagian berikut:
159
+ - `# Nama Skill`
160
+ - `## Deskripsi`
161
+ - `## Instruksi` (Berisi panduan detail, aturan penulisan kode, dll.)
162
+ - `## Kondisi Pemicu` (Kondisi/konteks kapan skill ini harus diaktifkan oleh agen)
163
+
164
+ #### 4. Daftarkan Skill di README.md dan BLUEPRINT.md
165
+ Agar skill baru Anda dikenali dan mudah ditemukan:
166
+ 1. **`README.md`**: Daftarkan skill Anda di bagian **Fitur dan Skills yang Tersedia** di bawah kategori yang relevan.
167
+ 2. **`BLUEPRINT.md`**: Daftarkan modul skill Anda di bagian **Skill Modules**.
168
+
169
+ #### 5. Jalankan Script Standardisasi
170
+ Kami menyediakan script otomatis untuk merapikan markdown, menyelaraskan versi stack teknologi (misal React 19, Next.js 15), serta memperbaiki isu encoding emoji.
171
+
172
+ Jalankan perintah berikut sebelum melakukan commit:
173
+
174
+ ```bash
175
+ node scripts/update_skills.js
176
+ ```
177
+
178
+ Pastikan script berjalan dengan sukses dan laporkan jika ada file skill baru Anda yang diperbarui.
179
+
180
+ #### 6. Commit dan Push Perubahan
181
+ Setelah semuanya rapi dan tervalidasi, commit perubahan Anda:
182
+
183
+ ```bash
184
+ git add .
185
+ git commit -m "feat: add skill <nama-skill>"
186
+ git push origin feat/add-skill-<nama-skill>
187
+ ```
188
+
189
+ #### 7. Buat Pull Request (PR)
190
+ 1. Buka halaman repositori hasil fork Anda di GitHub (misal: `https://github.com/username/vibes-plug`).
191
+ 2. Anda akan melihat tombol kuning bertuliskan **"Compare & pull request"**. Klik tombol tersebut.
192
+ 3. Berikan deskripsi yang jelas mengenai tujuan dan kegunaan dari skill yang Anda tambahkan.
193
+ 4. Kirim Pull Request (PR) Anda ke branch `main` repositori asal (`roedyrustam/vibes-plug`).
194
+
195
+ ### Aturan Tambahan & Tips
196
+ > [!NOTE]
197
+ > - Pastikan instruksi ditulis dengan bahasa yang jelas dan instruktif.
198
+ > - Hindari duplikasi instruksi dengan skill yang sudah ada. Jika skill Anda mirip, pertimbangkan untuk memperbarui skill yang telah ada.
199
+ > - Jangan menyertakan frontmatter tambahan di luar `name`, `description`, dan `author`, karena akan dibersihkan secara otomatis oleh script `update_skills.js`.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 roedy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.