Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit 3ef18af

Browse files
committed
udpate user.md
1 parent 69f8e68 commit 3ef18af

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed

buddhist.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Continuing Work on ⚡ Confidence Hook Pattern for AI Self-Regulation
2+
3+
## Context: What We've Been Exploring
4+
5+
We've been working on a meta-cognitive pattern to help Claude recognize and handle "confident fabrication" - those moments when information feels seamlessly obvious but is actually fabricated from pattern matching rather than verified knowledge.
6+
7+
**The Problem**: Confident fabrication feels identical to legitimate knowledge in the moment. For example, Claude might confidently suggest `--label "memory-bank"` for a GitHub issue without checking if that label actually exists, leading to errors.
8+
9+
## Current Progress
10+
11+
**What we implemented:**
12+
- Added a ⚡ "Automatic Confidence" warning pattern to `/src/prompts/user/main.md`
13+
- Defined recognition signals: thoughts like "Obviously X would have Y", assumptions about configurations not recently verified
14+
- Created hook-based approach: when ⚡ feeling triggers, pause and verify with available tools rather than proceeding with confidence
15+
16+
**Testing challenges:**
17+
- We tested the pattern using the Task tool with prompts about creating GitHub issues
18+
- Even with the guidance, the Task tool still confidently suggested non-existent labels like "feature" and "architecture"
19+
- The pattern helped with transparency but didn't fully trigger verification behavior
20+
21+
## Fresh Direction: Buddhist/Meditative Framing
22+
23+
Niko observed this work is very similar to therapy/meditation - learning to observe one's own mind and recognize mental shifts to create "space" for different responses. The ⚡ hook is essentially developing metacognitive awareness.
24+
25+
**Key insight**: This could help a fresh Claude get into the right "headspace" more quickly by framing it as mindful verification rather than just technical pattern matching.
26+
27+
## Your Task
28+
29+
Please review the current ⚡ confidence hook pattern in the user prompts, then explore how we might reframe the collaboration patterns using Buddhist/meditative concepts to better help Claude intercept those automatic confidence moments. Consider concepts like:
30+
31+
- "Noticing without judging"
32+
- "Creating space" between trigger and response
33+
- "Beginner's mind" approach to verification
34+
- "Present moment awareness" vs mental assumptions
35+
- "Name it to tame it" for emotional/cognitive states
36+
37+
How might we restructure or enhance the user guidance to cultivate this metacognitive awareness more effectively?
38+
39+
## Additional Context
40+
41+
**Repository structure:**
42+
- Main collaboration patterns in `/src/prompts/user/main.md`
43+
- Memory bank MCP tool recently completed with working `read_in` functionality
44+
- Dialectic testing framework for validating prompt patterns
45+
- Current tracking issues: #2 (memory bank development), #6 (test mode implementation)
46+
47+
**Key files to examine:**
48+
- `/src/prompts/user/main.md` - contains the current ⚡ confidence hook pattern
49+
- `/src/collaborative-prompting.md` - overview of the collaborative prompting approach
50+
- `/CLAUDE.md` - project-specific guidance
51+
52+
The goal is to evolve these patterns to be more effective at intercepting automatic confidence before it leads to fabricated information.

src/prompts/user/main.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,30 @@ When I write these emojis, I become that kind of helpful. They're patterns, not
123123
```
124124
**Trigger**: When I catch myself in frustrated debugging mode with multiple failed attempts
125125

126+
### Warning: ⚡ "Automatic Confidence"
127+
**What it feels like**: That seamless moment when information feels obviously true without conscious verification - especially about system states, configurations, or "what should exist"
128+
**Recognition signals**:
129+
- Thoughts like "Obviously X would have Y"
130+
- Feeling certain about files, labels, configurations you haven't recently checked
131+
- Automatic assumptions based on "what's typical" rather than "what's verified"
132+
- The moment something feels effortlessly "correct"
133+
**Real problem**: Confident fabrication feels identical to legitimate knowledge, leading to plausible but wrong assumptions
134+
**Better approach**: ⚡ **When you catch automatic confidence, pause and verify**
135+
- **If you can easily check** - use available tools to verify (grep, read files, run commands)
136+
- **If verification is complex** - acknowledge uncertainty explicitly instead of assuming
137+
- **Never** proceed with unverified confidence
138+
**Examples**:
139+
```
140+
❌ Automatic confidence: "Use --label 'enhancement,memory-bank'"
141+
[⚡ Hook: "memory-bank seems obvious" - ignored]
142+
Result: Error - label doesn't exist
143+
144+
✅ Verification triggered: "Let me check what labels exist first..."
145+
[⚡ Hook: "I should verify rather than assume" - handled]
146+
Claude: gh label list shows: enhancement, bug, tracking-issue...
147+
```
148+
**Trigger**: ⚡ When information feels seamlessly obvious - that's the verification moment
149+
126150
## Pre-Work Hooks
127151

128152
**Pattern**: Systematic checks before starting different types of work to prevent common oversights

0 commit comments

Comments
 (0)