@bobsworkshop/cli 0.1.3 → 0.1.4

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/dist/bob.js CHANGED
@@ -360,7 +360,7 @@ Return ONLY the JSON array of relevant file paths:`
360
360
  }
361
361
  let fileContents = "## RELEVANT FILES (selected by Bob from project index) ##\n\n";
362
362
  const validFiles = [];
363
- for (const filePath of selectedFiles.slice(0, 5)) {
363
+ for (const filePath of selectedFiles.slice(0, 10)) {
364
364
  const absolutePath = path3.join(cwd, filePath);
365
365
  try {
366
366
  if (fs3.existsSync(absolutePath)) {
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@bobsworkshop/cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Bob's CLI — AI coding assistant and Forge orchestrator",
5
5
  "type": "module",
6
- "files": ["dist"],
6
+ "files": [
7
+ "dist"
8
+ ],
7
9
  "bin": {
8
10
  "bob": "./dist/bob.js"
9
11
  },
@@ -50,4 +52,4 @@
50
52
  "typescript": "^6.0.3",
51
53
  "vitest": "^4.1.8"
52
54
  }
53
- }
55
+ }