pmpt-cli 1.18.1 → 1.18.2

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.
@@ -1,6 +1,6 @@
1
1
  import { existsSync, mkdirSync, readFileSync, writeFileSync } from 'fs';
2
2
  import { join } from 'path';
3
- import { getConfigDir, getDocsDir } from './config.js';
3
+ import { getConfigDir, getDocsDir, ensurePmptClaudeMd } from './config.js';
4
4
  // ─── index.md — lightweight map pointing to pmpt.md ───────────────
5
5
  export function generateIndexMd(projectName) {
6
6
  return `# ${projectName} — Project Context
@@ -97,7 +97,6 @@ export function ensureClaudeMdRef(projectPath) {
97
97
  function ensureClaudeMdIndexRef(projectPath) {
98
98
  // Delegate to ensurePmptClaudeMd which handles both creation and section injection
99
99
  // (index pointer + MCP tools)
100
- const { ensurePmptClaudeMd } = require('./config.js');
101
100
  ensurePmptClaudeMd(projectPath);
102
101
  }
103
102
  // ─── pmpt.md section migration ────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmpt-cli",
3
- "version": "1.18.1",
3
+ "version": "1.18.2",
4
4
  "description": "Record and share your AI-driven product development journey",
5
5
  "type": "module",
6
6
  "bin": {