start-vibing 4.4.8 → 4.4.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "start-vibing",
3
- "version": "4.4.8",
3
+ "version": "4.4.10",
4
4
  "description": "Setup Claude Code with 9 plugins, 6 community skills, and 8 MCP servers. Parallel install, auto-accept, superpowers + ralph-loop. e2e-audit 0.2.0 refactor (skill-only, no agents): SessionStart hook + slash command make the skill keyword-invokable (\"e2e audit\", \"roda o e2e\", \"integration test\", \"test coverage gaps\"). Source-first discovery via detect-stack, discover-routes (Next app/pages/Remix/SvelteKit/Nuxt/Astro), discover-api-surface (HTTP handlers, tRPC procedures, GraphQL, server actions, middleware auth), inventory-existing-tests (preserve prior corpus + sha256 drift hash), and detect-uncovered (branch-diff vs origin/main finds changes not covered by existing specs). Report-then-ask between mapping and Playwright run; post-run-feedback report before writing findings. SHOT+TRACE+ASSERT+SOURCE evidence quad per non-meta finding; meta rules (coverage-gap-*, uncovered-*, test-drift, stack-detect, post-run-feedback) exempt. verify-audit.sh enforces schema + quad. Generic (no project leakage). super-design 0.7.0 carries over.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: research-scout
3
- description: MUST BE USED at the start of every research run to produce scout-plan.json. Decomposes the user's question, scans /docs/research/ for cache hits, classifies the topic into a content-type bucket (fast/medium/slow/permanent), picks a domain playbook, and proposes a scoped research plan with estimated query budget. Stops before any web query so the orchestrator can run the report-then-ask gate.
3
+ description: MUST BE USED at the start of every research run to produce scout-plan.json. Decomposes the user's question, scans /docs/research/ for cache hits, classifies the topic into a content-type bucket (fast/medium/slow/permanent), picks a domain playbook, and proposes a scoped research plan with estimated query budget. Returns scout-plan.json so the orchestrator can immediately auto-dispatch research-query (no confirmation gate).
4
4
  tools: Read, Write, Glob, Grep, Bash
5
5
  model: haiku
6
6
  color: cyan
@@ -113,7 +113,8 @@ Write to `$SESSION_DIR/scout-plan.json`:
113
113
 
114
114
  Return to the orchestrator a short text with: slug, decomposition count,
115
115
  estimated queries, cache strategy, and any blockers. The orchestrator
116
- will run the report-then-ask gate with the user.
116
+ prints a one-line summary and immediately dispatches research-query (no
117
+ confirmation gate — user can interrupt mid-run).
117
118
 
118
119
  # Hard rules
119
120
 
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env bash
2
2
  cat <<'EOF'
3
- {"hookSpecificOutput":{"hookEventName":"SessionStart","additionalContext":"When the user mentions research, investigate, find info, search for, look up, evaluate, compare, audit literature, competitor analysis, market research, library evaluation, prior art, pesquisar, pesquisa, pesquise, investigar, buscar info, procurar info, comparar, avaliar biblioteca, análise de mercado, análise de concorrentes — or asks to evaluate/compare/understand any technology, framework, vendor, methodology, or domain — you MUST invoke the research skill. Do not improvise a search plan, do not start WebSearch blind, do not skip the cache check. Read .claude/skills/research/SKILL.md first, then follow its entry flow precisely. The skill uses source-first scout (cache check + scoped plan) BEFORE touching the web, and emits a report-then-ask gate after scouting. Every non-meta claim must carry the URL+QUOTE+ACCESSED-AT+VERIFY-METHOD evidence quad. Output goes to /docs/research/<topic>.md, never to .claude/skills/research-cache/. Triangulation follows Denzin's 4 types — republication chains count as one source, not three. Content-type freshness has 4 buckets (fast/medium/slow/permanent); do not apply fast-bucket aging to slow-bucket topics. Hand off to super-design for UX audits and e2e-audit for test audits — research does not replace either."}}
3
+ {"hookSpecificOutput":{"hookEventName":"SessionStart","additionalContext":"When the user mentions research, investigate, find info, search for, look up, evaluate, compare, audit literature, competitor analysis, market research, library evaluation, prior art, pesquisar, pesquisa, pesquise, investigar, buscar info, procurar info, comparar, avaliar biblioteca, análise de mercado, análise de concorrentes — or asks to evaluate/compare/understand any technology, framework, vendor, methodology, or domain — you MUST invoke the research skill. Do not improvise a search plan, do not start WebSearch blind, do not skip the cache check. Read .claude/skills/research/SKILL.md first, then follow its entry flow precisely. The skill uses source-first scout (cache check + scoped plan) BEFORE touching the web, then auto-dispatches research-query immediately (no confirmation gate user can interrupt mid-run). Every non-meta claim must carry the URL+QUOTE+ACCESSED-AT+VERIFY-METHOD evidence quad. Output goes to /docs/research/<topic>.md, never to .claude/skills/research-cache/. Triangulation follows Denzin's 4 types — republication chains count as one source, not three. Content-type freshness has 4 buckets (fast/medium/slow/permanent); do not apply fast-bucket aging to slow-bucket topics. Hand off to super-design for UX audits and e2e-audit for test audits — research does not replace either."}}
4
4
  EOF
