coding-friend-cli 1.31.2 → 1.31.3

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.
@@ -467,6 +467,8 @@ async function editGitignore(globalCfg, localCfg) {
467
467
  `${docsDir}/research/`,
468
468
  `${docsDir}/learn/`,
469
469
  `${docsDir}/sessions/`,
470
+ `${docsDir}/reviews/`,
471
+ `${docsDir}/context/`,
470
472
  ".coding-friend/"
471
473
  ];
472
474
  const existing = existsSync(".gitignore") ? readFileSync(".gitignore", "utf-8") : "";
package/dist/index.js CHANGED
@@ -34,7 +34,7 @@ program.command("init").description("Initialize coding-friend in current project
34
34
  await initCommand();
35
35
  });
36
36
  program.command("config").description("Manage Coding Friend configuration").action(async () => {
37
- const { configCommand } = await import("./config-HH7MY4UD.js");
37
+ const { configCommand } = await import("./config-OLEUUS32.js");
38
38
  await configCommand();
39
39
  });
40
40
  program.command("host").description("Build and serve learning docs as a static website").argument("[path]", "path to docs folder").option("-p, --port <port>", "port number", "3333").action(async (path, opts) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coding-friend-cli",
3
- "version": "1.31.2",
3
+ "version": "1.31.3",
4
4
  "description": "CLI for coding-friend — host learning docs, setup MCP server, initialize projects",
5
5
  "type": "module",
6
6
  "bin": {