@tgoodington/intuition 11.7.2 → 11.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.
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: intuition-web-researcher
3
+ description: >
4
+ Web-only research agent for Intuition workflows. Use when a skill needs to verify
5
+ technical decisions against the current landscape — library currency, deprecation
6
+ status, alternatives, current best practices. Returns concise findings tagged
7
+ confirmed / refine / replace.
8
+ model: haiku
9
+ tools: WebSearch, WebFetch
10
+ permissionMode: dontAsk
11
+ maxTurns: 20
12
+ ---
13
+
14
+ You are a fast, focused web researcher verifying technical decisions against the current landscape.
15
+
16
+ When given a list of load-bearing technical decisions:
17
+
18
+ 1. For each decision, search the web for current status: is the choice active or deprecated, is the version recent, are there newer alternatives, are there known issues or shifts in best practice.
19
+ 2. Use WebFetch to read primary sources — project docs, release notes, changelogs — when search results are ambiguous or thin.
20
+ 3. Skip decisions that don't involve external technology (internal patterns, codebase-specific structure). Respond "no verification needed" for those and move on.
21
+ 4. Return findings tagged with one of:
22
+ - **confirmed** — choice is current and appropriate; no change needed
23
+ - **refine** — choice is sound but a detail should change (newer minor version, recommended pattern shift, configuration change)
24
+ - **replace** — a meaningfully better option exists for this use case; name it and explain the tradeoff
25
+ 5. Cite sources (URLs or doc titles) for any non-confirmed finding so the calling skill can judge weight.
26
+ 6. Stay under 400 words total. Be evidence-based, not speculative. If a decision can't be cleanly verified from public sources, say so explicitly rather than guessing.
27
+
28
+ Prioritize signal over coverage. Your job is to surface meaningful corrections, not to exhaustively review every choice.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tgoodington/intuition",
3
- "version": "11.7.2",
3
+ "version": "11.8.0",
4
4
  "description": "Domain-adaptive workflow system for Claude Code. Includes the Enuncia pipeline (discovery, compose, design, execute, verify) and the classic pipeline (prompt, outline, assemble, detail, build, test, implement).",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -81,7 +81,8 @@ try {
81
81
  'intuition-researcher.md',
82
82
  'intuition-code-writer.md',
83
83
  'intuition-reviewer.md',
84
- 'intuition-synthesizer.md'
84
+ 'intuition-synthesizer.md',
85
+ 'intuition-web-researcher.md'
85
86
  ];
86
87
 
87
88
  agentsToRemove.forEach(agentFile => {
@@ -178,6 +178,21 @@ For each group, determine:
178
178
  - **Interfaces**: How does this group's output connect to other groups? What data flows between them?
179
179
  - **Patterns**: What design patterns apply? What conventions from the codebase (or the project's chosen stack) should be followed?
180
180
 
181
+ ### 3b.5. Verify Against Current Landscape
182
+
183
+ After making initial design decisions, spawn `intuition-web-researcher` to verify load-bearing technical choices against the current landscape — library currency, deprecation status, alternatives, current best practices.
184
+
185
+ **Always run this step.** Even for groups that feel obvious, the agent can respond "no verification needed" for choices that don't touch external technology — that's the trivial-case escape hatch built into the agent.
186
+
187
+ **Input:** the list of design decisions from 3b that involve external technology (libraries, frameworks, APIs, SaaS choices, well-known patterns). Skip purely internal architectural decisions — codebase research in 3a already covered those.
188
+
189
+ **Apply findings to the design silently:**
190
+ - **confirmed** → no change
191
+ - **refine** → update the design in place (newer version, adjusted pattern, configuration change). Do not surface to the user.
192
+ - **replace** → update the design to use the better option. Do not surface to the user, EXCEPT: if the replaced option was explicitly named in the discovery brief, include one line when presenting the group in 3e — e.g., "Note: the brief named X; verification surfaced Y as a better fit because [one-line reason]."
193
+
194
+ The user sees the refined recommendation in 3e, not the research process or the intermediate draft. This step mirrors the way a careful engineer works: form an initial plan, vet it against the current state of the world, refine, then present.
195
+
181
196
  ### 3c. Decision Routing
182
197
 
183
198
  Check the discovery brief's Decision Posture and route decisions accordingly: