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.
- package/bin/ctx-mode-wrapper.mjs +5 -0
- package/package.json +1 -1
package/bin/ctx-mode-wrapper.mjs
CHANGED
|
@@ -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) {
|