Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ python3 tests/claude-code/analyze-token-usage.py ~/.claude/projects/<project-dir
Session transcripts are stored in `~/.claude/projects/` with the working directory path encoded:

```bash
# Example for /Users/jesse/Documents/GitHub/superpowers/superpowers
# Example for ~/Documents/GitHub/superpowers/superpowers
SESSION_DIR="$HOME/.claude/projects/-Users-jesse-Documents-GitHub-superpowers-superpowers"

# Find recent sessions
Expand Down
2 changes: 1 addition & 1 deletion skills/systematic-debugging/CREATION-LOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Reference example of extracting, structuring, and bulletproofing a critical skil

## Source Material

Extracted debugging framework from `/Users/jesse/.claude/CLAUDE.md`:
Extracted debugging framework from `~/.claude/CLAUDE.md`:
- 4-phase systematic process (Investigation → Pattern Analysis → Hypothesis → Implementation)
- Core mandate: ALWAYS find root cause, NEVER fix symptoms
- Rules designed to resist time pressure and rationalization
Expand Down
2 changes: 1 addition & 1 deletion skills/systematic-debugging/root-cause-tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ digraph when_to_use {

### 1. Observe the Symptom
```
Error: git init failed in /Users/jesse/project/packages/core
Error: git init failed in ~/project/packages/core
```

### 2. Find Immediate Cause
Expand Down
2 changes: 1 addition & 1 deletion skills/using-git-worktrees/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ You: I'm using the using-git-worktrees skill to set up an isolated workspace.
[Run npm install]
[Run npm test - 47 passing]
Worktree ready at /Users/jesse/myproject/.worktrees/auth
Worktree ready at ~/myproject/.worktrees/auth
Tests passing (47 tests, 0 failures)
Ready to implement auth feature
```
Expand Down