@tekmidian/pai 0.6.1 → 0.6.2
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/ARCHITECTURE.md +73 -8
- package/dist/cli/index.mjs +100 -3
- package/dist/cli/index.mjs.map +1 -1
- package/dist/daemon-mcp/index.mjs +37 -6
- package/dist/daemon-mcp/index.mjs.map +1 -1
- package/dist/skills/Art/SKILL.md +32 -0
- package/dist/skills/Createskill/SKILL.md +23 -0
- package/dist/skills/Journal/SKILL.md +34 -0
- package/dist/skills/Name/SKILL.md +12 -0
- package/dist/skills/Observability/SKILL.md +25 -0
- package/dist/skills/Plan/SKILL.md +28 -0
- package/dist/skills/Research/SKILL.md +30 -0
- package/dist/skills/Review/SKILL.md +58 -0
- package/dist/skills/Route/SKILL.md +14 -0
- package/dist/skills/SearchHistory/SKILL.md +31 -0
- package/dist/skills/Sessions/SKILL.md +28 -0
- package/dist/skills/Share/SKILL.md +35 -0
- package/dist/skills/StoryExplanation/SKILL.md +21 -0
- package/dist/skills/VaultConnect/SKILL.md +10 -0
- package/dist/skills/VaultContext/SKILL.md +12 -0
- package/dist/skills/VaultEmerge/SKILL.md +10 -0
- package/dist/skills/VaultOrphans/SKILL.md +10 -0
- package/dist/skills/VaultTrace/SKILL.md +10 -0
- package/package.json +3 -2
- package/scripts/build-skill-stubs.mjs +202 -0
|
@@ -3336,7 +3336,37 @@ const review = {
|
|
|
3336
3336
|
|
|
3337
3337
|
USE WHEN user says 'review', 'what did I do', 'this week', 'weekly review', 'daily review', 'monthly review', 'what have we achieved', 'reflect', 'retrospective', 'recap', '/review', OR asks about accomplishments over a time period.
|
|
3338
3338
|
|
|
3339
|
-
###
|
|
3339
|
+
### MANDATORY FIRST ACTIONS
|
|
3340
|
+
|
|
3341
|
+
When this skill triggers, first announce: "Running **PAI Review** for [period]..."
|
|
3342
|
+
|
|
3343
|
+
Then execute these steps IN ORDER before doing anything else. Do NOT call Calendar, Todoist, Gmail, or any external MCP until steps 1-4 are complete.
|
|
3344
|
+
|
|
3345
|
+
**Step 1: Find PAI session notes for the period.**
|
|
3346
|
+
|
|
3347
|
+
find ~/.claude/projects/*/Notes -name "*.md" 2>/dev/null | grep "YYYY-MM-DD"
|
|
3348
|
+
|
|
3349
|
+
Session notes are at ~/.claude/projects/*/Notes/NNNN - YYYY-MM-DD - Description.md. Read each matching file. These describe what was actually worked on.
|
|
3350
|
+
|
|
3351
|
+
**Step 2: Check git commits for the period.**
|
|
3352
|
+
|
|
3353
|
+
git log --after="YYYY-MM-DD" --before="YYYY-MM-DD" --oneline --all
|
|
3354
|
+
|
|
3355
|
+
Run this in ~/dev/ai/PAI/ and any other project directory found in session notes.
|
|
3356
|
+
|
|
3357
|
+
**Step 3: Check completed TODO items.**
|
|
3358
|
+
|
|
3359
|
+
Search for \`[x]\` items in Notes/TODO.md files of active projects.
|
|
3360
|
+
|
|
3361
|
+
**Step 4: Check journal entries.**
|
|
3362
|
+
|
|
3363
|
+
find ~/Daten/Cloud/Development/ai/PAI/Journal/ -name "YYYY-MM-DD*" 2>/dev/null
|
|
3364
|
+
|
|
3365
|
+
**Step 5 (ONLY AFTER 1-4): External sources.**
|
|
3366
|
+
|
|
3367
|
+
Now you may check: Calendar (gcal_list_events), Todoist (find-completed-tasks), SeriousLetter (sl_list_jobs). Gmail only if specifically relevant.
|
|
3368
|
+
|
|
3369
|
+
### Period Selection
|
|
3340
3370
|
|
|
3341
3371
|
| Subcommand | Period |
|
|
3342
3372
|
|------------|--------|
|
|
@@ -3345,15 +3375,16 @@ USE WHEN user says 'review', 'what did I do', 'this week', 'weekly review', 'dai
|
|
|
3345
3375
|
| /review month | Current calendar month |
|
|
3346
3376
|
| /review year | Current calendar year |
|
|
3347
3377
|
|
|
3348
|
-
###
|
|
3378
|
+
### Output Rules
|
|
3349
3379
|
|
|
3350
|
-
|
|
3380
|
+
**Group by THEME, not chronology.** Sections: project themes, job search, personal, key decisions, numbers (sessions/commits/tasks).
|
|
3351
3381
|
|
|
3352
|
-
|
|
3382
|
+
Second person voice ("You built...", "You applied to..."). Concise but warm.
|
|
3353
3383
|
|
|
3354
|
-
|
|
3384
|
+
Highlight completed/shipped items. Briefly note unfinished work.
|
|
3355
3385
|
|
|
3356
|
-
**WhatsApp:**
|
|
3386
|
+
**WhatsApp:** Bold headers only, no markdown headers or code blocks, under 2000 chars.
|
|
3387
|
+
**Voice (TTS):** 30-60 sec conversational summary, top 3-5 achievements, no asterisks/markdown.`
|
|
3357
3388
|
};
|
|
3358
3389
|
|
|
3359
3390
|
//#endregion
|