@brainbase-labs/cli 0.13.3 → 0.13.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -29449,7 +29449,7 @@ function padStart(s, n) {
29449
29449
  // package.json
29450
29450
  var package_default = {
29451
29451
  name: "@brainbase-labs/cli",
29452
- version: "0.13.3",
29452
+ version: "0.13.4",
29453
29453
  description: "Pack, share, and install agent templates across harnesses (Claude Code, Codex, ...).",
29454
29454
  type: "module",
29455
29455
  bin: {
@@ -55366,7 +55366,9 @@ function materializeInstructions2(cwd2, cloud) {
55366
55366
  const body = c2.files[0]?.content ?? "";
55367
55367
  if (!body.trim())
55368
55368
  continue;
55369
- fs49.writeFileSync(path53.join(cwd2, DEFAULT_INSTRUCTIONS_FILE), body, "utf8");
55369
+ const target = path53.join(cwd2, DEFAULT_INSTRUCTIONS_FILE);
55370
+ ensureDir(path53.dirname(target));
55371
+ fs49.writeFileSync(target, normalizeInstructionBody(body), "utf8");
55370
55372
  return;
55371
55373
  }
55372
55374
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brainbase-labs/cli",
3
- "version": "0.13.3",
3
+ "version": "0.13.4",
4
4
  "description": "Pack, share, and install agent templates across harnesses (Claude Code, Codex, ...).",
5
5
  "type": "module",
6
6
  "bin": {