@su-record/vibe 2.7.20 → 2.7.21
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.
- package/README.md +156 -57
- package/agents/qa/qa-coordinator.md +131 -0
- package/commands/vibe.review.md +79 -0
- package/commands/vibe.run.md +68 -9
- package/commands/vibe.spec.review.md +48 -8
- package/commands/vibe.verify.md +26 -0
- package/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +4 -12
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/postinstall/claude-agents.d.ts.map +1 -1
- package/dist/cli/postinstall/claude-agents.js +1 -0
- package/dist/cli/postinstall/claude-agents.js.map +1 -1
- package/dist/cli/postinstall/codex-agents.d.ts +18 -6
- package/dist/cli/postinstall/codex-agents.d.ts.map +1 -1
- package/dist/cli/postinstall/codex-agents.js +78 -16
- package/dist/cli/postinstall/codex-agents.js.map +1 -1
- package/dist/cli/postinstall/constants.d.ts.map +1 -1
- package/dist/cli/postinstall/constants.js +17 -14
- package/dist/cli/postinstall/constants.js.map +1 -1
- package/dist/cli/postinstall/index.d.ts +1 -1
- package/dist/cli/postinstall/index.d.ts.map +1 -1
- package/dist/cli/postinstall/index.js +1 -1
- package/dist/cli/postinstall/index.js.map +1 -1
- package/dist/cli/postinstall/main.d.ts.map +1 -1
- package/dist/cli/postinstall/main.js +4 -8
- package/dist/cli/postinstall/main.js.map +1 -1
- package/dist/cli/postinstall.d.ts +1 -1
- package/dist/cli/postinstall.d.ts.map +1 -1
- package/dist/cli/postinstall.js +1 -1
- package/dist/cli/postinstall.js.map +1 -1
- package/dist/cli/types.d.ts +1 -0
- package/dist/cli/types.d.ts.map +1 -1
- package/dist/cli/utils/cli-detector.d.ts +1 -0
- package/dist/cli/utils/cli-detector.d.ts.map +1 -1
- package/dist/cli/utils/cli-detector.js +1 -0
- package/dist/cli/utils/cli-detector.js.map +1 -1
- package/dist/infra/lib/ComponentRegistry.d.ts +35 -0
- package/dist/infra/lib/ComponentRegistry.d.ts.map +1 -0
- package/dist/infra/lib/ComponentRegistry.js +59 -0
- package/dist/infra/lib/ComponentRegistry.js.map +1 -0
- package/dist/infra/lib/ReviewRace.d.ts.map +1 -1
- package/dist/infra/lib/ReviewRace.js +11 -7
- package/dist/infra/lib/ReviewRace.js.map +1 -1
- package/dist/infra/lib/__tests__/ComponentRegistry.test.d.ts +2 -0
- package/dist/infra/lib/__tests__/ComponentRegistry.test.d.ts.map +1 -0
- package/dist/infra/lib/__tests__/ComponentRegistry.test.js +99 -0
- package/dist/infra/lib/__tests__/ComponentRegistry.test.js.map +1 -0
- package/dist/infra/lib/evolution/DescriptionOptimizer.d.ts +45 -0
- package/dist/infra/lib/evolution/DescriptionOptimizer.d.ts.map +1 -1
- package/dist/infra/lib/evolution/DescriptionOptimizer.js +151 -0
- package/dist/infra/lib/evolution/DescriptionOptimizer.js.map +1 -1
- package/dist/infra/lib/evolution/__tests__/eval.test.js +64 -0
- package/dist/infra/lib/evolution/__tests__/eval.test.js.map +1 -1
- package/dist/infra/lib/gpt/chat.d.ts.map +1 -1
- package/dist/infra/lib/gpt/chat.js +8 -0
- package/dist/infra/lib/gpt/chat.js.map +1 -1
- package/dist/infra/lib/gpt/specializations.d.ts.map +1 -1
- package/dist/infra/lib/gpt/specializations.js +5 -0
- package/dist/infra/lib/gpt/specializations.js.map +1 -1
- package/dist/infra/lib/llm-availability.d.ts +21 -0
- package/dist/infra/lib/llm-availability.d.ts.map +1 -0
- package/dist/infra/lib/llm-availability.js +57 -0
- package/dist/infra/lib/llm-availability.js.map +1 -0
- package/dist/infra/lib/memory/IMemoryStorage.d.ts +16 -0
- package/dist/infra/lib/memory/IMemoryStorage.d.ts.map +1 -0
- package/dist/infra/lib/memory/IMemoryStorage.js +7 -0
- package/dist/infra/lib/memory/IMemoryStorage.js.map +1 -0
- package/dist/infra/lib/memory/InMemoryStorage.d.ts +13 -0
- package/dist/infra/lib/memory/InMemoryStorage.d.ts.map +1 -0
- package/dist/infra/lib/memory/InMemoryStorage.js +44 -0
- package/dist/infra/lib/memory/InMemoryStorage.js.map +1 -0
- package/dist/infra/lib/memory/MemoryStorage.d.ts +2 -1
- package/dist/infra/lib/memory/MemoryStorage.d.ts.map +1 -1
- package/dist/infra/lib/memory/MemoryStorage.js.map +1 -1
- package/dist/infra/lib/memory/__tests__/InMemoryStorage.test.d.ts +2 -0
- package/dist/infra/lib/memory/__tests__/InMemoryStorage.test.d.ts.map +1 -0
- package/dist/infra/lib/memory/__tests__/InMemoryStorage.test.js +114 -0
- package/dist/infra/lib/memory/__tests__/InMemoryStorage.test.js.map +1 -0
- package/dist/infra/lib/memory/index.d.ts +2 -0
- package/dist/infra/lib/memory/index.d.ts.map +1 -1
- package/dist/infra/lib/memory/index.js +1 -0
- package/dist/infra/lib/memory/index.js.map +1 -1
- package/dist/infra/lib/telemetry/SkillTelemetry.d.ts +8 -0
- package/dist/infra/lib/telemetry/SkillTelemetry.d.ts.map +1 -1
- package/dist/infra/lib/telemetry/SkillTelemetry.js +40 -0
- package/dist/infra/lib/telemetry/SkillTelemetry.js.map +1 -1
- package/dist/infra/lib/telemetry/SkillTelemetry.test.js +33 -0
- package/dist/infra/lib/telemetry/SkillTelemetry.test.js.map +1 -1
- package/dist/infra/lib/telemetry/VibeSpan.d.ts +20 -0
- package/dist/infra/lib/telemetry/VibeSpan.d.ts.map +1 -0
- package/dist/infra/lib/telemetry/VibeSpan.js +26 -0
- package/dist/infra/lib/telemetry/VibeSpan.js.map +1 -0
- package/dist/infra/orchestrator/MultiLlmResearch.d.ts.map +1 -1
- package/dist/infra/orchestrator/MultiLlmResearch.js +49 -40
- package/dist/infra/orchestrator/MultiLlmResearch.js.map +1 -1
- package/dist/infra/orchestrator/SmartRouter.d.ts.map +1 -1
- package/dist/infra/orchestrator/SmartRouter.js +4 -3
- package/dist/infra/orchestrator/SmartRouter.js.map +1 -1
- package/dist/infra/orchestrator/types.d.ts +8 -0
- package/dist/infra/orchestrator/types.d.ts.map +1 -1
- package/dist/infra/orchestrator/types.js +36 -0
- package/dist/infra/orchestrator/types.js.map +1 -1
- package/dist/tools/index.d.ts +6 -0
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +5 -0
- package/dist/tools/index.js.map +1 -1
- package/hooks/hooks.json +4 -0
- package/hooks/scripts/codex-detect.js +46 -0
- package/hooks/scripts/codex-review-gate.js +80 -0
- package/hooks/scripts/llm-orchestrate.js +9 -5
- package/package.json +1 -1
- package/skills/arch-guard/SKILL.md +1 -1
- package/skills/brand-assets/SKILL.md +1 -1
- package/skills/capability-loop/SKILL.md +1 -1
- package/skills/characterization-test/SKILL.md +1 -1
- package/skills/commerce-patterns/SKILL.md +1 -1
- package/skills/e2e-commerce/SKILL.md +1 -1
- package/skills/exec-plan/SKILL.md +1 -1
- package/skills/parallel-research/SKILL.md +1 -1
- package/skills/seo-checklist/SKILL.md +1 -1
- package/skills/ui-ux-pro-max/SKILL.md +1 -1
- package/skills/video-production/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: arch-guard
|
|
3
|
-
description: "Generate architecture boundary tests that mechanically enforce layer constraints."
|
|
3
|
+
description: "Generate architecture boundary tests that mechanically enforce layer constraints. Use when adding new modules, refactoring layers, or after detecting circular dependencies. Creates import-rule tests (e.g., 'UI must not import DB') that fail CI on violation. Must use this skill when user mentions layer enforcement, dependency rules, or architectural boundaries — even casually like 'make sure services don't import controllers'."
|
|
4
4
|
triggers: [arch guard, architecture test, layer test, boundary test, structural test, arch validation]
|
|
5
5
|
priority: 60
|
|
6
6
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: brand-assets
|
|
3
|
-
description: "Auto-generate app icons
|
|
3
|
+
description: "Auto-generate app icons (iOS/Android/PWA), favicons, and OG images from SPEC brand information using Gemini Image API. Use when the project needs visual brand assets, when user mentions 'icon', 'favicon', 'logo', or 'brand assets', or when a SPEC defines brand colors/identity but no assets exist yet. Outputs multiple sizes and formats ready for deployment. Not for complex illustration or marketing graphics — focused on app identity assets."
|
|
4
4
|
triggers: [icon, favicon, brand, logo, app icon, branding, assets]
|
|
5
5
|
priority: 65
|
|
6
6
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: capability-loop
|
|
3
|
-
description: "When an agent fails, diagnose which capability is missing and build it into the repo."
|
|
3
|
+
description: "When an agent fails, diagnose which capability is missing and build it into the repo. Activates after repeated agent failures, tool errors, or when a task keeps failing in the same way. Analyzes failure transcripts, identifies the missing guardrail/tool/abstraction/doc, and creates it permanently. Use this skill whenever you see 3+ similar failures, an agent hitting the same wall repeatedly, or the user asking 'why does this keep failing'."
|
|
4
4
|
triggers: [capability loop, failure loop, build capability, missing capability, agent failed, why did it fail]
|
|
5
5
|
priority: 75
|
|
6
6
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: characterization-test
|
|
3
|
-
description: "Lock existing behavior with characterization tests before modifying code."
|
|
3
|
+
description: "Lock existing behavior with characterization tests before modifying code. Use BEFORE any refactor, rewrite, or large-scale modification of existing code — especially legacy code without tests. Captures current input/output behavior as test cases so regressions are caught immediately. Must use this skill when touching files >200 lines with no existing tests, when user says 'refactor', 'rewrite', 'modernize', or 'clean up' existing code."
|
|
4
4
|
triggers: [legacy, characterization test, lock behavior, regression prevention, before refactor, large file]
|
|
5
5
|
priority: 65
|
|
6
6
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: commerce-patterns
|
|
3
|
-
description: "E-commerce domain patterns
|
|
3
|
+
description: "E-commerce domain patterns — cart management, payment processing (Toss/Stripe/PG), inventory tracking, and order state machines with transaction safety. Use when implementing any shopping cart, checkout flow, payment integration, stock management, or order lifecycle. Covers idempotency keys, double-charge prevention, stock reservation, and refund flows. Must use this skill when the codebase involves e-commerce — even for seemingly simple 'add to cart' features."
|
|
4
4
|
triggers: [commerce, ecommerce, cart, payment, checkout, inventory, stock, order, pg, toss, stripe]
|
|
5
5
|
priority: 70
|
|
6
6
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: e2e-commerce
|
|
3
|
-
description: "E2E test scenarios for commerce checkout and payment flows"
|
|
3
|
+
description: "E2E test scenarios for commerce checkout and payment flows. Provides ready-made Playwright test templates for cart→checkout→payment→confirmation flows, including PG sandbox testing (Toss/Stripe), error scenarios (payment failure, timeout, stock exhaustion), and idempotency verification. Use when writing E2E tests for any e-commerce feature — checkout, payment, order status, or refund flows."
|
|
4
4
|
triggers: [e2e commerce, checkout test, payment test, order flow test]
|
|
5
5
|
priority: 65
|
|
6
6
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: exec-plan
|
|
3
|
-
description: "Convert SPEC into a self-contained execution plan that agents can run autonomously for hours."
|
|
3
|
+
description: "Convert SPEC into a self-contained execution plan that agents can run autonomously for hours. Use when a SPEC has 3+ phases, multiple files to change, or complex dependencies between tasks. Produces a plan with explicit file paths, interface extracts, and acceptance criteria so agents never need to 'figure out' context. Must use this skill when launching long-running autonomous work, parallelizing implementation across agents, or when user says 'execute this spec' or 'run this plan'."
|
|
4
4
|
triggers: [exec plan, execution plan, autonomous plan, self-contained plan, long-running]
|
|
5
5
|
priority: 70
|
|
6
6
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: parallel-research
|
|
3
|
-
description: "Parallel research
|
|
3
|
+
description: "Parallel research with 4 specialized agents (best-practices, framework-docs, codebase-patterns, security-advisory) running simultaneously. Use when facing unfamiliar technology, choosing between libraries/frameworks, designing architecture for a new feature, or investigating security implications. Must use this skill when user asks 'how should we build X', 'which library for Y', or when starting work on a complex feature with unknown requirements. Not for simple lookups — use web search directly for those."
|
|
4
4
|
triggers: [parallel research, complex feature, technology selection, architecture design, security critical]
|
|
5
5
|
priority: 60
|
|
6
6
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: seo-checklist
|
|
3
|
-
description: "SEO gotchas for web development
|
|
3
|
+
description: "SEO gotchas for web development — easy-to-miss items that hurt search ranking. Covers meta tags, Open Graph, structured data (JSON-LD), sitemap, robots.txt, canonical URLs, and Naver/Google-specific requirements. Use when building or reviewing any public-facing web page, landing page, or marketing site. Must use this skill when user mentions SEO, search ranking, meta tags, or when deploying a web app that needs to be discoverable."
|
|
4
4
|
triggers: [seo, search, meta, sitemap, schema, structured data, og, opengraph, google, naver]
|
|
5
5
|
priority: 65
|
|
6
6
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ui-ux-pro-max
|
|
3
|
-
description: "UI/UX design intelligence with bold aesthetic direction. 50+ styles, 97 palettes, 57 font pairings, 99 UX guidelines, 25 chart types across 9 stacks."
|
|
3
|
+
description: "UI/UX design intelligence with bold aesthetic direction. Searchable database: 50+ styles, 97 color palettes, 57 font pairings, 99 UX guidelines, 25 chart types across 9 stacks (React, Vue, Svelte, Angular, Astro, Next.js, Flutter, Swift, Kotlin). Use when building any UI component, choosing color schemes, selecting typography, applying design patterns, or reviewing UX compliance. Must use this skill when user builds frontend — pages, components, dashboards, or landing pages — to ensure design quality beyond generic AI output."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# UI/UX Pro Max - Design Intelligence
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: video-production
|
|
3
|
-
description: "Video processing gotchas — FFmpeg, transcoding, streaming,
|
|
3
|
+
description: "Video processing gotchas — FFmpeg commands, transcoding pipelines, HLS/DASH streaming setup, subtitle embedding (SRT/VTT), and thumbnail extraction. Use when the project involves any video manipulation, media processing, or streaming infrastructure. Covers codec selection, bitrate optimization, and common FFmpeg pitfalls. Must use this skill when user works with video files, mentions FFmpeg, or needs media processing — even for simple tasks like 'generate a thumbnail'."
|
|
4
4
|
triggers: [video, ffmpeg, transcode, encode, stream, media, subtitle, thumbnail, hls, dash]
|
|
5
5
|
priority: 60
|
|
6
6
|
---
|