supipowers 0.7.6 → 0.7.8

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.
@@ -20,6 +20,11 @@ const __wrapperDir = dirname(fileURLToPath(import.meta.url));
20
20
  const projectDir = resolve(process.cwd());
21
21
  process.env.CLAUDE_PROJECT_DIR = projectDir;
22
22
 
23
+ // Note: context-mode uses per-PID ephemeral FTS5 databases that are cleaned
24
+ // up on process exit. Within a session, indexed content persists and ctx_search
25
+ // can query it. Across sessions, content must be re-indexed.
26
+ // The SKILL.md routing rules emphasize using ctx_search for follow-ups.
27
+
23
28
  // Resolve start.mjs path from the first CLI argument
24
29
  const startMjs = process.argv[2];
25
30
  if (!startMjs) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supipowers",
3
- "version": "0.7.6",
3
+ "version": "0.7.8",
4
4
  "description": "OMP-native workflow extension inspired by supipowers.",
5
5
  "type": "module",
6
6
  "scripts": {