@tgoodington/intuition 2.1.0 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tgoodington/intuition",
3
- "version": "2.1.0",
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",
@@ -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
+ }