gm-plugkit 2.0.1352 → 2.0.1353

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/bootstrap.js CHANGED
@@ -45,7 +45,7 @@ function log(msg) {
45
45
  function obsEvent(subsystem, event, fields) {
46
46
  if (process.env.GM_LOG_DISABLE) return;
47
47
  try {
48
- const root = process.env.GM_LOG_DIR || path.join(os.homedir(), '.gm-log');
48
+ const root = process.env.GM_LOG_DIR || path.join(os.homedir(), '.claude', 'gm-log');
49
49
  const day = new Date().toISOString().slice(0, 10);
50
50
  const dir = path.join(root, day);
51
51
  fs.mkdirSync(dir, { recursive: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.1352",
3
+ "version": "2.0.1353",
4
4
  "description": "Bootstrap and daemon-spawn tool for gm plugkit binary. Downloads the correct platform binary, verifies SHA256, and starts the spool watcher daemon. Includes plugkit-wasm-wrapper for WASM-based spool watching.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -29,7 +29,7 @@ const GM_TOOLS_ROOT = resolveGmToolsRoot();
29
29
  const KV_DIR = path.join(GM_TOOLS_ROOT, 'kv');
30
30
  fs.mkdirSync(KV_DIR, { recursive: true });
31
31
 
32
- const GM_LOG_ROOT = process.env.GM_LOG_DIR || path.join(os.homedir(), '.gm-log');
32
+ const GM_LOG_ROOT = process.env.GM_LOG_DIR || path.join(os.homedir(), '.claude', 'gm-log');
33
33
  const ORCHESTRATOR_VERBS = new Set(['instruction', 'transition', 'phase-status', 'prd-add', 'prd-resolve', 'prd-list', 'mutable-add', 'mutable-resolve', 'mutable-list', 'memorize-fire', 'residual-scan', 'auto-recall']);
34
34
 
35
35
  const TURN_IDLE_MS = 30_000;