just-vibe 0.7.0 → 0.8.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.
- package/CHANGELOG.md +16 -0
- package/README.md +28 -7
- package/docs/command-quality.md +8 -2
- package/docs/compatibility.md +6 -0
- package/docs/technical-audit.md +40 -0
- package/docs/technical-coverage.md +326 -0
- package/evals/README.md +7 -1
- package/evals/releases/0.8.0-technical-guidance.md +23 -0
- package/evals/releases/0.8.0.md +39 -0
- package/evals/scenarios.json +1765 -216
- package/evals/security/README.md +19 -0
- package/evals/security/controls.mjs +66 -0
- package/evals/security/fixtures/harbor/service.mjs +37 -0
- package/evals/security/fixtures/orbit/service.mjs +33 -0
- package/evals/security/run.mjs +2 -0
- package/package.json +3 -2
- package/plugins/just-vibe/.claude-plugin/plugin.json +1 -1
- package/plugins/just-vibe/.codex-plugin/plugin.json +1 -1
- package/plugins/just-vibe/catalog/commands.json +2268 -357
- package/plugins/just-vibe/references/command-reference.md +3 -2
- package/plugins/just-vibe/references/daily-workflows.md +5 -1
- package/plugins/just-vibe/references/decision-history.md +23 -0
- package/plugins/just-vibe/references/execution.md +2 -0
- package/plugins/just-vibe/references/experiments.md +39 -0
- package/plugins/just-vibe/references/instruction-memory.md +3 -1
- package/plugins/just-vibe/references/intent-workflows.md +39 -0
- package/plugins/just-vibe/references/memory-checks.md +57 -0
- package/plugins/just-vibe/references/packs/general.md +4 -0
- package/plugins/just-vibe/references/packs/security.md +4 -0
- package/plugins/just-vibe/references/packs/testing.md +4 -0
- package/plugins/just-vibe/references/practice.md +35 -0
- package/plugins/just-vibe/references/profiles.md +2 -0
- package/plugins/just-vibe/references/proofs.md +43 -0
- package/plugins/just-vibe/references/runtime.md +6 -0
- package/plugins/just-vibe/references/scenarios/language-review.md +37 -0
- package/plugins/just-vibe/references/security/files.md +31 -0
- package/plugins/just-vibe/references/security/frameworks.md +45 -0
- package/plugins/just-vibe/references/security/identity.md +47 -0
- package/plugins/just-vibe/references/security/injection.md +66 -0
- package/plugins/just-vibe/references/security/review.md +43 -0
- package/plugins/just-vibe/references/security/scanners.md +41 -0
- package/plugins/just-vibe/references/security/supply-chain.md +25 -0
- package/plugins/just-vibe/references/task-undo.md +29 -0
- package/plugins/just-vibe/references/validation.md +10 -0
- package/plugins/just-vibe/references/working-alternatives.md +37 -0
- package/plugins/just-vibe/scripts/lib/catalog.mjs +6 -0
- package/plugins/just-vibe/scripts/lib/decisions.mjs +186 -0
- package/plugins/just-vibe/scripts/lib/evidence.mjs +7 -4
- package/plugins/just-vibe/scripts/lib/experiments.mjs +396 -0
- package/plugins/just-vibe/scripts/lib/intent-runtime.mjs +109 -0
- package/plugins/just-vibe/scripts/lib/memory.mjs +591 -0
- package/plugins/just-vibe/scripts/lib/practice.mjs +280 -0
- package/plugins/just-vibe/scripts/lib/proof.mjs +304 -0
- package/plugins/just-vibe/scripts/lib/routing.mjs +5 -0
- package/plugins/just-vibe/scripts/lib/storage.mjs +4 -3
- package/plugins/just-vibe/scripts/lib/tasks.mjs +243 -0
- package/plugins/just-vibe/scripts/lib/workbench.mjs +427 -0
- package/plugins/just-vibe/scripts/lib/workspaces.mjs +579 -0
- package/plugins/just-vibe/scripts/preview-worker.mjs +108 -0
- package/plugins/just-vibe/scripts/toolkit.mjs +17 -2
- package/plugins/just-vibe/skills/api-breaking/SKILL.md +7 -0
- package/plugins/just-vibe/skills/api-client/SKILL.md +7 -0
- package/plugins/just-vibe/skills/api-contract-test/SKILL.md +7 -0
- package/plugins/just-vibe/skills/api-design/SKILL.md +11 -0
- package/plugins/just-vibe/skills/api-errors/SKILL.md +7 -0
- package/plugins/just-vibe/skills/api-openapi/SKILL.md +7 -0
- package/plugins/just-vibe/skills/api-pagination/SKILL.md +7 -0
- package/plugins/just-vibe/skills/api-webhooks/SKILL.md +11 -0
- package/plugins/just-vibe/skills/arch-boundaries/SKILL.md +7 -0
- package/plugins/just-vibe/skills/arch-contracts/SKILL.md +7 -0
- package/plugins/just-vibe/skills/arch-event-flow/SKILL.md +7 -0
- package/plugins/just-vibe/skills/arch-feature/SKILL.md +7 -0
- package/plugins/just-vibe/skills/arch-map/SKILL.md +7 -0
- package/plugins/just-vibe/skills/arch-modernize/SKILL.md +7 -0
- package/plugins/just-vibe/skills/arch-scale/SKILL.md +7 -0
- package/plugins/just-vibe/skills/arch-tenancy/SKILL.md +11 -0
- package/plugins/just-vibe/skills/auto/SKILL.md +12 -3
- package/plugins/just-vibe/skills/automate/SKILL.md +7 -0
- package/plugins/just-vibe/skills/backend-auth/SKILL.md +9 -0
- package/plugins/just-vibe/skills/backend-cache/SKILL.md +7 -0
- package/plugins/just-vibe/skills/backend-concurrency/SKILL.md +11 -0
- package/plugins/just-vibe/skills/backend-idempotency/SKILL.md +7 -0
- package/plugins/just-vibe/skills/backend-jobs/SKILL.md +7 -0
- package/plugins/just-vibe/skills/backend-permissions/SKILL.md +11 -0
- package/plugins/just-vibe/skills/backend-resilience/SKILL.md +7 -0
- package/plugins/just-vibe/skills/backend-service/SKILL.md +12 -0
- package/plugins/just-vibe/skills/brainstorm/SKILL.md +7 -0
- package/plugins/just-vibe/skills/build/SKILL.md +11 -0
- package/plugins/just-vibe/skills/challenge/SKILL.md +7 -0
- package/plugins/just-vibe/skills/checkpoint/SKILL.md +9 -0
- package/plugins/just-vibe/skills/ci/SKILL.md +7 -0
- package/plugins/just-vibe/skills/cleanup/SKILL.md +7 -0
- package/plugins/just-vibe/skills/compare/SKILL.md +19 -1
- package/plugins/just-vibe/skills/copy/SKILL.md +7 -0
- package/plugins/just-vibe/skills/coverage/SKILL.md +7 -0
- package/plugins/just-vibe/skills/data-backfill/SKILL.md +7 -0
- package/plugins/just-vibe/skills/data-contract/SKILL.md +7 -0
- package/plugins/just-vibe/skills/data-incremental/SKILL.md +7 -0
- package/plugins/just-vibe/skills/data-lineage/SKILL.md +7 -0
- package/plugins/just-vibe/skills/data-pipeline/SKILL.md +7 -0
- package/plugins/just-vibe/skills/data-profile/SKILL.md +7 -0
- package/plugins/just-vibe/skills/data-quality/SKILL.md +7 -0
- package/plugins/just-vibe/skills/data-reconcile/SKILL.md +7 -0
- package/plugins/just-vibe/skills/db-access/SKILL.md +12 -0
- package/plugins/just-vibe/skills/db-explain/SKILL.md +7 -0
- package/plugins/just-vibe/skills/db-index/SKILL.md +7 -0
- package/plugins/just-vibe/skills/db-integrity/SKILL.md +7 -0
- package/plugins/just-vibe/skills/db-locks/SKILL.md +7 -0
- package/plugins/just-vibe/skills/db-migrate/SKILL.md +7 -0
- package/plugins/just-vibe/skills/db-query/SKILL.md +7 -0
- package/plugins/just-vibe/skills/db-schema/SKILL.md +7 -0
- package/plugins/just-vibe/skills/debug/SKILL.md +11 -0
- package/plugins/just-vibe/skills/decide/SKILL.md +17 -1
- package/plugins/just-vibe/skills/decision-adr/SKILL.md +7 -0
- package/plugins/just-vibe/skills/decision-buy-build/SKILL.md +7 -0
- package/plugins/just-vibe/skills/decision-matrix/SKILL.md +7 -0
- package/plugins/just-vibe/skills/decision-premortem/SKILL.md +7 -0
- package/plugins/just-vibe/skills/decision-reversible/SKILL.md +7 -0
- package/plugins/just-vibe/skills/decision-revisit/SKILL.md +7 -0
- package/plugins/just-vibe/skills/decision-spike/SKILL.md +7 -0
- package/plugins/just-vibe/skills/deploy/SKILL.md +7 -0
- package/plugins/just-vibe/skills/deps/SKILL.md +12 -0
- package/plugins/just-vibe/skills/design/SKILL.md +7 -0
- package/plugins/just-vibe/skills/docs/SKILL.md +7 -0
- package/plugins/just-vibe/skills/doctor/SKILL.md +7 -0
- package/plugins/just-vibe/skills/explain/SKILL.md +7 -0
- package/plugins/just-vibe/skills/fix/SKILL.md +11 -0
- package/plugins/just-vibe/skills/git-bisect/SKILL.md +7 -0
- package/plugins/just-vibe/skills/git-commit/SKILL.md +7 -0
- package/plugins/just-vibe/skills/git-conflicts/SKILL.md +7 -0
- package/plugins/just-vibe/skills/git-diff/SKILL.md +7 -0
- package/plugins/just-vibe/skills/git-recover/SKILL.md +7 -0
- package/plugins/just-vibe/skills/git-split/SKILL.md +7 -0
- package/plugins/just-vibe/skills/git-status/SKILL.md +7 -0
- package/plugins/just-vibe/skills/git-worktree/SKILL.md +7 -0
- package/plugins/just-vibe/skills/github-actions/SKILL.md +8 -0
- package/plugins/just-vibe/skills/github-address-review/SKILL.md +7 -0
- package/plugins/just-vibe/skills/github-fix-ci/SKILL.md +8 -0
- package/plugins/just-vibe/skills/github-issue/SKILL.md +7 -0
- package/plugins/just-vibe/skills/github-pr/SKILL.md +7 -0
- package/plugins/just-vibe/skills/github-release/SKILL.md +11 -0
- package/plugins/just-vibe/skills/github-review/SKILL.md +12 -0
- package/plugins/just-vibe/skills/github-triage/SKILL.md +7 -0
- package/plugins/just-vibe/skills/handoff/SKILL.md +7 -0
- package/plugins/just-vibe/skills/help/SKILL.md +7 -0
- package/plugins/just-vibe/skills/integrate/SKILL.md +11 -0
- package/plugins/just-vibe/skills/learn/SKILL.md +7 -0
- package/plugins/just-vibe/skills/llm-cost/SKILL.md +7 -0
- package/plugins/just-vibe/skills/llm-evals/SKILL.md +7 -0
- package/plugins/just-vibe/skills/llm-injection/SKILL.md +7 -0
- package/plugins/just-vibe/skills/llm-prompt/SKILL.md +7 -0
- package/plugins/just-vibe/skills/llm-rag/SKILL.md +7 -0
- package/plugins/just-vibe/skills/llm-retrieval/SKILL.md +7 -0
- package/plugins/just-vibe/skills/llm-structured/SKILL.md +7 -0
- package/plugins/just-vibe/skills/llm-tools/SKILL.md +7 -0
- package/plugins/just-vibe/skills/map/SKILL.md +7 -0
- package/plugins/just-vibe/skills/match/SKILL.md +7 -0
- package/plugins/just-vibe/skills/migrate/SKILL.md +11 -0
- package/plugins/just-vibe/skills/ml-ablation/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-baseline/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-batch/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-calibrate/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-dataset/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-dataset-version/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-debug-training/SKILL.md +11 -0
- package/plugins/just-vibe/skills/ml-drift/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-error-analysis/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-evaluate/SKILL.md +17 -1
- package/plugins/just-vibe/skills/ml-experiments/SKILL.md +15 -1
- package/plugins/just-vibe/skills/ml-explain/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-features/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-frame/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-imbalance/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-inference-perf/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-labels/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-leakage/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-monitor/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-package/SKILL.md +11 -0
- package/plugins/just-vibe/skills/ml-parity/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-report/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-reproduce/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-robustness/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-rollout/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-serving/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-slices/SKILL.md +17 -1
- package/plugins/just-vibe/skills/ml-split/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-threshold/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-train/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-training-cost/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ml-tune/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ops-alerts/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ops-container/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ops-incident/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ops-logs/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ops-observability/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ops-postmortem/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ops-restore/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ops-runbook/SKILL.md +7 -0
- package/plugins/just-vibe/skills/orient/SKILL.md +7 -0
- package/plugins/just-vibe/skills/perf/SKILL.md +7 -0
- package/plugins/just-vibe/skills/plan/SKILL.md +7 -0
- package/plugins/just-vibe/skills/polish/SKILL.md +7 -0
- package/plugins/just-vibe/skills/pr/SKILL.md +7 -0
- package/plugins/just-vibe/skills/profile/SKILL.md +7 -0
- package/plugins/just-vibe/skills/profiles/SKILL.md +7 -0
- package/plugins/just-vibe/skills/react-async/SKILL.md +7 -0
- package/plugins/just-vibe/skills/react-audit/SKILL.md +11 -0
- package/plugins/just-vibe/skills/react-component/SKILL.md +7 -0
- package/plugins/just-vibe/skills/react-effects/SKILL.md +7 -0
- package/plugins/just-vibe/skills/react-forms/SKILL.md +7 -0
- package/plugins/just-vibe/skills/react-hydration/SKILL.md +7 -0
- package/plugins/just-vibe/skills/react-rerenders/SKILL.md +7 -0
- package/plugins/just-vibe/skills/react-state/SKILL.md +7 -0
- package/plugins/just-vibe/skills/refactor/SKILL.md +11 -0
- package/plugins/just-vibe/skills/release/SKILL.md +7 -0
- package/plugins/just-vibe/skills/remember/SKILL.md +16 -2
- package/plugins/just-vibe/skills/repro/SKILL.md +7 -0
- package/plugins/just-vibe/skills/research/SKILL.md +7 -0
- package/plugins/just-vibe/skills/resume/SKILL.md +7 -0
- package/plugins/just-vibe/skills/review/SKILL.md +14 -2
- package/plugins/just-vibe/skills/scope/SKILL.md +7 -0
- package/plugins/just-vibe/skills/security/SKILL.md +15 -2
- package/plugins/just-vibe/skills/security-authz/SKILL.md +11 -0
- package/plugins/just-vibe/skills/security-config/SKILL.md +12 -0
- package/plugins/just-vibe/skills/security-dependencies/SKILL.md +12 -0
- package/plugins/just-vibe/skills/security-fix/SKILL.md +13 -0
- package/plugins/just-vibe/skills/security-inputs/SKILL.md +12 -0
- package/plugins/just-vibe/skills/security-secrets/SKILL.md +12 -0
- package/plugins/just-vibe/skills/security-threat-model/SKILL.md +11 -0
- package/plugins/just-vibe/skills/security-uploads/SKILL.md +11 -0
- package/plugins/just-vibe/skills/setup/SKILL.md +7 -0
- package/plugins/just-vibe/skills/skill/SKILL.md +11 -0
- package/plugins/just-vibe/skills/spec/SKILL.md +7 -0
- package/plugins/just-vibe/skills/tasks/SKILL.md +7 -0
- package/plugins/just-vibe/skills/teach/SKILL.md +19 -2
- package/plugins/just-vibe/skills/teach-test/SKILL.md +7 -0
- package/plugins/just-vibe/skills/test/SKILL.md +7 -0
- package/plugins/just-vibe/skills/test-e2e/SKILL.md +7 -0
- package/plugins/just-vibe/skills/test-fixtures/SKILL.md +7 -0
- package/plugins/just-vibe/skills/test-flaky/SKILL.md +7 -0
- package/plugins/just-vibe/skills/test-integration/SKILL.md +7 -0
- package/plugins/just-vibe/skills/test-load/SKILL.md +7 -0
- package/plugins/just-vibe/skills/test-property/SKILL.md +7 -0
- package/plugins/just-vibe/skills/test-regression/SKILL.md +7 -0
- package/plugins/just-vibe/skills/test-unit/SKILL.md +7 -0
- package/plugins/just-vibe/skills/tools/SKILL.md +7 -0
- package/plugins/just-vibe/skills/trace/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ui-accessibility/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ui-audit/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ui-flow/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ui-motion/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ui-responsive/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ui-states/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ui-system/SKILL.md +7 -0
- package/plugins/just-vibe/skills/ui-visual-diff/SKILL.md +7 -0
- package/plugins/just-vibe/skills/undo/SKILL.md +71 -0
- package/plugins/just-vibe/skills/vercel-audit/SKILL.md +11 -0
- package/plugins/just-vibe/skills/vercel-build-fix/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vercel-env/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vercel-performance/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vercel-preview/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vercel-release-check/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vercel-routing/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vercel-runtime/SKILL.md +7 -0
- package/plugins/just-vibe/skills/verify/SKILL.md +19 -1
- package/plugins/just-vibe/skills/vite-assets/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vite-bundle/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vite-chunks/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vite-config/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vite-env/SKILL.md +11 -0
- package/plugins/just-vibe/skills/vite-hmr/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vite-setup/SKILL.md +7 -0
- package/plugins/just-vibe/skills/vite-upgrade/SKILL.md +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
- Expand all 213 canonical workflows with authored technical evidence, methods, misdiagnosis controls and discriminating checks; aliases inherit them.
|
|
6
|
+
- Route review/security into concrete vulnerability, framework, language and available-scanner guides, with primary references and scoped safe examples.
|
|
7
|
+
- Add complete technical coverage documentation, transitive shipped-reference validation and five executable security fixture controls; preserve earlier model results as historical evidence.
|
|
8
|
+
|
|
9
|
+
- Add explicit rule provenance, managed instruction edits, loading/conflict inspection, and control-validated text/import guards.
|
|
10
|
+
- Add working-alternative labs with Git worktrees, shared checks, leased previews, comparison reports, journaled selection and reviewed cleanup.
|
|
11
|
+
- Add requirement-linked verification records, freshness checks, browser screenshots and local HTML reports; human acceptance remains attributed.
|
|
12
|
+
- Add repository exercises with solution/starter controls, protected test identities, hints, optional progress and real submissions.
|
|
13
|
+
- Add bounded JSON/MLflow/W&B imports and binary/regression comparison with slice, parity, temporal and identity diagnostics.
|
|
14
|
+
- Add selective local task undo and journal recovery, plus the new undo skill.
|
|
15
|
+
- Add decision histories with watched assumptions, numeric reconsideration triggers and timestamped reviews.
|
|
16
|
+
- Expand relevant command contracts and publish focused workflow guides; no new runtime dependencies or automatic remote actions.
|
|
17
|
+
|
|
18
|
+
|
|
3
19
|
## 0.7.0
|
|
4
20
|
|
|
5
21
|
- Extend remember to merge explicit rules or current conversation decisions into CLAUDE.md/AGENTS.md, with shared instructions for both hosts, preview mode and optional named checkpoints in one invocation. Preserve existing guidance, user corrections and scope; distinguish saved files from verified host loading.
|
package/README.md
CHANGED
|
@@ -2,12 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
Tools, skills, and commands for coding agents.
|
|
4
4
|
|
|
5
|
-
**v0.
|
|
5
|
+
**v0.8 source contains 112 engineering profiles and 216 skill names backed by 213 canonical workflows** for Codex and Claude Code: focused skills for development, architecture, decisions, Git/GitHub, Vercel, Vite, React, UI, backend, APIs, databases, data, ML, LLMs, testing, security, and operations. Each canonical workflow has selection guidance, scope, concrete decision branches, evidence requirements, outputs, verification, recovery conditions and three example requests. Each entry point also contains an authored technical method: evidence to inspect, a procedure, a likely misdiagnosis and a discriminating check. Applied methods live in 22 pack guides.
|
|
6
|
+
|
|
7
|
+
The [technical audit](docs/technical-audit.md) and [complete coverage inventory](docs/technical-coverage.md) document the latest expansion across every canonical workflow. Review/security commands now route to concrete vulnerability, framework, language and scanner guides. [Security fixture controls](evals/security/README.md) distinguish seeded defects from legitimate behavior; they do not claim model-review accuracy.
|
|
6
8
|
|
|
7
9
|
The active coding agent executes the workflows with its available tools. The dependency-free Node.js utilities provide catalog search, project inspection, capability discovery, and bounded run-state validation. Installing just-vibe does not connect services, grant permissions, provision compute, or make every workflow's prerequisites available.
|
|
8
10
|
|
|
9
11
|
v0.7 adds a quick path for simple work, a small starter catalog, contextual routing with reasons, project preferences and checkpoints, explicit evidence collectors, and optional project hooks. Detailed auth, component, training and delivery scenarios load only when relevant. See [daily workflows](plugins/just-vibe/references/daily-workflows.md) for configuration and examples, and the [v0.7 validation record](evals/releases/0.7.0.md) for tested scope and limits.
|
|
10
12
|
|
|
13
|
+
|
|
14
|
+
## Intent, evidence and reversible work
|
|
15
|
+
|
|
16
|
+
The v0.8 source adds working runtime helpers behind natural-language skill requests:
|
|
17
|
+
|
|
18
|
+
- Remember an explicit correction, inspect instruction provenance/loading, and test a rule with compliant/violating controls.
|
|
19
|
+
- Build two or three alternatives in owned worktrees, run equal checks, preview them, and apply the selected result with an undo record.
|
|
20
|
+
- Tie requirements to actual checks, screenshots and attributed human review in a local HTML report with freshness checks.
|
|
21
|
+
- Learn from isolated exercises in the actual project, with validated controls, progressive hints and real submissions.
|
|
22
|
+
- Import MLflow, W&B or JSON exports; compare binary/regression metrics, slices, identity, feature parity and temporal coverage.
|
|
23
|
+
- Reverse a recorded local task while preserving nonoverlapping later edits; retain decision history with observable reconsideration triggers.
|
|
24
|
+
|
|
25
|
+
See the [workflow guide](plugins/just-vibe/references/intent-workflows.md) for examples, boundaries and recovery. Users provide ordinary briefs; the agent prepares the helper inputs. These features support judgment rather than claiming an objective quality score.
|
|
26
|
+
|
|
27
|
+
**Publication status:** v0.8 is source work until separately published; the previously published npm release is v0.7.0. Registry installs do not gain these features until the new release is published.
|
|
28
|
+
|
|
29
|
+
|
|
11
30
|
## Use the workflows
|
|
12
31
|
|
|
13
32
|
In Claude Code, use a command followed by as much context as needed:
|
|
@@ -49,7 +68,7 @@ Save decisions and corrections from the current conversation in one invocation:
|
|
|
49
68
|
|
|
50
69
|
In Codex, select **remember** from just-vibe and append the same brief. The skill updates the established `CLAUDE.md` or `AGENTS.md`, merges existing guidance and saves only explicit instructions and accepted decisions. `both` keeps common rules in `AGENTS.md` with a relative import in `CLAUDE.md`. A checkpoint keeps temporary progress separate. You can also append one specific rule or ask for a preview without writing.
|
|
51
70
|
|
|
52
|
-
|
|
71
|
+
The host interprets the conversation; the `memory` helper can persist individual rules with provenance and file-hash checks, while the agent merges established context sections and shared imports. Terminal `project remember` only stores JSON notes. See [rule checks and memory inspection](plugins/just-vibe/references/memory-checks.md) for the new helper. Saved instructions improve continuity but do not guarantee adherence or recover unavailable chat history. See [merging, host loading and examples](plugins/just-vibe/references/instruction-memory.md). Update older installations to receive this extension.
|
|
53
72
|
|
|
54
73
|
## Engineering profiles
|
|
55
74
|
|
|
@@ -195,7 +214,7 @@ Use the equivalent `--local` flag when switching from a development checkout. Gi
|
|
|
195
214
|
|
|
196
215
|
## Native install without Node.js
|
|
197
216
|
|
|
198
|
-
The included skills and plugin manifests can be installed directly. Node.js 22+ is still required for
|
|
217
|
+
The included skills and plugin manifests can be installed directly. Node.js 22+ is still required for all bundled CLI helpers, including installation, discovery, sessions, quizzes and the intent workflows.
|
|
199
218
|
|
|
200
219
|
```sh
|
|
201
220
|
# Codex
|
|
@@ -238,22 +257,24 @@ The default checks validate catalogs, generated skills, references, manifests an
|
|
|
238
257
|
|
|
239
258
|
The default host test copies and installs the bundled payload. `--local` tests direct checkout registration. `--github` installs the published private repository and requires Git access; use it after pushing a release. Both variants execute the cached plugin runtime and check every skill is present, independently of the source checkout.
|
|
240
259
|
|
|
241
|
-
Edit `plugins/just-vibe/catalog/commands.json` for command contracts and runtime procedures, `catalog/packs.json` for pack requirements, and `references/packs/` for operational guidance. Run `npm run build:skills` to regenerate skills, the command reference, and evaluation scenarios. `npm run validate` rejects drift. Neither generation nor the installed runtime depends on the ignored local plan.
|
|
260
|
+
Edit `plugins/just-vibe/catalog/commands.json` for command contracts and runtime procedures, `catalog/packs.json` for pack requirements, and `references/packs/` for operational guidance. Run `npm run build:skills` to regenerate skills, the command reference, technical coverage inventory, and evaluation scenarios. `npm run validate` rejects drift. Neither generation nor the installed runtime depends on the ignored local plan.
|
|
242
261
|
|
|
243
262
|
Every workflow has normal, edge and missing-evidence cases in [evals/scenarios.json](evals/scenarios.json). The [independent behavioral harness](evals/README.md) additionally prepares and grades 21 raw-artifact tasks, including code repairs and report judgments. Catalog structure, runtime utility coverage and observed agent behavior have separate validation fields. These are not claims that all commands have been run against live services or evaluated across models. See the [v0.4 observed results](evals/releases/0.4.0.md) and [evaluation guidance](evals/README.md) for the tested scope.
|
|
244
263
|
|
|
245
264
|
The [v0.6 results](evals/releases/0.6.0.md) record 32 controlled implementation trials and eight revised-command development trials. All passed their bounded checks; this does not rank overall output quality or convenience. The tasks supplied detailed contracts and did not measure user effort or preference. The [command-depth review](docs/command-quality.md#focused-depth-review) explains 27 focused revisions, and the [contextual review guide](docs/command-quality.md#output-quality-and-convenience) covers judgment, clarity, discovery and correction burden. [Benchmark protocol and supporting metrics](evals/benchmark/README.md) remain available for reproduction. External integration, browser and deployment checks require the relevant task environment.
|
|
246
265
|
|
|
266
|
+
The [technical-guidance validation record](evals/releases/0.8.0-technical-guidance.md) covers the latest command expansion and security controls. The earlier [v0.8 validation record](evals/releases/0.8.0.md) covers the new intent helpers, real browser reports, installation checks and the pending Windows confirmation. Final CI is blocked by GitHub account billing; source and archive preparation do not establish npm publication.
|
|
267
|
+
|
|
247
268
|
### Repository layout
|
|
248
269
|
|
|
249
270
|
| Path | Purpose |
|
|
250
271
|
|---|---|
|
|
251
272
|
| `bin/just-vibe.mjs` | npm-executable entry point |
|
|
252
273
|
| `plugins/just-vibe/scripts/installer.mjs` | Self-contained installer, also shipped inside the plugin |
|
|
253
|
-
| `plugins/just-vibe/scripts/toolkit.mjs` |
|
|
254
|
-
| `plugins/just-vibe/scripts/lib/` | Catalog, capability,
|
|
274
|
+
| `plugins/just-vibe/scripts/toolkit.mjs` | Discovery, routing, sessions, quizzes and persistent intent workflow CLI |
|
|
275
|
+
| `plugins/just-vibe/scripts/lib/` | Catalog, capability, session, quiz, memory, guard, task, lab, proof, practice, experiment and decision modules |
|
|
255
276
|
| `plugins/just-vibe/catalog/` | Canonical command contracts, 112 role profiles, examples, prerequisites and pack metadata |
|
|
256
|
-
| `plugins/just-vibe/skills/` |
|
|
277
|
+
| `plugins/just-vibe/skills/` | 216 installed names, including three canonical aliases and setup |
|
|
257
278
|
| `plugins/just-vibe/references/` | Shared execution rules, runtime interface, domain guidance and command index |
|
|
258
279
|
| `.agents/plugins/marketplace.json` | Codex marketplace |
|
|
259
280
|
| `.claude-plugin/marketplace.json` | Claude Code marketplace |
|
package/docs/command-quality.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# Command contracts and quality
|
|
2
2
|
|
|
3
|
+
The [2026-09-20 technical audit](technical-audit.md) extends every canonical workflow with an authored technical method; the [coverage inventory](technical-coverage.md) shows the addressed failure distinctions and conditional routes.
|
|
4
|
+
|
|
3
5
|
The catalog owns each canonical command's scope, mode, required inputs, selection boundary, procedure, decision branches, outputs, observable verification, recovery conditions and examples. Pack references add reusable methods and worked scenarios. Generated SKILL.md files expose all examples and link the applicable guide; they are not independently edited.
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
216 names resolve to 213 canonical workflows. `do` inherits `auto`, `responsive` inherits `ui-responsive`, and `a11y` inherits `ui-accessibility`. Alias source records contain identity/search metadata only. Loading materializes the canonical behavior; validation rejects scope, mode, method, evidence or other behavioral drift. Routing collapses matching aliases to one canonical recommendation while preserving matched names.
|
|
6
8
|
|
|
7
9
|
## Writing useful guidance
|
|
8
10
|
|
|
9
|
-
Selection should distinguish a nearby workflow: explain versus teach, debug versus fix, local pr drafting versus remote github-pr identity/actions. A task-specific procedure should name the evidence to inspect and the decision it informs. A branch should cover a situation that changes the method, such as a partial external operation, incompatible old consumer, stale request completion or missing evaluation labels.
|
|
11
|
+
Selection should distinguish a nearby workflow: explain versus teach, debug versus fix, local pr drafting versus remote github-pr identity/actions. A task-specific procedure should name the evidence to inspect and the decision it informs. Canonical commands must also supply technical.evidence, technical.method, technical.pitfall and technical.check. These fields appear directly in the skill, CLI contract and evaluation specification; references add conditional depth. A branch should cover a situation that changes the method, such as a partial external operation, incompatible old consumer, stale request completion or missing evaluation labels.
|
|
10
12
|
|
|
11
13
|
Outputs need enough structure to assess correctness: a comparison needs assumptions and decisive evidence; a migration needs ordered phases, compatibility and recovery boundaries; an audit needs observed/conditional/unknown findings. Normal, edge and missing-evidence requests demonstrate scope and input handling. They do not count as successful evaluations by existing in the catalog.
|
|
12
14
|
|
|
@@ -72,3 +74,7 @@ The schema verifies the presence and shape of this contract, not the quality of
|
|
|
72
74
|
Test profile state transitions for pin protection, scope and budget preservation. Keep role discovery separate from activation. Do not claim that structural validation proves role expertise or that previous workflow trials evaluate newly added role guidance.
|
|
73
75
|
|
|
74
76
|
All generated work belongs to the user. Shared execution and Git/GitHub guidance prohibit agent self-attribution in commits, PRs and messages while preserving human credits and required third-party notices.
|
|
77
|
+
|
|
78
|
+
## v0.8 intent workflows
|
|
79
|
+
|
|
80
|
+
The [intent helpers](../plugins/just-vibe/references/intent-workflows.md) implement stateful memory/guard, lab, proof, practice, experiment, task and decision operations. The related commands load focused contracts for those modes; ordinary explanation/comparison remains read-only. Runtime fixture coverage is separate from end-to-end model behavior: new branches are not claimed as independently agent-evaluated.
|
package/docs/compatibility.md
CHANGED
|
@@ -27,3 +27,9 @@ Project state and contextual routing use the bundled Node utilities on all suppo
|
|
|
27
27
|
Optional hooks use PostToolUse and Stop and ship at the native plugin hook location. They remain inactive until project configuration and separate local trust are present. Codex also requires native hook trust. Native installation on macOS is verified separately from actual hook-event delivery on every host/OS. A direct hook runner test establishes handler behavior, not host parity. Command arrays support native executables and standard npm Windows wrappers through the shared process helper.
|
|
28
28
|
|
|
29
29
|
GitHub evidence needs authenticated gh; Vercel evidence needs authenticated vercel and an explicit deployment identity. Browser evidence needs project-installed Playwright and Chromium, with authorized interactions. SQL migration evidence inspects local SQL and an optional supplied applied-history export; it does not connect to a live database. The package installs no optional provider or browser dependencies automatically. See the [daily workflow reference](../plugins/just-vibe/references/daily-workflows.md).
|
|
30
|
+
|
|
31
|
+
## v0.8 intent workflows
|
|
32
|
+
|
|
33
|
+
The new memory/guard, task, lab, proof, practice, experiment and decision helpers use the existing Node runtime without added runtime dependencies. Labs/practice/local undo require Git and a committed project root. Preview commands must run foreground loopback servers; the worker owns their process lifetime. These worktrees are not security sandboxes. Selected file and snapshot bounds can require a narrower task; incomplete coverage never grants selection/cleanup authority.
|
|
34
|
+
|
|
35
|
+
The 216-skill payload passed isolated native Codex/Claude lifecycle checks on macOS. ML imports use supplied local exports, and browser proof screenshots use already-installed Playwright/Chromium. Native teaching questions still depend on the active host mode; exercise assessment does not fabricate question-tool availability. See the [v0.8 validation record](../evals/releases/0.8.0.md) and [workflow guides](../plugins/just-vibe/references/intent-workflows.md).
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Technical guidance audit
|
|
2
|
+
|
|
3
|
+
Audit scope: all 213 canonical workflows, their three aliases, 22 pack references, conditional scenario routes, 112 profile-to-workflow links, generator, CLI exposure and packaged references. This is a bounded inventory of the shipped catalog, not a claim to cover every possible technology or vulnerability. The audit was performed on 2026-09-20 against the existing 0.8.0 source.
|
|
4
|
+
|
|
5
|
+
## Findings and implemented corrections
|
|
6
|
+
|
|
7
|
+
| Area | Gap | Correction |
|
|
8
|
+
|---|---|---|
|
|
9
|
+
| Every canonical command | Procedures often named a task without enough evidence, diagnostic distinctions or acceptance checks | An authored technical method now specifies evidence, application, a likely misdiagnosis and a discriminating check in the catalog and generated skill |
|
|
10
|
+
| General review and security | General security linked only general methods; specialist depth could remain unloaded | Direct security guide plus a review selector routes by actual changed boundary and stack |
|
|
11
|
+
| Security vulnerabilities | Limited explicit mechanisms, unsafe/corrected examples and false-positive controls | Injection, identity, files, supply chain and framework guides with bounded regression/control cases and primary references |
|
|
12
|
+
| Scanners | No concrete shared selection, execution and incomplete-result procedure | Available-tool recipes for dependency, source and secret analysis, explicit version/config/revision identity and partial/failure handling |
|
|
13
|
+
| Language-specific reviews | Shared review depended heavily on model recall | Conditional JavaScript/TypeScript, Python, Go, JVM, Rust/native and SQL review branches |
|
|
14
|
+
| Architecture and decisions | Shared methods did not enumerate each command's decisive checks | Ownership/contract/crash-window/scale/transition checks; sensitivity, feasibility, reversal and evidence rules for each decision workflow |
|
|
15
|
+
| Git and GitHub | Existing staging and delivery depth was uneven across adjacent workflows | Per-command three-tree, recovery, bisect, PR identity, CI trust and artifact provenance checks; existing user-ownership rules retained |
|
|
16
|
+
| Vercel and Vite | Generic build/performance guidance left configuration and measurement ambiguity | Build/runtime scope, deployment identity, asset MIME/base paths, public env exposure, HMR layer, chunk lifetime and compatible upgrade checks |
|
|
17
|
+
| React and UI | Existing async/component scenarios did not give every workflow its own diagnostic contract | State ownership, two-instance behavior, form errors, hydration, profiling, reduced motion, keyboard and visual-baseline controls |
|
|
18
|
+
| Backend/API/database/data | Detailed shared examples could be missed or applied too generally | Specific transaction/retry/claim/cursor/webhook/RLS/join-grain/watermark/backfill and reconciliation checks in every entry point |
|
|
19
|
+
| ML and LLM | Broad coverage lacked consistent per-command failure distinctions | Prediction/fit-time boundaries, label maturity, leakage controls, calibration/threshold denominators, parity, rollout, retrieval permission and tool-execution checks |
|
|
20
|
+
| Testing and operations | Some commands lacked concrete counterexamples and recovery observations | Broken/good controls, independent oracles, load bounds, failure cleanup, telemetry gaps, image layers, restore evidence and causal incident checks |
|
|
21
|
+
| Profiles | A role could appear to supply specialist knowledge by itself | Profile selection now explicitly routes to the selected workflow's technical method; roles remain priorities, not credentials or permission |
|
|
22
|
+
| Generation and packaging | Structural presence alone could allow missing technical fields or dangling deep references | Technical contract validation, reproducible generation, coverage inventory and transitive local-reference checks |
|
|
23
|
+
|
|
24
|
+
The full [coverage inventory](technical-coverage.md) lists the specific ambiguity addressed by each command and its conditional references. Existing strong authentication, Git index, ML temporal and training scenarios were retained. All changes are owned by the user; no agent authorship is introduced.
|
|
25
|
+
|
|
26
|
+
## Maintenance contract
|
|
27
|
+
|
|
28
|
+
Edit canonical `catalog/commands.json`, not generated SKILL.md files. Every canonical command supplies `technical.evidence`, `technical.method`, `technical.pitfall` and `technical.check`; aliases inherit them. These are authored behavioral instructions, not generic pack-name substitution. Keep substantial conditional examples in references and attach a route explaining when to read them. Rebuild with `npm run build:skills`.
|
|
29
|
+
|
|
30
|
+
Use installed versions and current primary documentation for unstable API/default behavior. Sources are linked in the relevant guide. The audit consulted OWASP, framework maintainers, language/runtime documentation and scanner maintainers; it did not copy ECC's instruction text or treat checklist length as evidence of better reviews. Existing Git, auth, ML and domain methods remain the basis for deeper scenario work.
|
|
31
|
+
|
|
32
|
+
## Validation and limits
|
|
33
|
+
|
|
34
|
+
The [validation record](../evals/releases/0.8.0-technical-guidance.md) records the completed local checks and their limits.
|
|
35
|
+
|
|
36
|
+
`npm run check` verifies the catalog, generated artifacts, reference graph, runtime tests and executable security fixture controls. `npm run eval:security` runs the isolated controls directly. The fixture assertions distinguish seeded defects from legitimate behavior; they do not run a model or establish a comparative ECC score. The evaluation guide explains how to perform a separate blinded model review without leaking expected findings.
|
|
37
|
+
|
|
38
|
+
Scanner recipes are host-agent procedures for tools already available and authorized. No scanner is silently installed, no registry/advisory database is bundled, and no hook or remote scan is automatically enabled. Structural validation cannot prove an agent loads every relevant guide or reasons correctly. Broad behavioral quality and current-version ecosystem coverage require ongoing real-task evaluation.
|
|
39
|
+
|
|
40
|
+
This change does not by itself publish an npm version or establish new Windows/remote-CI evidence. Release records remain authoritative for actual published artifacts and platform validation.
|
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
# Technical guidance coverage
|
|
2
|
+
|
|
3
|
+
Generated from the canonical catalog. This is an inventory of authored guidance and its routes, not evidence that an agent followed it or that a vulnerability was detected. Each canonical workflow has evidence to inspect, a method, a misdiagnosis to avoid and a discriminating check. Aliases inherit the entire contract. See [audit findings and validation](technical-audit.md).
|
|
4
|
+
|
|
5
|
+
## General
|
|
6
|
+
|
|
7
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
8
|
+
|---|---|---|
|
|
9
|
+
| [orient](../plugins/just-vibe/skills/orient/SKILL.md) | A package script's name does not prove it works, and importing configuration can execute code during inspection. | Technical method and pack guide in entry point |
|
|
10
|
+
| [explain](../plugins/just-vibe/skills/explain/SKILL.md) | Plausible business intent cannot be inferred solely from a function name; configuration-dependent behavior remains conditional. | Technical method and pack guide in entry point |
|
|
11
|
+
| [teach](../plugins/just-vibe/skills/teach/SKILL.md) | Teaching a command does not authorize running it; overwhelming prerequisite lists can obscure the actual concept. | [Project exercises](../plugins/just-vibe/references/practice.md) |
|
|
12
|
+
| [teach-test](../plugins/just-vibe/skills/teach-test/SKILL.md) | Inline answer dumps or revealing the correct answer before the response defeat the test; unavailable native UI needs an explicit fallback. | Technical method and pack guide in entry point |
|
|
13
|
+
| [trace](../plugins/just-vibe/skills/trace/SKILL.md) | A static call graph does not prove which branch executed; queue handoffs can change identity and ordering. | Technical method and pack guide in entry point |
|
|
14
|
+
| [map](../plugins/just-vibe/skills/map/SKILL.md) | A large unlabeled graph hides ownership and can imply nonexistent deployed services. | Technical method and pack guide in entry point |
|
|
15
|
+
| [research](../plugins/just-vibe/skills/research/SKILL.md) | Current documentation may describe a different major than the project; search snippets alone can omit decisive conditions. | Technical method and pack guide in entry point |
|
|
16
|
+
| [compare](../plugins/just-vibe/skills/compare/SKILL.md) | Unequal feature completeness or different datasets can manufacture a winner; human preference remains attributed judgment. | [Working alternatives](../plugins/just-vibe/references/working-alternatives.md) |
|
|
17
|
+
| [brainstorm](../plugins/just-vibe/skills/brainstorm/SKILL.md) | Renaming the same architecture repeatedly is not useful diversity; brainstorming does not select or implement an option. | Technical method and pack guide in entry point |
|
|
18
|
+
| [spec](../plugins/just-vibe/skills/spec/SKILL.md) | Implementation detail can prematurely constrain a product requirement; vague adjectives cannot establish completion. | Technical method and pack guide in entry point |
|
|
19
|
+
| [plan](../plugins/just-vibe/skills/plan/SKILL.md) | A list of filenames or tool names is not an implementation plan; invented repo structure produces unusable tasks. | Technical method and pack guide in entry point |
|
|
20
|
+
| [scope](../plugins/just-vibe/skills/scope/SKILL.md) | Dropping error recovery or required authorization can make a smaller release unusable rather than merely simpler. | Technical method and pack guide in entry point |
|
|
21
|
+
| [challenge](../plugins/just-vibe/skills/challenge/SKILL.md) | Contrarian preferences or speculative catastrophes without a mechanism add noise. | Technical method and pack guide in entry point |
|
|
22
|
+
| [tasks](../plugins/just-vibe/skills/tasks/SKILL.md) | Marking a task complete because its code exists overlooks unrun verification or blocked integration. | Technical method and pack guide in entry point |
|
|
23
|
+
| [build](../plugins/just-vibe/skills/build/SKILL.md) | Building isolated components without connecting the actual entry point leaves the feature unusable. | [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
24
|
+
| [fix](../plugins/just-vibe/skills/fix/SKILL.md) | Editing the last visible exception or weakening the assertion can hide the root defect. | [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
25
|
+
| [debug](../plugins/just-vibe/skills/debug/SKILL.md) | Correlation with a recent edit or a noisy downstream stack trace does not establish causality. | [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
26
|
+
| [refactor](../plugins/just-vibe/skills/refactor/SKILL.md) | Renaming a pure helper differs from moving async ownership or transaction boundaries; both cannot use the same evidence bar. | [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
27
|
+
| [integrate](../plugins/just-vibe/skills/integrate/SKILL.md) | A mock success does not prove provider configuration, and retrying after timeout can duplicate a remote effect. | [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
28
|
+
| [migrate](../plugins/just-vibe/skills/migrate/SKILL.md) | Updating a version string does not migrate runtime semantics; code rollback may not read new persisted data. | [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
29
|
+
| [automate](../plugins/just-vibe/skills/automate/SKILL.md) | A script that retries uncertain mutations or interpolates user text into shell source can amplify failures. | Technical method and pack guide in entry point |
|
|
30
|
+
| [cleanup](../plugins/just-vibe/skills/cleanup/SKILL.md) | Static search can miss reflection, routing conventions, plugins or public consumers. | Technical method and pack guide in entry point |
|
|
31
|
+
| [design](../plugins/just-vibe/skills/design/SKILL.md) | Attractive static composition can conceal inaccessible controls, content overflow or missing recovery states. | Technical method and pack guide in entry point |
|
|
32
|
+
| [polish](../plugins/just-vibe/skills/polish/SKILL.md) | Arbitrary token changes can improve one screen while breaking sibling components or dense content. | Technical method and pack guide in entry point |
|
|
33
|
+
| [match](../plugins/just-vibe/skills/match/SKILL.md) | A different viewport or unloaded font can masquerade as implementation error; screenshot similarity does not prove behavior. | Technical method and pack guide in entry point |
|
|
34
|
+
| [copy](../plugins/just-vibe/skills/copy/SKILL.md) | Friendly copy that says a failed operation succeeded or hides irreversible consequences misleads users. | Technical method and pack guide in entry point |
|
|
35
|
+
| [review](../plugins/just-vibe/skills/review/SKILL.md) | Style preferences, file length or theoretical edge cases without a trigger are not automatically defects. | [Review selection and evidence](../plugins/just-vibe/references/security/review.md); [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
36
|
+
| [test](../plugins/just-vibe/skills/test/SKILL.md) | Mock call assertions or tests mirroring helper logic can pass while behavior is wrong. | Technical method and pack guide in entry point |
|
|
37
|
+
| [verify](../plugins/just-vibe/skills/verify/SKILL.md) | A green command on another revision or a screenshot of one state cannot establish all acceptance criteria. | [Requirement evidence](../plugins/just-vibe/references/proofs.md) |
|
|
38
|
+
| [security](../plugins/just-vibe/skills/security/SKILL.md) | A suspicious API or generic checklist entry is not proof of exploitability; unseen deployment defenses remain unknown. | [Review selection and evidence](../plugins/just-vibe/references/security/review.md); [Security methods](../plugins/just-vibe/references/packs/security.md); [Scanner selection and evidence](../plugins/just-vibe/references/security/scanners.md) |
|
|
39
|
+
| [perf](../plugins/just-vibe/skills/perf/SKILL.md) | Lower allocation or fewer renders may not improve observed latency; averages hide regressions in tails or errors. | Technical method and pack guide in entry point |
|
|
40
|
+
| [repro](../plugins/just-vibe/skills/repro/SKILL.md) | A smaller program with a different failure does not reproduce the original bug. | Technical method and pack guide in entry point |
|
|
41
|
+
| [coverage](../plugins/just-vibe/skills/coverage/SKILL.md) | Executed lines do not establish meaningful assertions; mocks can leave the real boundary untested. | Technical method and pack guide in entry point |
|
|
42
|
+
| [pr](../plugins/just-vibe/skills/pr/SKILL.md) | Local PR drafting does not authorize pushing or posting, and unrun checks cannot appear as passed. | Technical method and pack guide in entry point |
|
|
43
|
+
| [release](../plugins/just-vibe/skills/release/SKILL.md) | Source version changes do not publish a package; a rebuilt archive differs from the one previously tested. | Technical method and pack guide in entry point |
|
|
44
|
+
| [ci](../plugins/just-vibe/skills/ci/SKILL.md) | Disabling tests or broadening secrets access can make CI green while weakening correctness or security. | Technical method and pack guide in entry point |
|
|
45
|
+
| [docs](../plugins/just-vibe/skills/docs/SKILL.md) | Copying stale examples or generated output without rebuilding its source creates drift. | Technical method and pack guide in entry point |
|
|
46
|
+
| [deps](../plugins/just-vibe/skills/deps/SKILL.md) | Forced audit fixes or ignored peer conflicts can replace one issue with a runtime incompatibility. | [Dependency and execution provenance](../plugins/just-vibe/references/security/supply-chain.md); [Scanner selection and evidence](../plugins/just-vibe/references/security/scanners.md) |
|
|
47
|
+
| [deploy](../plugins/just-vibe/skills/deploy/SKILL.md) | Deploying from a dirty tree or checking a moving alias can disconnect observed success from the intended artifact. | Technical method and pack guide in entry point |
|
|
48
|
+
| [checkpoint](../plugins/just-vibe/skills/checkpoint/SKILL.md) | Saving notes does not capture every external effect or guarantee another host will load them. | [Project continuity](../plugins/just-vibe/references/daily-workflows.md); [Selective task undo](../plugins/just-vibe/references/task-undo.md) |
|
|
49
|
+
| [undo](../plugins/just-vibe/skills/undo/SKILL.md) | Whole-repository reset destroys unrelated work; matching a filename alone does not prove the task still owns its contents. | [Selective task undo](../plugins/just-vibe/references/task-undo.md) |
|
|
50
|
+
| [handoff](../plugins/just-vibe/skills/handoff/SKILL.md) | A conversational narrative without current state forces rediscovery; claiming unavailable checks passed misleads the next session. | [Project continuity](../plugins/just-vibe/references/daily-workflows.md) |
|
|
51
|
+
| [resume](../plugins/just-vibe/skills/resume/SKILL.md) | A checkpoint is stale evidence, not renewed authorization; replaying an uncertain submission can create duplicates. | [Project continuity](../plugins/just-vibe/references/daily-workflows.md) |
|
|
52
|
+
| [remember](../plugins/just-vibe/skills/remember/SKILL.md) | Saving a rule in the wrong directory or confusing a proposal with a user decision can silently change behavior. | [Instruction memory](../plugins/just-vibe/references/instruction-memory.md); [Project continuity](../plugins/just-vibe/references/daily-workflows.md); [Rules, provenance and guards](../plugins/just-vibe/references/memory-checks.md) |
|
|
53
|
+
| [learn](../plugins/just-vibe/skills/learn/SKILL.md) | Generalizing one incident into an unconditional global rule can harm unrelated work. | Technical method and pack guide in entry point |
|
|
54
|
+
| [skill](../plugins/just-vibe/skills/skill/SKILL.md) | Long generic checklists dilute useful detail, and a linked guide that is never loaded cannot improve behavior. | [Dependency and execution provenance](../plugins/just-vibe/references/security/supply-chain.md) |
|
|
55
|
+
| [doctor](../plugins/just-vibe/skills/doctor/SKILL.md) | Finding an executable or directory does not prove the plugin is enabled or the current session loaded its latest skills. | Technical method and pack guide in entry point |
|
|
56
|
+
| [help](../plugins/just-vibe/skills/help/SKILL.md) | Dumping every command creates search burden; a lexical match does not establish capability availability. | [Discovery and daily utilities](../plugins/just-vibe/references/daily-workflows.md) |
|
|
57
|
+
| [tools](../plugins/just-vibe/skills/tools/SKILL.md) | An installed CLI is not authenticated access; a skill description is not an executable scanner. | [Discovery and daily utilities](../plugins/just-vibe/references/daily-workflows.md) |
|
|
58
|
+
| [auto](../plugins/just-vibe/skills/auto/SKILL.md) | Lexical routing is a suggestion, not authorization or a reason to execute every matching command. | [Daily workflow paths](../plugins/just-vibe/references/daily-workflows.md); [Intent and evidence workflows](../plugins/just-vibe/references/intent-workflows.md) |
|
|
59
|
+
| [profiles](../plugins/just-vibe/skills/profiles/SKILL.md) | A job title is neither a credential nor evidence that all specialty checks were performed. | Technical method and pack guide in entry point |
|
|
60
|
+
| [profile](../plugins/just-vibe/skills/profile/SKILL.md) | Agent inference cannot clear a user pin, and a principal role does not authorize broader architecture changes. | [Project continuity](../plugins/just-vibe/references/daily-workflows.md) |
|
|
61
|
+
|
|
62
|
+
## Architecture
|
|
63
|
+
|
|
64
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
65
|
+
|---|---|---|
|
|
66
|
+
| [arch-map](../plugins/just-vibe/skills/arch-map/SKILL.md) | A package dependency does not prove a network call or independently deployed service; missing infrastructure leaves deployment unknown. | Technical method and pack guide in entry point |
|
|
67
|
+
| [arch-boundaries](../plugins/just-vibe/skills/arch-boundaries/SKILL.md) | Folder moves can conceal unchanged coupling; a shared type is not inherently a boundary violation. | Technical method and pack guide in entry point |
|
|
68
|
+
| [arch-feature](../plugins/just-vibe/skills/arch-feature/SKILL.md) | A new service adds network failure and consistency work even when its code is small. | Technical method and pack guide in entry point |
|
|
69
|
+
| [arch-contracts](../plugins/just-vibe/skills/arch-contracts/SKILL.md) | Adding an enum or tightening validation may break existing consumers despite being schema-additive. | Technical method and pack guide in entry point |
|
|
70
|
+
| [arch-event-flow](../plugins/just-vibe/skills/arch-event-flow/SKILL.md) | Delivery ordering on one partition does not order all entities, and broker acknowledgment does not prove a business effect committed. | Technical method and pack guide in entry point |
|
|
71
|
+
| [arch-tenancy](../plugins/just-vibe/skills/arch-tenancy/SKILL.md) | An isolated HTTP route can still enqueue a job or populate a shared cache without tenant scope. | [Identity and authorization](../plugins/just-vibe/references/security/identity.md) |
|
|
72
|
+
| [arch-scale](../plugins/just-vibe/skills/arch-scale/SKILL.md) | Adding replicas can exhaust a database connection budget or amplify retries before increasing throughput. | Technical method and pack guide in entry point |
|
|
73
|
+
| [arch-modernize](../plugins/just-vibe/skills/arch-modernize/SKILL.md) | Dual writes without recovery can diverge; code rollback cannot recover discarded data. | Technical method and pack guide in entry point |
|
|
74
|
+
|
|
75
|
+
## Decisions
|
|
76
|
+
|
|
77
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
78
|
+
|---|---|---|
|
|
79
|
+
| [decide](../plugins/just-vibe/skills/decide/SKILL.md) | More criteria do not compensate for an unresolved mandatory requirement. | [Decision history](../plugins/just-vibe/references/decision-history.md) |
|
|
80
|
+
| [decision-matrix](../plugins/just-vibe/skills/decision-matrix/SKILL.md) | Double-counting correlated criteria can manufacture a winner; unknown evidence is not a neutral numeric score. | Technical method and pack guide in entry point |
|
|
81
|
+
| [decision-adr](../plugins/just-vibe/skills/decision-adr/SKILL.md) | An agent recommendation is not an adopted organizational decision. | Technical method and pack guide in entry point |
|
|
82
|
+
| [decision-premortem](../plugins/just-vibe/skills/decision-premortem/SKILL.md) | Generic risks with no mechanism or observable warning cannot guide implementation. | Technical method and pack guide in entry point |
|
|
83
|
+
| [decision-reversible](../plugins/just-vibe/skills/decision-reversible/SKILL.md) | A reversible code change may already have sent messages or transformed data irreversibly. | Technical method and pack guide in entry point |
|
|
84
|
+
| [decision-buy-build](../plugins/just-vibe/skills/decision-buy-build/SKILL.md) | Vendor feature lists do not prove compatibility with the actual identity, offline or data-residency requirements. | Technical method and pack guide in entry point |
|
|
85
|
+
| [decision-spike](../plugins/just-vibe/skills/decision-spike/SKILL.md) | Building a polished prototype can consume the budget without testing the disputed assumption. | Technical method and pack guide in entry point |
|
|
86
|
+
| [decision-revisit](../plugins/just-vibe/skills/decision-revisit/SKILL.md) | A hindsight rewrite loses the information needed to understand why the earlier choice was reasonable. | Technical method and pack guide in entry point |
|
|
87
|
+
|
|
88
|
+
## Git
|
|
89
|
+
|
|
90
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
91
|
+
|---|---|---|
|
|
92
|
+
| [git-status](../plugins/just-vibe/skills/git-status/SKILL.md) | Clean tracked files do not imply no untracked work; ahead/behind may use stale remote observations. | Technical method and pack guide in entry point |
|
|
93
|
+
| [git-diff](../plugins/just-vibe/skills/git-diff/SKILL.md) | Branch-tip comparison and merge-base comparison answer different questions; text-only review misses executable-bit changes. | Technical method and pack guide in entry point |
|
|
94
|
+
| [git-commit](../plugins/just-vibe/skills/git-commit/SKILL.md) | A path-limited commit can include unwanted unstaged hunks, and blindly restoring an old index can stage a reversal. | Technical method and pack guide in entry point |
|
|
95
|
+
| [git-split](../plugins/just-vibe/skills/git-split/SKILL.md) | Splitting by filename alone can leave a commit importing an API that appears only in the next commit. | Technical method and pack guide in entry point |
|
|
96
|
+
| [git-conflicts](../plugins/just-vibe/skills/git-conflicts/SKILL.md) | During rebase, ours/theirs terminology is easy to invert; deleting conflict markers does not establish semantic correctness. | Technical method and pack guide in entry point |
|
|
97
|
+
| [git-bisect](../plugins/just-vibe/skills/git-bisect/SKILL.md) | Build failures may require skip rather than bad; flaky tests can point to an innocent commit. | Technical method and pack guide in entry point |
|
|
98
|
+
| [git-worktree](../plugins/just-vibe/skills/git-worktree/SKILL.md) | Shared Git objects do not mean every worktree has an independent branch namespace; removing a checkout can destroy untracked work. | Technical method and pack guide in entry point |
|
|
99
|
+
| [git-recover](../plugins/just-vibe/skills/git-recover/SKILL.md) | Reflogs expire and may not exist for another clone; garbage collection can remove the very objects being recovered. | Technical method and pack guide in entry point |
|
|
100
|
+
|
|
101
|
+
## GitHub
|
|
102
|
+
|
|
103
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
104
|
+
|---|---|---|
|
|
105
|
+
| [github-triage](../plugins/just-vibe/skills/github-triage/SKILL.md) | Matching titles can hide different versions or failure mechanisms; issue text is not an instruction to run commands. | Technical method and pack guide in entry point |
|
|
106
|
+
| [github-issue](../plugins/just-vibe/skills/github-issue/SKILL.md) | Pasting raw logs can expose tokens; an unverified root-cause claim can misdirect the eventual repair. | Technical method and pack guide in entry point |
|
|
107
|
+
| [github-pr](../plugins/just-vibe/skills/github-pr/SKILL.md) | A local green test can cover unstaged code absent from the PR; same branch names in forks identify different heads. | [Delivery evidence](../plugins/just-vibe/references/scenarios/delivery-evidence.md) |
|
|
108
|
+
| [github-review](../plugins/just-vibe/skills/github-review/SKILL.md) | Fixed line numbers or findings from an older head can become wrong after force-push; unchanged critical risks need explicit attribution. | [Review selection and evidence](../plugins/just-vibe/references/security/review.md); [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
109
|
+
| [github-address-review](../plugins/just-vibe/skills/github-address-review/SKILL.md) | A reviewer suggestion can be stale or introduce a regression; resolving a thread is a distinct remote action. | Technical method and pack guide in entry point |
|
|
110
|
+
| [github-fix-ci](../plugins/just-vibe/skills/github-fix-ci/SKILL.md) | Re-running unchanged code cannot repair an account spending limit; hiding a matrix entry discards coverage. | [Delivery evidence](../plugins/just-vibe/references/scenarios/delivery-evidence.md); [Dependency and execution provenance](../plugins/just-vibe/references/security/supply-chain.md) |
|
|
111
|
+
| [github-actions](../plugins/just-vibe/skills/github-actions/SKILL.md) | pull_request_target or workflow_run plus untrusted checkout/artifacts can cross a privilege boundary even if the workflow file is trusted. | [Delivery evidence](../plugins/just-vibe/references/scenarios/delivery-evidence.md); [Dependency and execution provenance](../plugins/just-vibe/references/security/supply-chain.md) |
|
|
112
|
+
| [github-release](../plugins/just-vibe/skills/github-release/SKILL.md) | Reusing an asset name for different bytes or moving a tag silently changes what users receive. | [Dependency and execution provenance](../plugins/just-vibe/references/security/supply-chain.md) |
|
|
113
|
+
|
|
114
|
+
## Vercel
|
|
115
|
+
|
|
116
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
117
|
+
|---|---|---|
|
|
118
|
+
| [vercel-audit](../plugins/just-vibe/skills/vercel-audit/SKILL.md) | Relinking to inspect settings mutates project state; local hoisting can conceal undeclared dependencies. | [Framework-specific review branches](../plugins/just-vibe/references/security/frameworks.md) |
|
|
119
|
+
| [vercel-build-fix](../plugins/just-vibe/skills/vercel-build-fix/SKILL.md) | A later wrapper exit hides the initial cause; supplying a production secret locally can conceal a missing preview scope. | [Delivery evidence](../plugins/just-vibe/references/scenarios/delivery-evidence.md) |
|
|
120
|
+
| [vercel-env](../plugins/just-vibe/skills/vercel-env/SKILL.md) | Public prefixes expose compiled values; changing a setting does not update already-built assets. | Technical method and pack guide in entry point |
|
|
121
|
+
| [vercel-preview](../plugins/just-vibe/skills/vercel-preview/SKILL.md) | Anonymous 401/403 from protection is not necessarily app failure; a branch alias may advance while checks run. | Technical method and pack guide in entry point |
|
|
122
|
+
| [vercel-runtime](../plugins/just-vibe/skills/vercel-runtime/SKILL.md) | A successful build proves no request health; an Edge/Node API mismatch needs a supported runtime choice, not suppressed errors. | [Delivery evidence](../plugins/just-vibe/references/scenarios/delivery-evidence.md) |
|
|
123
|
+
| [vercel-routing](../plugins/just-vibe/skills/vercel-routing/SKILL.md) | An SPA fallback returning HTML for JavaScript or API URLs can look like HTTP success while breaking clients. | Technical method and pack guide in entry point |
|
|
124
|
+
| [vercel-performance](../plugins/just-vibe/skills/vercel-performance/SKILL.md) | Comparing a cold miss before with a warm hit after does not demonstrate an improvement. | Technical method and pack guide in entry point |
|
|
125
|
+
| [vercel-release-check](../plugins/just-vibe/skills/vercel-release-check/SKILL.md) | Code rollback may fail once the schema or external effects have changed. | Technical method and pack guide in entry point |
|
|
126
|
+
|
|
127
|
+
## Vite
|
|
128
|
+
|
|
129
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
130
|
+
|---|---|---|
|
|
131
|
+
| [vite-setup](../plugins/just-vibe/skills/vite-setup/SKILL.md) | Copying a config for another major or adding a second package manager can create a setup that only works on one machine. | Technical method and pack guide in entry point |
|
|
132
|
+
| [vite-config](../plugins/just-vibe/skills/vite-config/SKILL.md) | A config file can execute arbitrary imports; read-only inspection should not evaluate it just to discover values. | Technical method and pack guide in entry point |
|
|
133
|
+
| [vite-hmr](../plugins/just-vibe/skills/vite-hmr/SKILL.md) | Full page reload and preserved hot state are different outcomes; disabling host checks is not a generic websocket repair. | Technical method and pack guide in entry point |
|
|
134
|
+
| [vite-env](../plugins/just-vibe/skills/vite-env/SKILL.md) | Prefixing a secret with VITE_ makes it public; booleans read from env may be strings with surprising truthiness. | [Framework-specific review branches](../plugins/just-vibe/references/security/frameworks.md) |
|
|
135
|
+
| [vite-bundle](../plugins/just-vibe/skills/vite-bundle/SKILL.md) | Removing a named import or counting source file sizes does not prove tree-shaking or network improvement. | Technical method and pack guide in entry point |
|
|
136
|
+
| [vite-chunks](../plugins/just-vibe/skills/vite-chunks/SKILL.md) | A smaller entry chunk can add serial requests or cause a stale HTML document to reference a deleted old chunk. | Technical method and pack guide in entry point |
|
|
137
|
+
| [vite-assets](../plugins/just-vibe/skills/vite-assets/SKILL.md) | A leading slash can escape a subpath deployment; a concatenated filename may never enter the build graph. | Technical method and pack guide in entry point |
|
|
138
|
+
| [vite-upgrade](../plugins/just-vibe/skills/vite-upgrade/SKILL.md) | A passing install with ignored peer conflicts does not establish refresh or production compatibility. | Technical method and pack guide in entry point |
|
|
139
|
+
|
|
140
|
+
## React
|
|
141
|
+
|
|
142
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
143
|
+
|---|---|---|
|
|
144
|
+
| [react-audit](../plugins/just-vibe/skills/react-audit/SKILL.md) | Missing memoization is not automatically a defect, and ordinary JSX text is escaped by React. | [Framework-specific review branches](../plugins/just-vibe/references/security/frameworks.md) |
|
|
145
|
+
| [react-rerenders](../plugins/just-vibe/skills/react-rerenders/SKILL.md) | Render counts include harmless work and development checks; memoization can retain stale behavior or cost more than recomputation. | Technical method and pack guide in entry point |
|
|
146
|
+
| [react-effects](../plugins/just-vibe/skills/react-effects/SKILL.md) | Suppressing dependency warnings conceals stale closures; aborting a request cannot undo a completed server mutation. | Technical method and pack guide in entry point |
|
|
147
|
+
| [react-state](../plugins/just-vibe/skills/react-state/SKILL.md) | Copying props into state on every update can erase user edits; a module variable can leak state between instances or server requests. | Technical method and pack guide in entry point |
|
|
148
|
+
| [react-component](../plugins/just-vibe/skills/react-component/SKILL.md) | ARIA labels alone do not implement keyboard behavior, focus management or controlled value semantics. | [dialog interaction](../plugins/just-vibe/references/scenarios/dialog.md); [combobox interaction](../plugins/just-vibe/references/scenarios/combobox.md); [date-picker interaction](../plugins/just-vibe/references/scenarios/date-picker.md) |
|
|
149
|
+
| [react-forms](../plugins/just-vibe/skills/react-forms/SKILL.md) | A disabled button alone does not prevent retries or duplicate server effects; number parsing can turn an empty field into zero. | Technical method and pack guide in entry point |
|
|
150
|
+
| [react-async](../plugins/just-vibe/skills/react-async/SKILL.md) | Canceling one waiter must not cancel shared work still owned by another; late rejection can delete a newer cache entry. | Technical method and pack guide in entry point |
|
|
151
|
+
| [react-hydration](../plugins/just-vibe/skills/react-hydration/SKILL.md) | Suppressing hydration warnings does not repair invalid markup or mismatched event/state attachment. | Technical method and pack guide in entry point |
|
|
152
|
+
|
|
153
|
+
## UI and frontend
|
|
154
|
+
|
|
155
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
156
|
+
|---|---|---|
|
|
157
|
+
| [ui-audit](../plugins/just-vibe/skills/ui-audit/SKILL.md) | A screenshot cannot establish keyboard behavior, contrast in every state or successful end-to-end completion. | Technical method and pack guide in entry point |
|
|
158
|
+
| [ui-system](../plugins/just-vibe/skills/ui-system/SKILL.md) | Renaming colors without updating focus, disabled, dark-mode or data-visualization states leaves an incomplete system. | Technical method and pack guide in entry point |
|
|
159
|
+
| [ui-states](../plugins/just-vibe/skills/ui-states/SKILL.md) | Replacing failed data with an empty-state message misrepresents the result and can encourage destructive user action. | Technical method and pack guide in entry point |
|
|
160
|
+
| [ui-responsive](../plugins/just-vibe/skills/ui-responsive/SKILL.md) | Hiding overflow can conceal controls; hover-only affordances fail on touch or keyboard. | Technical method and pack guide in entry point |
|
|
161
|
+
| [ui-accessibility](../plugins/just-vibe/skills/ui-accessibility/SKILL.md) | Passing an automated checker does not prove keyboard or screen-reader usability; positive tabindex creates fragile ordering. | Technical method and pack guide in entry point |
|
|
162
|
+
| [ui-motion](../plugins/just-vibe/skills/ui-motion/SKILL.md) | A smooth animation can still hide focus, block input or cause discomfort; reduced motion must preserve outcome and feedback. | Technical method and pack guide in entry point |
|
|
163
|
+
| [ui-visual-diff](../plugins/just-vibe/skills/ui-visual-diff/SKILL.md) | Approving a new screenshot merely because it differs converts a regression into the expected result. | Technical method and pack guide in entry point |
|
|
164
|
+
| [ui-flow](../plugins/just-vibe/skills/ui-flow/SKILL.md) | Optimizing one screen can break cross-screen state or erase work when users navigate backward. | Technical method and pack guide in entry point |
|
|
165
|
+
|
|
166
|
+
## Backend
|
|
167
|
+
|
|
168
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
169
|
+
|---|---|---|
|
|
170
|
+
| [backend-service](../plugins/just-vibe/skills/backend-service/SKILL.md) | Broad catch-and-success fallbacks can report an order created when its durable write failed. | [Framework-specific review branches](../plugins/just-vibe/references/security/frameworks.md); [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
171
|
+
| [backend-auth](../plugins/just-vibe/skills/backend-auth/SKILL.md) | Decoding a JWT is not signature/issuer/audience validation; accepting an access token as identity can cross protocol boundaries. | [Authentication scenarios](../plugins/just-vibe/references/scenarios/auth.md); [Identity and authorization](../plugins/just-vibe/references/security/identity.md); [Framework-specific review branches](../plugins/just-vibe/references/security/frameworks.md) |
|
|
172
|
+
| [backend-permissions](../plugins/just-vibe/skills/backend-permissions/SKILL.md) | A hidden button or unguessable identifier does not enforce permission; an admin in one tenant is not automatically a global admin. | [Identity and authorization](../plugins/just-vibe/references/security/identity.md) |
|
|
173
|
+
| [backend-jobs](../plugins/just-vibe/skills/backend-jobs/SKILL.md) | Acknowledging before durable progress loses work; assuming a timed-out worker stopped can duplicate an effect. | Technical method and pack guide in entry point |
|
|
174
|
+
| [backend-idempotency](../plugins/just-vibe/skills/backend-idempotency/SKILL.md) | An in-memory map fails across processes; deleting a pending key after a timeout can permit a second charge. | Technical method and pack guide in entry point |
|
|
175
|
+
| [backend-concurrency](../plugins/just-vibe/skills/backend-concurrency/SKILL.md) | A process mutex does not protect multiple servers, and a pre-transaction balance read can become stale. | [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
176
|
+
| [backend-cache](../plugins/just-vibe/skills/backend-cache/SKILL.md) | Old completion can resurrect invalidated data; treating zero or an empty list as a miss changes semantics. | Technical method and pack guide in entry point |
|
|
177
|
+
| [backend-resilience](../plugins/just-vibe/skills/backend-resilience/SKILL.md) | Retrying at every layer multiplies traffic; a timeout does not prove the remote operation failed. | Technical method and pack guide in entry point |
|
|
178
|
+
|
|
179
|
+
## APIs
|
|
180
|
+
|
|
181
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
182
|
+
|---|---|---|
|
|
183
|
+
| [api-design](../plugins/just-vibe/skills/api-design/SKILL.md) | Consistent JSON shape alone does not establish consistent business meaning or access control. | [Identity and authorization](../plugins/just-vibe/references/security/identity.md) |
|
|
184
|
+
| [api-openapi](../plugins/just-vibe/skills/api-openapi/SKILL.md) | OpenAPI 3.0 and 3.1 null/schema semantics differ; a valid schema can still document behavior the server never emits. | Technical method and pack guide in entry point |
|
|
185
|
+
| [api-breaking](../plugins/just-vibe/skills/api-breaking/SKILL.md) | An additive enum value or new required permission can break clients even without deleting a field. | Technical method and pack guide in entry point |
|
|
186
|
+
| [api-contract-test](../plugins/just-vibe/skills/api-contract-test/SKILL.md) | A provider-generated mock validating itself is circular evidence of compatibility. | Technical method and pack guide in entry point |
|
|
187
|
+
| [api-errors](../plugins/just-vibe/skills/api-errors/SKILL.md) | Returning 200 with an error-shaped body or retryable status for a permanent denial misleads clients. | Technical method and pack guide in entry point |
|
|
188
|
+
| [api-pagination](../plugins/just-vibe/skills/api-pagination/SKILL.md) | Offset shifts under writes and nonunique sort keys can skip or duplicate records; base64 is not tamper protection. | Technical method and pack guide in entry point |
|
|
189
|
+
| [api-webhooks](../plugins/just-vibe/skills/api-webhooks/SKILL.md) | Re-serialized JSON changes signed bytes; a valid signature does not prevent replay or duplicate processing. | [Identity and authorization](../plugins/just-vibe/references/security/identity.md) |
|
|
190
|
+
| [api-client](../plugins/just-vibe/skills/api-client/SKILL.md) | Static types disappear at runtime; automatically retrying every POST can repeat an external effect. | Technical method and pack guide in entry point |
|
|
191
|
+
|
|
192
|
+
## Databases
|
|
193
|
+
|
|
194
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
195
|
+
|---|---|---|
|
|
196
|
+
| [db-schema](../plugins/just-vibe/skills/db-schema/SKILL.md) | Application-only uniqueness races under concurrency; nullable columns can alter uniqueness semantics by engine/version. | Technical method and pack guide in entry point |
|
|
197
|
+
| [db-migrate](../plugins/just-vibe/skills/db-migrate/SKILL.md) | ORM migration generation does not establish safe production locking; a down migration cannot recreate discarded values. | [Delivery evidence](../plugins/just-vibe/references/scenarios/delivery-evidence.md) |
|
|
198
|
+
| [db-query](../plugins/just-vibe/skills/db-query/SKILL.md) | Two one-to-many joins can multiply totals; NOT IN with null values can produce unexpected exclusion. | Technical method and pack guide in entry point |
|
|
199
|
+
| [db-explain](../plugins/just-vibe/skills/db-explain/SKILL.md) | Abstract cost is not milliseconds; EXPLAIN ANALYZE executes the statement and may mutate data or consume production resources. | Technical method and pack guide in entry point |
|
|
200
|
+
| [db-index](../plugins/just-vibe/skills/db-index/SKILL.md) | More indexes increase write/storage cost; an index on a low-selectivity column may not improve the actual workload. | Technical method and pack guide in entry point |
|
|
201
|
+
| [db-integrity](../plugins/just-vibe/skills/db-integrity/SKILL.md) | Automatically deleting orphans can erase legitimate records awaiting asynchronous completion. | Technical method and pack guide in entry point |
|
|
202
|
+
| [db-locks](../plugins/just-vibe/skills/db-locks/SKILL.md) | The busiest blocked query may be a victim; terminating a session is an operational mutation with rollback consequences. | Technical method and pack guide in entry point |
|
|
203
|
+
| [db-access](../plugins/just-vibe/skills/db-access/SKILL.md) | Table owners or bypass roles can make policy tests pass incorrectly; pooled session tenant state can leak into the next request. | [Identity and authorization](../plugins/just-vibe/references/security/identity.md); [Framework-specific review branches](../plugins/just-vibe/references/security/frameworks.md) |
|
|
204
|
+
|
|
205
|
+
## Data engineering
|
|
206
|
+
|
|
207
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
208
|
+
|---|---|---|
|
|
209
|
+
| [data-profile](../plugins/just-vibe/skills/data-profile/SKILL.md) | Converting numeric-looking IDs or imputing during profiling silently changes evidence. | Technical method and pack guide in entry point |
|
|
210
|
+
| [data-contract](../plugins/just-vibe/skills/data-contract/SKILL.md) | Type-valid data can still be wrong in units, timezone or row grain. | Technical method and pack guide in entry point |
|
|
211
|
+
| [data-pipeline](../plugins/just-vibe/skills/data-pipeline/SKILL.md) | Advancing a checkpoint before committing output silently loses records after a crash. | Technical method and pack guide in entry point |
|
|
212
|
+
| [data-incremental](../plugins/just-vibe/skills/data-incremental/SKILL.md) | A maximum event timestamp alone skips equal-timestamp rows and late arrivals; updates and tombstones need semantics. | Technical method and pack guide in entry point |
|
|
213
|
+
| [data-backfill](../plugins/just-vibe/skills/data-backfill/SKILL.md) | A successful batch counter does not prove all rows were covered, and retrying non-idempotent transforms can corrupt values. | Technical method and pack guide in entry point |
|
|
214
|
+
| [data-reconcile](../plugins/just-vibe/skills/data-reconcile/SKILL.md) | Equal counts or totals can hide missing and duplicated rows that cancel out. | Technical method and pack guide in entry point |
|
|
215
|
+
| [data-lineage](../plugins/just-vibe/skills/data-lineage/SKILL.md) | An import graph or column-name match does not prove runtime provenance. | Technical method and pack guide in entry point |
|
|
216
|
+
| [data-quality](../plugins/just-vibe/skills/data-quality/SKILL.md) | A green dashboard can reflect a query that stopped receiving rows rather than healthy data. | Technical method and pack guide in entry point |
|
|
217
|
+
|
|
218
|
+
## ML data
|
|
219
|
+
|
|
220
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
221
|
+
|---|---|---|
|
|
222
|
+
| [ml-frame](../plugins/just-vibe/skills/ml-frame/SKILL.md) | Optimizing an available label can answer a different question from the real decision; missing follow-up is not a negative outcome. | Technical method and pack guide in entry point |
|
|
223
|
+
| [ml-dataset](../plugins/just-vibe/skills/ml-dataset/SKILL.md) | More rows do not remove survivor bias or dependence between observations. | Technical method and pack guide in entry point |
|
|
224
|
+
| [ml-labels](../plugins/just-vibe/skills/ml-labels/SKILL.md) | Majority vote can erase systematic ambiguity; labels recorded after prediction may be valid outcomes but unavailable for historical fitting. | Technical method and pack guide in entry point |
|
|
225
|
+
| [ml-split](../plugins/just-vibe/skills/ml-split/SKILL.md) | Random splits can leak repeated entities, while universal group holdout can test a different task than the intended deployment. | Technical method and pack guide in entry point |
|
|
226
|
+
| [ml-leakage](../plugins/just-vibe/skills/ml-leakage/SKILL.md) | Correlation or overlapping metadata alone does not prove leakage; filtering versions before selecting the visible revision can resurrect stale data. | Technical method and pack guide in entry point |
|
|
227
|
+
| [ml-features](../plugins/just-vibe/skills/ml-features/SKILL.md) | Target encoding or imputation fitted outside the training fold contaminates validation; feature importance is not causal effect. | Technical method and pack guide in entry point |
|
|
228
|
+
| [ml-imbalance](../plugins/just-vibe/skills/ml-imbalance/SKILL.md) | Accuracy can hide zero minority recall; resampling changes prevalence and can distort uncorrected probabilities. | Technical method and pack guide in entry point |
|
|
229
|
+
| [ml-dataset-version](../plugins/just-vibe/skills/ml-dataset-version/SKILL.md) | A filename, seed or hash of only a sample cannot identify the full dataset. | Technical method and pack guide in entry point |
|
|
230
|
+
|
|
231
|
+
## ML experimentation
|
|
232
|
+
|
|
233
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
234
|
+
|---|---|---|
|
|
235
|
+
| [ml-baseline](../plugins/just-vibe/skills/ml-baseline/SKILL.md) | A strong model with a different split is not a fair baseline; test-set selection makes later comparisons optimistic. | Technical method and pack guide in entry point |
|
|
236
|
+
| [ml-train](../plugins/just-vibe/skills/ml-train/SKILL.md) | Restoring weights alone is not exact resume; a seed alone does not guarantee deterministic kernels or data order. | [Training scenarios](../plugins/just-vibe/references/scenarios/training.md) |
|
|
237
|
+
| [ml-debug-training](../plugins/just-vibe/skills/ml-debug-training/SKILL.md) | Switching architecture can conceal a detached graph, wrong target scale or optimizer that never updates parameters. | [Language and runtime review methods](../plugins/just-vibe/references/scenarios/language-review.md) |
|
|
238
|
+
| [ml-tune](../plugins/just-vibe/skills/ml-tune/SKILL.md) | More trials can overfit the validation set; dropping failed runs understates cost and instability. | Technical method and pack guide in entry point |
|
|
239
|
+
| [ml-ablation](../plugins/just-vibe/skills/ml-ablation/SKILL.md) | A changed preprocessing pipeline or compute budget can confound a claimed component improvement. | Technical method and pack guide in entry point |
|
|
240
|
+
| [ml-experiments](../plugins/just-vibe/skills/ml-experiments/SKILL.md) | Same metric names may hide different denominators, positive classes or evaluation populations. | [Recorded experiment comparisons](../plugins/just-vibe/references/experiments.md) |
|
|
241
|
+
| [ml-reproduce](../plugins/just-vibe/skills/ml-reproduce/SKILL.md) | Matching a seed or top-line metric does not establish the same data, selection process or training trajectory. | Technical method and pack guide in entry point |
|
|
242
|
+
| [ml-training-cost](../plugins/just-vibe/skills/ml-training-cost/SKILL.md) | GPU utilization alone can hide pipeline stalls; mixed precision or larger batches can change convergence and effective optimization. | Technical method and pack guide in entry point |
|
|
243
|
+
|
|
244
|
+
## ML evaluation
|
|
245
|
+
|
|
246
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
247
|
+
|---|---|---|
|
|
248
|
+
| [ml-evaluate](../plugins/just-vibe/skills/ml-evaluate/SKILL.md) | Treating every correlated row as independent can make confidence intervals artificially narrow. | [Recorded experiment comparisons](../plugins/just-vibe/references/experiments.md) |
|
|
249
|
+
| [ml-error-analysis](../plugins/just-vibe/skills/ml-error-analysis/SKILL.md) | Anecdotal errors or explanation scores do not establish a causal pattern across the population. | Technical method and pack guide in entry point |
|
|
250
|
+
| [ml-slices](../plugins/just-vibe/skills/ml-slices/SKILL.md) | Tiny slices and many comparisons can produce dramatic noise; aggregate improvement can hide a harmed cohort. | [Recorded experiment comparisons](../plugins/just-vibe/references/experiments.md) |
|
|
251
|
+
| [ml-calibrate](../plugins/just-vibe/skills/ml-calibrate/SKILL.md) | Ranking quality does not imply probability accuracy; coarse bins or shifted prevalence can conceal miscalibration. | Technical method and pack guide in entry point |
|
|
252
|
+
| [ml-threshold](../plugins/just-vibe/skills/ml-threshold/SKILL.md) | A threshold maximizing F1 may violate a daily capacity or false-positive budget. | Technical method and pack guide in entry point |
|
|
253
|
+
| [ml-robustness](../plugins/just-vibe/skills/ml-robustness/SKILL.md) | Arbitrary corruption may not represent deployment, and invariance is wrong when the perturbation should change the answer. | Technical method and pack guide in entry point |
|
|
254
|
+
| [ml-explain](../plugins/just-vibe/skills/ml-explain/SKILL.md) | Attributions are not causal effects; correlated inputs or impossible counterfactuals can make an explanation misleading. | Technical method and pack guide in entry point |
|
|
255
|
+
| [ml-report](../plugins/just-vibe/skills/ml-report/SKILL.md) | Omitting failed runs or weak slices produces a misleading model story even if the best metric is correct. | Technical method and pack guide in entry point |
|
|
256
|
+
|
|
257
|
+
## ML deployment
|
|
258
|
+
|
|
259
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
260
|
+
|---|---|---|
|
|
261
|
+
| [ml-package](../plugins/just-vibe/skills/ml-package/SKILL.md) | Pickle-style loading can execute code; matching a model filename does not establish trusted provenance or preprocessing parity. | [Files and resource limits](../plugins/just-vibe/references/security/files.md) |
|
|
262
|
+
| [ml-serving](../plugins/just-vibe/skills/ml-serving/SKILL.md) | Unbounded batches or concurrent model copies can exhaust memory; returning a default prediction hides infrastructure failure. | Technical method and pack guide in entry point |
|
|
263
|
+
| [ml-batch](../plugins/just-vibe/skills/ml-batch/SKILL.md) | Restarting with a different model under the same output partition silently mixes incompatible predictions. | Technical method and pack guide in entry point |
|
|
264
|
+
| [ml-parity](../plugins/just-vibe/skills/ml-parity/SKILL.md) | Equal tensor shape does not imply equal feature meaning; silently reordered columns can produce plausible wrong scores. | Technical method and pack guide in entry point |
|
|
265
|
+
| [ml-inference-perf](../plugins/just-vibe/skills/ml-inference-perf/SKILL.md) | Timing asynchronous GPU dispatch without synchronization underreports work; throughput gains may violate tail-latency requirements. | Technical method and pack guide in entry point |
|
|
266
|
+
| [ml-drift](../plugins/just-vibe/skills/ml-drift/SKILL.md) | A small p-value on a huge sample can flag irrelevant change, while missing labels prevent conclusions about accuracy. | Technical method and pack guide in entry point |
|
|
267
|
+
| [ml-monitor](../plugins/just-vibe/skills/ml-monitor/SKILL.md) | Missing outcomes can bias observed accuracy; unchanged inputs do not prove unchanged target relationships. | Technical method and pack guide in entry point |
|
|
268
|
+
| [ml-rollout](../plugins/just-vibe/skills/ml-rollout/SKILL.md) | Shadow requests must not duplicate real effects; early unlabeled traffic only establishes operational behavior. | Technical method and pack guide in entry point |
|
|
269
|
+
|
|
270
|
+
## LLMs and retrieval
|
|
271
|
+
|
|
272
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
273
|
+
|---|---|---|
|
|
274
|
+
| [llm-evals](../plugins/just-vibe/skills/llm-evals/SKILL.md) | A fluent answer or a judge score alone does not prove task completion; reused development cases invite overfitting. | Technical method and pack guide in entry point |
|
|
275
|
+
| [llm-prompt](../plugins/just-vibe/skills/llm-prompt/SKILL.md) | Adding every past exception can create conflicting instructions and regress ordinary tasks. | Technical method and pack guide in entry point |
|
|
276
|
+
| [llm-structured](../plugins/just-vibe/skills/llm-structured/SKILL.md) | Valid JSON can contain fabricated IDs or inconsistent totals; filling required fields with invented defaults corrupts meaning. | Technical method and pack guide in entry point |
|
|
277
|
+
| [llm-rag](../plugins/just-vibe/skills/llm-rag/SKILL.md) | A relevant unauthorized chunk is still a data leak; quoted text may contain hostile instructions that must remain data. | Technical method and pack guide in entry point |
|
|
278
|
+
| [llm-retrieval](../plugins/just-vibe/skills/llm-retrieval/SKILL.md) | Improving final prose cannot recover a passage never retrieved; aggregate recall can hide access-filter leaks. | Technical method and pack guide in entry point |
|
|
279
|
+
| [llm-tools](../plugins/just-vibe/skills/llm-tools/SKILL.md) | A schema-valid request can still target the wrong account; model text cannot grant permission to execute it. | Technical method and pack guide in entry point |
|
|
280
|
+
| [llm-injection](../plugins/just-vibe/skills/llm-injection/SKILL.md) | A refusal in the final response does not prove no unsafe tool call occurred; keyword blocking is not a general defense. | Technical method and pack guide in entry point |
|
|
281
|
+
| [llm-cost](../plugins/just-vibe/skills/llm-cost/SKILL.md) | Lower price per call can raise cost per completed task through retries or quality failures. | Technical method and pack guide in entry point |
|
|
282
|
+
|
|
283
|
+
## Testing
|
|
284
|
+
|
|
285
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
286
|
+
|---|---|---|
|
|
287
|
+
| [test-unit](../plugins/just-vibe/skills/test-unit/SKILL.md) | Asserting internal helper calls or computing expected results with the implementation repeats its mistakes. | Technical method and pack guide in entry point |
|
|
288
|
+
| [test-integration](../plugins/just-vibe/skills/test-integration/SKILL.md) | An in-memory substitute may not match transaction isolation, collation or permission behavior of the deployed engine. | Technical method and pack guide in entry point |
|
|
289
|
+
| [test-e2e](../plugins/just-vibe/skills/test-e2e/SKILL.md) | A screenshot or HTTP 200 alone does not prove a completed transaction or accessible interaction. | Technical method and pack guide in entry point |
|
|
290
|
+
| [test-regression](../plugins/just-vibe/skills/test-regression/SKILL.md) | A missing import or setup timeout on the old revision does not establish regression sensitivity. | Technical method and pack guide in entry point |
|
|
291
|
+
| [test-flaky](../plugins/just-vibe/skills/test-flaky/SKILL.md) | Increasing timeouts, retries or skips can hide nondeterminism rather than repair it. | Technical method and pack guide in entry point |
|
|
292
|
+
| [test-fixtures](../plugins/just-vibe/skills/test-fixtures/SKILL.md) | A globally shared mutable fixture can make tests order-dependent; overly permissive mocks erase real constraints. | Technical method and pack guide in entry point |
|
|
293
|
+
| [test-load](../plugins/just-vibe/skills/test-load/SKILL.md) | Closed-loop clients can hide overload by slowing request generation; averages conceal long tails and errors. | Technical method and pack guide in entry point |
|
|
294
|
+
| [test-property](../plugins/just-vibe/skills/test-property/SKILL.md) | A round-trip property can pass when encoder and decoder share the same defect; excessive filtering hides hard inputs. | Technical method and pack guide in entry point |
|
|
295
|
+
|
|
296
|
+
## Security
|
|
297
|
+
|
|
298
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
299
|
+
|---|---|---|
|
|
300
|
+
| [security-threat-model](../plugins/just-vibe/skills/security-threat-model/SKILL.md) | A generic OWASP list is not a project threat model, and a hypothetical deployment must not become an observed exposure. | [Review selection and evidence](../plugins/just-vibe/references/security/review.md) |
|
|
301
|
+
| [security-authz](../plugins/just-vibe/skills/security-authz/SKILL.md) | Authentication middleware proves identity, not ownership; an admin test can bypass the same controls being evaluated. | [Identity and authorization](../plugins/just-vibe/references/security/identity.md) |
|
|
302
|
+
| [security-secrets](../plugins/just-vibe/skills/security-secrets/SKILL.md) | Testing a suspected credential against its provider exposes it and exceeds source review; deletion does not revoke an exposed credential. | [Dependency and execution provenance](../plugins/just-vibe/references/security/supply-chain.md); [Scanner selection and evidence](../plugins/just-vibe/references/security/scanners.md) |
|
|
303
|
+
| [security-inputs](../plugins/just-vibe/skills/security-inputs/SKILL.md) | A dangerous-looking API with trusted constants is not automatically exploitable; input validation alone does not make every interpreter safe. | [Injection and interpreter boundaries](../plugins/just-vibe/references/security/injection.md); [Scanner selection and evidence](../plugins/just-vibe/references/security/scanners.md) |
|
|
304
|
+
| [security-uploads](../plugins/just-vibe/skills/security-uploads/SKILL.md) | Filename extension and client MIME type do not establish content; archive members and symlinks can escape a checked top-level path. | [Files and resource limits](../plugins/just-vibe/references/security/files.md) |
|
|
305
|
+
| [security-dependencies](../plugins/just-vibe/skills/security-dependencies/SKILL.md) | An audit error or unsupported lockfile is unknown, not clean; a CVE match alone does not prove the vulnerable function is reachable. | [Dependency and execution provenance](../plugins/just-vibe/references/security/supply-chain.md); [Scanner selection and evidence](../plugins/just-vibe/references/security/scanners.md) |
|
|
306
|
+
| [security-config](../plugins/just-vibe/skills/security-config/SKILL.md) | Debug defaults, broad proxy trust or client-visible secrets can invalidate otherwise safe code; development settings are not production evidence. | [Dependency and execution provenance](../plugins/just-vibe/references/security/supply-chain.md); [Framework-specific review branches](../plugins/just-vibe/references/security/frameworks.md) |
|
|
307
|
+
| [security-fix](../plugins/just-vibe/skills/security-fix/SKILL.md) | Hiding a scanner warning or adding client validation can leave the server exploit path intact. | [Review selection and evidence](../plugins/just-vibe/references/security/review.md); [Injection and interpreter boundaries](../plugins/just-vibe/references/security/injection.md); [Scanner selection and evidence](../plugins/just-vibe/references/security/scanners.md) |
|
|
308
|
+
|
|
309
|
+
## Operations
|
|
310
|
+
|
|
311
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
312
|
+
|---|---|---|
|
|
313
|
+
| [ops-incident](../plugins/just-vibe/skills/ops-incident/SKILL.md) | A nearby deployment is correlation, not proof; missing telemetry cannot establish no impact. | Technical method and pack guide in entry point |
|
|
314
|
+
| [ops-logs](../plugins/just-vibe/skills/ops-logs/SKILL.md) | Repeated downstream errors can all stem from one upstream failure; log absence can reflect sampling. | Technical method and pack guide in entry point |
|
|
315
|
+
| [ops-observability](../plugins/just-vibe/skills/ops-observability/SKILL.md) | User IDs in metric labels cause unbounded cardinality; logging full payloads can expose credentials or private data. | Technical method and pack guide in entry point |
|
|
316
|
+
| [ops-alerts](../plugins/just-vibe/skills/ops-alerts/SKILL.md) | A threshold without a responder action creates noise; no samples must not silently become healthy. | Technical method and pack guide in entry point |
|
|
317
|
+
| [ops-runbook](../plugins/just-vibe/skills/ops-runbook/SKILL.md) | A plausible command copied from another version or environment can be dangerous; documentation is not evidence it was exercised. | Technical method and pack guide in entry point |
|
|
318
|
+
| [ops-container](../plugins/just-vibe/skills/ops-container/SKILL.md) | Deleting a secret in a later layer leaves it in earlier layers; a running process does not prove readiness or graceful shutdown. | Technical method and pack guide in entry point |
|
|
319
|
+
| [ops-restore](../plugins/just-vibe/skills/ops-restore/SKILL.md) | A readable archive or backup job success does not prove restoration; testing on production can overwrite current data. | Technical method and pack guide in entry point |
|
|
320
|
+
| [ops-postmortem](../plugins/just-vibe/skills/ops-postmortem/SKILL.md) | Invented certainty, blame or assigned owners hides uncertainty and cannot support useful prevention. | Technical method and pack guide in entry point |
|
|
321
|
+
|
|
322
|
+
## Installation
|
|
323
|
+
|
|
324
|
+
| Workflow | Specific failure or ambiguity addressed | Conditional references |
|
|
325
|
+
|---|---|---|
|
|
326
|
+
| [setup](../plugins/just-vibe/skills/setup/SKILL.md) | A package-manager install alone does not register a native plugin; deleting package cache must not break the managed payload. | Technical method and pack guide in entry point |
|