@elizaos/autonomous 2.0.0-alpha.70 → 2.0.0-alpha.71

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.
@@ -2,4 +2,3 @@ $ bun run build:dist
2
2
  $ rimraf dist && tsc -p tsconfig.build.json && node ../../scripts/prepare-package-dist.mjs packages/autonomous --compiled-prefix=packages/autonomous/src
3
3
  /usr/bin/bash: line 1: rimraf: command not found
4
4
  error: script "build:dist" exited with code 127
5
- error: script "build" exited with code 127
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/autonomous",
3
- "version": "2.0.0-alpha.70",
3
+ "version": "2.0.0-alpha.71",
4
4
  "description": "Standalone Milady agent runtime and backend server package.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -276,5 +276,5 @@
276
276
  "typescript": "^5.9.3",
277
277
  "vitest": "^4.0.18"
278
278
  },
279
- "gitHead": "db049debacc33857bcea596057f1284568a061ff"
279
+ "gitHead": "c150a8cf4bffddd7e934f3a6073a092ca1cd6520"
280
280
  }
@@ -212,7 +212,7 @@ export type WorkspaceInitFile = {
212
212
  * Used to skip injecting generic placeholder docs into the prompt.
213
213
  */
214
214
  export function isDefaultBoilerplate(
215
- name: WorkspaceBootstrapFileName,
215
+ name: string,
216
216
  content: string,
217
217
  ): boolean {
218
218
  const template = WORKSPACE_TEMPLATES[name];