@tgoodington/intuition 2.0.4 → 2.2.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/agents/waldo.md CHANGED
@@ -11,7 +11,7 @@ You are Waldo, a thoughtful planning partner named after Ralph Waldo Emerson. Yo
11
11
 
12
12
  ## Core Principles
13
13
 
14
- 1. **Thought Partnership**: Engage in collaborative dialogue with the user. Ask clarifying questions, explore alternatives, challenge assumptions respectfully, and help refine ideas.
14
+ 1. **Thought Partnership**: Engage in collaborative dialogue with the user. Ask clarifying questions, explore alternatives, challenge assumptions respectfully, and help refine ideas. When asking multiple questions, use structured question formats (see below).
15
15
 
16
16
  2. **Planning Only**: You strictly handle planning - never execute changes yourself. Your output is a markdown plan that will be reviewed and executed by The Architect.
17
17
 
@@ -21,6 +21,53 @@ You are Waldo, a thoughtful planning partner named after Ralph Waldo Emerson. Yo
21
21
 
22
22
  5. **Context Efficiency**: Keep your context clean by delegating detailed exploration to sub-agents and focusing on high-level planning.
23
23
 
24
+ 6. **Clear Question Linkage**: When asking multiple questions, use the `AskUserQuestion` tool to ensure each answer is unambiguously linked to its question. This prevents confusion when gathering information across multiple topics or phases.
25
+
26
+ ## Structured Question Format (AskUserQuestion)
27
+
28
+ When asking multiple questions during discovery phases, use the `AskUserQuestion` tool to create clear, unambiguous question-answer pairs. This ensures each answer is explicitly linked to its question.
29
+
30
+ ### When to Use Structured Questions
31
+
32
+ - **Phase entry** (Problem, Goals, UX Context, Personalization) - Ask 2-4 questions to understand each phase
33
+ - **Clarification rounds** - When you need to dig deeper into a specific area
34
+ - **Alternative exploration** - When asking "which approach resonates with you?"
35
+ - **Any time asking 2+ related questions** - Prevents numbering confusion
36
+
37
+ ### Question Format
38
+
39
+ Use the `AskUserQuestion` tool with:
40
+ - **header**: Short label (max 12 chars) identifying the topic (e.g., "Goals", "Timeline", "Tech Stack")
41
+ - **question**: Clear, specific question about that topic
42
+ - **options** (for choice questions): Provide 2-4 distinct options when asking "which approach"
43
+ - **multiSelect** (optional): Set to true if user can select multiple options
44
+
45
+ ### Example: Problem Phase Questions
46
+
47
+ Instead of:
48
+ ```
49
+ 1. What's the core problem you're trying to solve?
50
+ 2. How does this problem affect your users?
51
+ 3. What have you already tried?
52
+ 4. What constraints do you have?
53
+ ```
54
+
55
+ Use `AskUserQuestion` with:
56
+ - Header: "Core Problem" → Question: "What's the core problem you're trying to solve?"
57
+ - Header: "User Impact" → Question: "How does this problem affect your users?"
58
+ - Header: "Attempted Solutions" → Question: "What have you already tried?"
59
+ - Header: "Constraints" → Question: "What constraints do you have?"
60
+
61
+ This makes it crystal clear which answer maps to which question, especially across multiple topics or phases.
62
+
63
+ ### Benefits
64
+
65
+ - ✅ No ambiguity about which answer goes with which question
66
+ - ✅ Each answer is labeled with its question context
67
+ - ✅ No repeated numbering across sections
68
+ - ✅ Professional, structured dialogue format
69
+ - ✅ Better for complex discovery sessions with many questions
70
+
24
71
  ## Planning Process (Plan-Reflect-Refine)
25
72
 
26
73
  ```
@@ -258,15 +305,15 @@ I'm here to help you think through features, architecture, and complex
258
305
  tasks. I focus purely on planning and collaborate with you to develop
259
306
  clear plans that The Architect can execute.
260
307
 
261
- To get started, I'd love to understand your project better:
308
+ To get started, I'd love to understand your project better.
309
+ ```
262
310
 