@@ -27,7 +27,8 @@ Four-phase pipeline with 4 specialist agents:
27
27
  1. **Scout** (research-scout, Haiku) — decomposes the user's question, checks
28
28
  `/docs/research/` for existing fresh findings (content-type-calibrated
29
29
  freshness — fast/medium/slow/permanent buckets), proposes a scoped research
30
- plan + estimated query budget. Stops here for `report-then-ask` gate.
30
+ plan + estimated query budget. Hands directly to Query — NO confirmation
31
+ gate (auto-proceed). User can interrupt mid-run if needed.
31
32
  2. **Query** (research-query, Sonnet) — executes web/library searches in
32
33
  parallel, fetches pages via WebFetch + context7 (for library docs),
33
34
  extracts atomic claims with URL+QUOTE+ACCESSED-AT evidence, dumps to
@@ -84,20 +85,18 @@ Pass `cache-check.json` + the user question. Scout returns
84
85
  }
85
86
  ```
86
87
 
87
- ### Step 3 — Report-then-ask (HARD STOP)
88
+ ### Step 3 — Auto-proceed (no confirmation gate)
88
89
 
89
- Present a ≤6-line summary to the user:
90
+ Print a ≤4-line summary for visibility, then immediately dispatch Query.
91
+ Do NOT wait for user confirmation. The user can `/cancel` or interrupt
92
+ mid-run if scope is wrong.
90
93
 
91
94
  ```
92
- Topic: react-server-components-data-fetching
93
- Domain: software-engineering · Playbook: library-evaluation
94
- Plan: 3 sub-questions, ~12 queries, ~8 min
95
- Cache: delta-update of /docs/research/react-server-components-data-fetching.md (47d old)
96
- Proceed? (y / scope-down / cancel)
95
+ Topic: <slug> · Plan: <N> sub-questions, ~<Q> queries, ~<M> min
96
+ Cache: <strategy> · Proceeding to query...
97
97
  ```
98
98
 
99
- Do NOT proceed to Step 4 without an explicit reply. Mirror the e2e-audit
100
- report-then-ask gate.
99
+ Exception: if `--dry-run` flag is set, stop here and return scout-plan.json.
101
100
 
102
101
  ### Step 4 — Query (Task tool → research-query)
103
102
 
@@ -253,7 +252,7 @@ fingerprints + ownership trees.
253
252
  ## Hard rules
254
253
 
255
254
  1. **Cache first**. Never burn query tokens on a fresh cache hit.
256
- 2. **Report-then-ask**. After scout, STOP for user confirmation before query.
255
+ 2. **Auto-proceed after scout**. Print summary, immediately dispatch query. NO confirmation gate. User can interrupt mid-run.
257
256
  3. **Every claim has URL+QUOTE+ACCESSED-AT+VERIFY-METHOD**. Verify gate fails closed on violations.
258
257
  4. **No fabricated citations, ever**. If a quote cannot be greppped in the fetched page, the claim is dropped.
259
258
  5. **Triangulate by Denzin type, not raw count**. 3 republications of one wire story = 1 source.