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
4 changes: 2 additions & 2 deletions Packs/Telos/src/Tools/UpdateTelos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* - CHALLENGES.md - Current challenges
* - FRAMES.md - Mental frames and perspectives
* - GOALS.md - Life goals
* - LESSONS.md - Lessons learned
* - LEARNED.md - Lessons learned
* - MISSION.md - Life mission
* - MODELS.md - Mental models
* - MOVIES.md - Favorite movies
Expand All @@ -45,7 +45,7 @@ const UPDATES_FILE = join(TELOS_DIR, 'updates.md');
// Valid TELOS files
const VALID_FILES = [
'BELIEFS.md', 'BOOKS.md', 'CHALLENGES.md', 'FRAMES.md', 'GOALS.md',
'LESSONS.md', 'MISSION.md', 'MODELS.md', 'MOVIES.md', 'NARRATIVES.md',
'LEARNED.md', 'MISSION.md', 'MODELS.md', 'MOVIES.md', 'NARRATIVES.md',
'PREDICTIONS.md', 'PROBLEMS.md', 'PROJECTS.md', 'STRATEGIES.md',
'TELOS.md', 'TRAUMAS.md', 'WISDOM.md', 'WRONG.md'
];
Expand Down
14 changes: 7 additions & 7 deletions Packs/Telos/src/Workflows/Update.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ TELOS is {PRINCIPAL.NAME}'s life framework stored in `~/.claude/PAI/USER/TELOS/`
**Life Data:**
- BOOKS.md - Favorite books
- MOVIES.md - Favorite movies
- LESSONS.md - Lessons learned
- LEARNED.md - Lessons learned
- WRONG.md - Things {PRINCIPAL.NAME} was wrong about

**Mental Models:**
Expand Down Expand Up @@ -78,7 +78,7 @@ This is the main command you'll use. It takes three parameters:
- Content to add (the actual text)
- Description of the change (for the changelog)

!`FILE="$1"; CONTENT="$2"; DESCRIPTION="$3"; bun ~/.claude/commands/update-telos.ts "$FILE" "$CONTENT" "$DESCRIPTION"`
!`FILE="$1"; CONTENT="$2"; DESCRIPTION="$3"; bun ~/.claude/skills/Telos/Tools/UpdateTelos.ts "$FILE" "$CONTENT" "$DESCRIPTION"`

## List Valid TELOS Files
!`echo "Valid TELOS files:
Expand All @@ -87,7 +87,7 @@ This is the main command you'll use. It takes three parameters:
- CHALLENGES.md - Current challenges
- FRAMES.md - Mental frames and perspectives
- GOALS.md - Life goals
- LESSONS.md - Lessons learned
- LEARNED.md - Lessons learned
- MISSION.md - Life mission
- MODELS.md - Mental models
- MOVIES.md - Favorite movies
Expand All @@ -113,7 +113,7 @@ This is the main command you'll use. It takes three parameters:

When {PRINCIPAL.NAME} mentions updating TELOS, determine:
- **What is being added?** (a book, a lesson, a belief, etc.)
- **Which file should it go in?** (BOOKS.md, LESSONS.md, BELIEFS.md, etc.)
- **Which file should it go in?** (BOOKS.md, LEARNED.md, BELIEFS.md, etc.)
- **What's the context?** (why is this important to him?)

## Step 2: Prepare the Update
Expand All @@ -140,7 +140,7 @@ Use the update-telos command with:

Example:
```bash
bun ~/.claude/commands/update-telos.ts "BOOKS.md" "- *Project Hail Mary* by Andy Weir" "Added favorite book: Project Hail Mary"
bun ~/.claude/skills/Telos/Tools/UpdateTelos.ts "BOOKS.md" "- *Project Hail Mary* by Andy Weir" "Added favorite book: Project Hail Mary"
```

## Step 4: Confirm and Engage
Expand Down Expand Up @@ -182,7 +182,7 @@ That book has such an interesting take on problem-solving under pressure. Anythi

**Your Response:**
```
Important lesson! I'll add that to LESSONS.md with proper formatting.
Important lesson! I'll add that to LEARNED.md with proper formatting.

[Execute the update command]

Expand Down Expand Up @@ -286,7 +286,7 @@ The TypeScript implementation handles:
- Content appending (preserves existing content)
- Pacific Time timezone for consistency

The script is at: `~/.claude/commands/update-telos.ts`
The script is at: `~/.claude/skills/Telos/Tools/UpdateTelos.ts`

All backups are stored in: `~/.claude/PAI/USER/TELOS/Backups/`

Expand Down