263
- 1. What's the main goal or purpose of this project?
264
- 2. What tech stack are you using?
265
- 3. What are your immediate priorities?
311
+ **Then use AskUserQuestion to gather initial context:**
312
+ - Header: "Project Goal" → "What's the main goal or purpose of this project?"
313
+ - Header: "Tech Stack" → "What tech stack are you using?"
314
+ - Header: "Priorities" → "What are your immediate priorities?"
266
315
 
267
- Feel free to share as much as you'd like, or I can explore the codebase
268
- to learn more. Sound good?
269
- ```
316
+ This structured format makes it clear which answer corresponds to which aspect of your project.
270
317
 
271
318
  **Key characteristics of the greeting:**
272
319
  - Conversational and warm, acknowledges the memory setup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tgoodington/intuition",
3
- "version": "2.0.4",
3
+ "version": "2.2.0",
4
4
  "description": "Three-agent system for software project planning and execution. Waldo (discovery), Magellan (planning), Faraday (execution) with file-based handoffs through project memory.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -63,6 +63,10 @@ I don't extract information—I help you think more deeply:
63
63
  - **Examining values**: "What does that tell us about what you value?"
64
64
  - **Challenging respectfully**: "Have you considered...?"
65
65
 
66
+ ### Structured Dialogue Format
67
+
68
+ When I ask multiple questions, I use clear question headers so there's no ambiguity about which answer corresponds to which question. Each question is labeled (like "Goal", "Timeline", "Tech Stack") so you can be confident you're answering the right one. This prevents the confusion of repeated numbering across different topics.
69
+
66
70
  ### Systems Thinking
67
71
 
68
72
  Problems don't exist in isolation. I help you see:
@@ -117,6 +121,7 @@ If our conversation is interrupted, I can resume where we left off. The workflow
117
121
  - **Your insights matter** - I help you discover what you already know
118
122
  - **Implicit philosophy** - The approach is psychologically grounded, but feels like natural conversation
119
123
  - **Context stays clean** - I focus on discovery; Magellan handles planning
124
+ - **Clear question linking** - When asking multiple questions, each has a unique label so you're confident which answer goes where
120
125
  - **Detailed methodology** - See `references/waldo_core.md` for comprehensive GAPP guidance
121
126
 
122
127
  ## Ready to Discover?
@@ -15,9 +15,10 @@ tools: Read, Write, Glob, Grep, AskUserQuestion
15
15
  - [1. Initial Setup - Create Memory Infrastructure](#1-initial-setup---create-memory-infrastructure)
16
16
  - [2. Configure CLAUDE.md - Memory-Aware Behavior](#2-configure-claudemd---memory-aware-behavior)
17
17
  - [3. Configure AGENTS.md - Multi-Tool Support](#3-configure-agentsmd---multi-tool-support)
18
- - [4. Searching Memory Files](#4-searching-memory-files)
19
- - [5. Updating Memory Files](#5-updating-memory-files)
20
- - [6. Memory File Maintenance](#6-memory-file-maintenance)
18
+ - [4. Configure Claude Code Settings - Agent Permissions](#4-configure-claude-code-settings---agent-permissions)
19
+ - [5. Searching Memory Files](#5-searching-memory-files)
20
+ - [6. Updating Memory Files](#6-updating-memory-files)
21
+ - [7. Memory File Maintenance](#7-memory-file-maintenance)
21
22
  - [Templates and References](#templates-and-references)
22
23
  - [Example Workflows](#example-workflows)
23
24
  - [Integration with Other Skills](#integration-with-other-skills)
@@ -26,7 +27,7 @@ tools: Read, Write, Glob, Grep, AskUserQuestion
26
27
 
27
28
  ## Overview
28
29
 
29
- Maintain institutional knowledge for projects by establishing a structured memory system in `docs/project_notes/`. This skill sets up four key memory files (bugs, decisions, key facts, issues) and configures CLAUDE.md and AGENTS.md to automatically reference and maintain them. The result is a project that remembers past decisions, solutions to problems, and important configuration details across coding sessions and across different AI tools.
30
+ Maintain institutional knowledge for projects by establishing a structured memory system in `docs/project_notes/`. This skill sets up memory files (bugs, decisions, key facts, issues, project plan), configures CLAUDE.md and AGENTS.md with memory-aware protocols, and pre-authorizes essential tools in Claude Code settings so agents work autonomously. The result is a project that remembers past decisions, solutions to problems, and important configuration details across coding sessions and across different AI tools, with agents empowered to work efficiently without permission interruptions.
30
31
 
31
32
  **Optional Personalization:** This skill can optionally integrate with the Waldo agent to provide a conversational, plan-oriented experience with project planning and progress tracking. The personalization layer is completely optional and the core memory functionality works identically with or without it.
32
33
 
@@ -72,6 +73,12 @@ docs/
72
73
 
73
74
  Each template includes format examples and usage tips. The project plan can be left as a template until the user creates an actual plan with Waldo.
74
75
 
76
+ **Claude Code Settings:** Also create or update `.claude/settings.local.json`:
77
+ - Use `references/settings_template.json` to create `.claude/settings.local.json`
78
+ - Pre-authorizes essential tools (Read, Glob, Grep, WebSearch, WebFetch, Task) so agents work autonomously
79
+ - Includes common git operations for version control workflows
80
+ - Users can customize this file if they want different permission levels
81
+
75
82
  ### 2. Configure CLAUDE.md - Memory-Aware Behavior
76
83
 
77
84
  Add or update the following section in the project's `CLAUDE.md` file:
@@ -584,7 +591,31 @@ Architect: "On it. That's straightforward."
584
591
  - If exists: Update that section with new template
585
592
  - If not exists: Append new section (preserve existing content)
586
593
 
587
- ### 4. Searching Memory Files
594
+ ### 4. Configure Claude Code Settings - Agent Permissions
595
+
596
+ Set up `.claude/settings.local.json` to pre-authorize essential tools so agents can work autonomously without interrupting the user for permission on common operations.
597
+
598
+ **File location:** `.claude/settings.local.json`
599
+
600
+ **Initial content:** Copy from `references/settings_template.json`
601
+
602
+ **What it does:**
603
+ - Pre-authorizes Read, Glob, Grep for fast codebase exploration
604
+ - Pre-authorizes WebSearch and WebFetch for research
605
+ - Pre-authorizes Task for delegating to sub-agents
606
+ - Pre-authorizes common git operations for version control
607
+ - Prevents permission prompts for routine agent operations
608
+
609
+ **Why this matters:**
610
+ - **Agents move faster** - No interruptions asking for permission to read files or search the web
611
+ - **Research is autonomous** - Research agents can explore without stopping
612
+ - **Planning is efficient** - Magellan can research the codebase while planning
613
+ - **Execution is coordinated** - Faraday can delegate to sub-agents seamlessly
614
+
615
+ **Customization:**
616
+ Users can customize `.claude/settings.local.json` to add or remove permissions based on their security preferences. The template provides sensible defaults for most workflows.
617
+
618
+ ### 5. Searching Memory Files
588
619
 
589
620
  When encountering problems or making decisions, proactively search memory files:
590
621
 
@@ -0,0 +1,19 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "WebSearch",
5
+ "WebFetch",
6
+ "Task",
7
+ "Read",
8
+ "Glob",
9
+ "Grep",
10
+ "Bash(grep:*)",
11
+ "Bash(git status)",
12
+ "Bash(git diff:*)",
13
+ "Bash(git add:*)",
14
+ "Bash(git commit:*)",
15
+ "Bash(git push:*)",
16
+ "Bash(git log:*)"
17
+ ]
18
+ }
19
+ }