localclawd 1.0.0 → 1.0.1

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.
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ 'use strict'
3
+
4
+ // Dynamic import to load the ESM dist from a CJS entry point.
5
+ // npm requires a .cjs (or .js in a CJS package) bin script — .mjs is not
6
+ // accepted as a valid bin executable by the npm registry validator.
7
+ import('../dist/cli.mjs').catch(err => {
8
+ console.error(err)
9
+ process.exit(1)
10
+ })
package/dist/cli.mjs CHANGED
@@ -22309,6 +22309,7 @@ var init_exports = __esm(() => {
22309
22309
  init_array();
22310
22310
  init_array_buffer();
22311
22311
  init_string();
22312
+ init_contents();
22312
22313
  });
22313
22314
 
22314
22315
  // node_modules/get-stream/source/index.js
@@ -22322,7 +22323,7 @@ var init_source2 = __esm(() => {
22322
22323
 
22323
22324
  // node_modules/execa/lib/io/max-buffer.js
22324
22325
  var handleMaxBuffer = ({ error: error3, stream, readableObjectMode, lines, encoding, fdNumber }) => {
22325
- if (!(error3 instanceof MaxBufferError2)) {
22326
+ if (!(error3 instanceof MaxBufferError)) {
22326
22327
  throw error3;
22327
22328
  }
22328
22329
  if (fdNumber === "all") {
@@ -22347,7 +22348,7 @@ var handleMaxBuffer = ({ error: error3, stream, readableObjectMode, lines, encod
22347
22348
  if (ipcOutput.length !== maxBuffer) {
22348
22349
  return;
22349
22350
  }
22350
- const error3 = new MaxBufferError2;
22351
+ const error3 = new MaxBufferError;
22351
22352
  error3.maxBufferInfo = { fdNumber: "ipc" };
22352
22353
  throw error3;
22353
22354
  }, getMaxBufferMessage = (error3, maxBuffer) => {
@@ -26222,7 +26223,7 @@ var execaCoreAsync = (rawFile, rawArguments, rawOptions, createNested) => {
26222
26223
  timedOut: context2.terminationReason === "timeout",
26223
26224
  isCanceled: context2.terminationReason === "cancel" || context2.terminationReason === "gracefulCancel",
26224
26225
  isGracefullyCanceled: context2.terminationReason === "gracefulCancel",
26225
- isMaxBuffer: errorInfo.error instanceof MaxBufferError2,
26226
+ isMaxBuffer: errorInfo.error instanceof MaxBufferError,
26226
26227
  isForcefullyTerminated: context2.isForcefullyTerminated,
26227
26228
  exitCode,
26228
26229
  signal,
@@ -147014,7 +147015,7 @@ var init_metadata = __esm(() => {
147014
147015
  isClaudeAiAuth: isClaudeAISubscriber(),
147015
147016
  version: "99.0.0",
147016
147017
  versionBase: getVersionBase(),
147017
- buildTime: "2026-04-04T17:36:42.248Z",
147018
+ buildTime: "2026-04-04T17:38:09.880Z",
147018
147019
  deploymentEnvironment: env4.detectDeploymentEnvironment(),
147019
147020
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
147020
147021
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -346861,7 +346862,7 @@ function getAnthropicEnvMetadata() {
346861
346862
  function getBuildAgeMinutes() {
346862
346863
  if (false)
346863
346864
  ;
346864
- const buildTime = new Date("2026-04-04T17:36:42.248Z").getTime();
346865
+ const buildTime = new Date("2026-04-04T17:38:09.880Z").getTime();
346865
346866
  if (isNaN(buildTime))
346866
346867
  return;
346867
346868
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -440361,7 +440362,7 @@ var init_bridge_kick = __esm(() => {
440361
440362
  var call56 = async () => {
440362
440363
  return {
440363
440364
  type: "text",
440364
- value: `${"99.0.0"} (built ${"2026-04-04T17:36:42.248Z"})`
440365
+ value: `${"99.0.0"} (built ${"2026-04-04T17:38:09.880Z"})`
440365
440366
  };
440366
440367
  }, version2, version_default;
440367
440368
  var init_version = __esm(() => {
@@ -533276,4 +533277,4 @@ async function main2() {
533276
533277
  }
533277
533278
  main2();
533278
533279
 
533279
- //# debugId=29C707C1582BA73364756E2164756E21
533280
+ //# debugId=DFF53E7A720A447F64756E2164756E21
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "localclawd",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Local-first coding CLI for vLLM, Ollama, and OpenAI-compatible backends.",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "packageManager": "bun@1.3.11",
8
8
  "bin": {
9
- "localclawd": "./bin/localclawd.js"
9
+ "localclawd": "bin/localclawd.cjs"
10
10
  },
11
11
  "files": [
12
12
  "bin",
@@ -16,7 +16,7 @@
16
16
  "preferGlobal": true,
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "https://github.com/chromebookwiz/localclawd.git"
19
+ "url": "git+https://github.com/chromebookwiz/localclawd.git"
20
20
  },
21
21
  "homepage": "https://github.com/chromebookwiz/localclawd",
22
22
  "bugs": {
@@ -128,4 +128,4 @@
128
128
  "@types/react": "latest",
129
129
  "typescript": "latest"
130
130
  }
131
- }
131
+ }