@tekmidian/pai 0.9.10 → 0.9.11

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.
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env node
2
+
3
+ // src/hooks/ts/session-start/session-commands.ts
4
+ var commands = `<system-reminder>
5
+ SESSION COMMANDS (always available):
6
+
7
+ - "go" / "continue" / "weiter" \u2192 Read Notes/TODO.md, find ## Continue section, resume work
8
+ - "pause session" \u2192 Save state to TODO.md, update session note, stop (no compact)
9
+ - "end session" \u2192 Finalize note, commit if needed, start fresh next time
10
+ - "cpp" \u2192 Release workflow: version bump \u2192 build \u2192 npm publish \u2192 git add ALL \u2192 ONE commit \u2192 git push
11
+
12
+ When user says "go" with no other context, ALWAYS check TODO.md first.
13
+
14
+ IMPORTANT: Full PAI context may be truncated due to size. For complete instructions (response format, workflows, principles), READ: ~/.claude/Skills/CORE/SKILL.md
15
+ </system-reminder>`;
16
+ console.log(commands);
17
+ //# sourceMappingURL=session-commands.mjs.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/hooks/ts/session-start/session-commands.ts"],
4
+ "sourcesContent": ["#!/usr/bin/env node\n\n/**\n * session-commands.ts\n *\n * Tiny SessionStart hook that injects critical session commands inline.\n * Stays under 2KB to avoid persisted-output truncation.\n *\n * This runs BEFORE load-core-context so these commands are always available\n * even when the full CORE skill gets truncated.\n */\n\nconst commands = `<system-reminder>\nSESSION COMMANDS (always available):\n\n- \"go\" / \"continue\" / \"weiter\" \u2192 Read Notes/TODO.md, find ## Continue section, resume work\n- \"pause session\" \u2192 Save state to TODO.md, update session note, stop (no compact)\n- \"end session\" \u2192 Finalize note, commit if needed, start fresh next time\n- \"cpp\" \u2192 Release workflow: version bump \u2192 build \u2192 npm publish \u2192 git add ALL \u2192 ONE commit \u2192 git push\n\nWhen user says \"go\" with no other context, ALWAYS check TODO.md first.\n\nIMPORTANT: Full PAI context may be truncated due to size. For complete instructions (response format, workflows, principles), READ: ~/.claude/Skills/CORE/SKILL.md\n</system-reminder>`;\n\nconsole.log(commands);\n"],
5
+ "mappings": ";;;AAYA,IAAM,WAAW;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAajB,QAAQ,IAAI,QAAQ;",
6
+ "names": []
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekmidian/pai",
3
- "version": "0.9.10",
3
+ "version": "0.9.11",
4
4
  "description": "PAI Knowledge OS — Personal AI Infrastructure with federated memory and project management",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
@@ -0,0 +1,26 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * session-commands.ts
5
+ *
6
+ * Tiny SessionStart hook that injects critical session commands inline.
7
+ * Stays under 2KB to avoid persisted-output truncation.
8
+ *
9
+ * This runs BEFORE load-core-context so these commands are always available
10
+ * even when the full CORE skill gets truncated.
11
+ */
12
+
13
+ const commands = `<system-reminder>
14
+ SESSION COMMANDS (always available):
15
+
16
+ - "go" / "continue" / "weiter" → Read Notes/TODO.md, find ## Continue section, resume work
17
+ - "pause session" → Save state to TODO.md, update session note, stop (no compact)
18
+ - "end session" → Finalize note, commit if needed, start fresh next time
19
+ - "cpp" → Release workflow: version bump → build → npm publish → git add ALL → ONE commit → git push
20
+
21
+ When user says "go" with no other context, ALWAYS check TODO.md first.
22
+
23
+ IMPORTANT: Full PAI context may be truncated due to size. For complete instructions (response format, workflows, principles), READ: ~/.claude/Skills/CORE/SKILL.md
24
+ </system-reminder>`;
25
+
26
+ console.log(commands);