@aabadin/project-memory-context 0.2.9 → 0.2.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.
package/cli/bootstrap.mjs CHANGED
@@ -114,10 +114,10 @@ async function runStageA(projectRoot) {
114
114
  const graphOutDir = resolve(projectRoot, '.planning', 'project-memory-context', 'graph');
115
115
  const graphifyOutDir = resolve(projectRoot, 'graphify-out');
116
116
 
117
- const r = spawnSync(`"${graphifyExe}"`, ['update', projectRoot], {
117
+ log(` Using graphify: ${graphifyExe}`);
118
+ const r = spawnSync(graphifyExe, ['update', projectRoot], {
118
119
  cwd: projectRoot,
119
120
  stdio: 'inherit',
120
- shell: true,
121
121
  });
122
122
 
123
123
  if (r.status === 0) {
package/cli/sanitize.mjs CHANGED
@@ -60,10 +60,9 @@ async function runGraphifyUpdate(projectRoot) {
60
60
  const graphOutDir = resolve(projectRoot, '.planning', 'project-memory-context', 'graph');
61
61
 
62
62
  log('Running graphify update (structural AST)...');
63
- const r = spawnSync(`"${graphifyExe}"`, ['update', `"${projectRoot}"`], {
63
+ const r = spawnSync(graphifyExe, ['update', projectRoot], {
64
64
  cwd: projectRoot,
65
65
  stdio: 'inherit',
66
- shell: true,
67
66
  });
68
67
 
69
68
  if (r.status !== 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aabadin/project-memory-context",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "description": "Portable project memory context CLI — bootstraps semantic enrichment workflows for any AI coding agent.",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "type": "module",
@@ -14,7 +14,7 @@ Open the PMC Graph Explorer to visualize the enrichment graph. The server runs o
14
14
  Start the graph explorer server using the globally installed PMC CLI:
15
15
 
16
16
  ```bash
17
- npx --yes --package @aabadin/project-memory-context pmc-view-context
17
+ pmc view-context
18
18
  ```
19
19
 
20
20
  Then open http://localhost:3001 in your browser.