@contextforge/cli 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -188,7 +188,7 @@ async function initCommand(options = {}) {
188
188
  detectProject(root),
189
189
  loadRegistry2({ root, sources: registrySources })
190
190
  ]);
191
- const recommended = recommendPacks(analysis, registry);
191
+ const recommended = await recommendPacks(analysis, registry);
192
192
  spinner.succeed("Project detected");
193
193
  console.log(formatAnalysis(analysis));
194
194
  if (recommended.length > 0) {
@@ -229,7 +229,7 @@ async function syncCommand(options = {}) {
229
229
 
230
230
  // src/index.ts
231
231
  var program = new Command();
232
- program.name("contextforge").description("Make existing codebases AI-agent ready").version("0.1.0");
232
+ program.name("contextforge").description("Make existing codebases AI-agent ready").version("0.1.2");
233
233
  program.command("init").description("Initialize AI-agent instructions").option("--registry <url>", "Static remote registry index URL", collectRegistryOption, []).action(initCommand);
234
234
  program.command("add").argument("<pack>").description("Add an instruction pack").option("--registry <url>", "Static remote registry index URL", collectRegistryOption, []).action(addCommand);
235
235
  program.command("sync").description("Sync generated AI instruction files").option("--registry <url>", "Static remote registry index URL", collectRegistryOption, []).action(syncCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contextforge/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "contextforge": "dist/index.js"
@@ -13,7 +13,7 @@
13
13
  "commander": "^14.0.0",
14
14
  "ora": "^8.2.0",
15
15
  "picocolors": "^1.1.1",
16
- "@contextforge/core": "0.1.0"
16
+ "@contextforge/core": "0.1.2"
17
17
  },
18
18
  "devDependencies": {
19
19
  "tsx": "^4.20.0"