@bike4mind/cli 0.2.17 → 0.2.18-feat-create-pull-request-tool.17753

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.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/dist/index.js CHANGED
@@ -11471,7 +11471,7 @@ import { isAxiosError as isAxiosError2 } from "axios";
11471
11471
  // package.json
11472
11472
  var package_default = {
11473
11473
  name: "@bike4mind/cli",
11474
- version: "0.2.17",
11474
+ version: "0.2.18-feat-create-pull-request-tool.17753+42c2b0f46",
11475
11475
  type: "module",
11476
11476
  description: "Interactive CLI tool for Bike4Mind with ReAct agents",
11477
11477
  license: "UNLICENSED",
@@ -11577,11 +11577,11 @@ var package_default = {
11577
11577
  zustand: "^4.5.4"
11578
11578
  },
11579
11579
  devDependencies: {
11580
- "@bike4mind/agents": "workspace:*",
11581
- "@bike4mind/common": "workspace:*",
11582
- "@bike4mind/mcp": "workspace:*",
11583
- "@bike4mind/services": "workspace:*",
11584
- "@bike4mind/utils": "workspace:*",
11580
+ "@bike4mind/agents": "0.1.0",
11581
+ "@bike4mind/common": "2.43.1-feat-create-pull-request-tool.17753+42c2b0f46",
11582
+ "@bike4mind/mcp": "1.22.4-feat-create-pull-request-tool.17753+42c2b0f46",
11583
+ "@bike4mind/services": "2.41.1-feat-create-pull-request-tool.17753+42c2b0f46",
11584
+ "@bike4mind/utils": "2.2.1-feat-create-pull-request-tool.17753+42c2b0f46",
11585
11585
  "@types/better-sqlite3": "^7.6.13",
11586
11586
  "@types/diff": "^5.0.9",
11587
11587
  "@types/jsonwebtoken": "^9.0.4",
@@ -11597,7 +11597,8 @@ var package_default = {
11597
11597
  },
11598
11598
  optionalDependencies: {
11599
11599
  "@vscode/ripgrep": "^1.17.0"
11600
- }
11600
+ },
11601
+ gitHead: "42c2b0f46b2f36aeed31f8f3fa3e526f285085cb"
11601
11602
  };
11602
11603
 
11603
11604
  // src/config/constants.ts
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bike4mind/cli",
3
- "version": "0.2.17",
3
+ "version": "0.2.18-feat-create-pull-request-tool.17753+42c2b0f46",
4
4
  "type": "module",
5
5
  "description": "Interactive CLI tool for Bike4Mind with ReAct agents",
6
6
  "license": "UNLICENSED",
@@ -30,6 +30,16 @@
30
30
  "dist",
31
31
  "bin"
32
32
  ],
33
+ "scripts": {
34
+ "dev": "tsx src/index.tsx",
35
+ "build": "tsup",
36
+ "typecheck": "tsc --noEmit",
37
+ "test": "vitest run",
38
+ "test:watch": "vitest",
39
+ "start": "node dist/index.js",
40
+ "prepublishOnly": "pnpm build",
41
+ "postinstall": "node -e \"try { require('better-sqlite3') } catch(e) { if(e.message.includes('bindings')) { console.log('\\n⚠️ Rebuilding better-sqlite3 native bindings...'); require('child_process').execSync('pnpm rebuild better-sqlite3', {stdio:'inherit'}) } }\""
42
+ },
33
43
  "dependencies": {
34
44
  "@anthropic-ai/sdk": "^0.22.0",
35
45
  "@aws-sdk/client-apigatewaymanagementapi": "3.654.0",
@@ -96,6 +106,11 @@
96
106
  "zustand": "^4.5.4"
97
107
  },
98
108
  "devDependencies": {
109
+ "@bike4mind/agents": "0.1.0",
110
+ "@bike4mind/common": "2.43.1-feat-create-pull-request-tool.17753+42c2b0f46",
111
+ "@bike4mind/mcp": "1.22.4-feat-create-pull-request-tool.17753+42c2b0f46",
112
+ "@bike4mind/services": "2.41.1-feat-create-pull-request-tool.17753+42c2b0f46",
113
+ "@bike4mind/utils": "2.2.1-feat-create-pull-request-tool.17753+42c2b0f46",
99
114
  "@types/better-sqlite3": "^7.6.13",
100
115
  "@types/diff": "^5.0.9",
101
116
  "@types/jsonwebtoken": "^9.0.4",
@@ -107,23 +122,10 @@
107
122
  "tsup": "^8.5.1",
108
123
  "tsx": "^4.21.0",
109
124
  "typescript": "^5.9.3",
110
- "vitest": "^3.2.4",
111
- "@bike4mind/agents": "0.1.0",
112
- "@bike4mind/common": "2.43.0",
113
- "@bike4mind/mcp": "1.22.3",
114
- "@bike4mind/services": "2.41.0",
115
- "@bike4mind/utils": "2.2.0"
125
+ "vitest": "^3.2.4"
116
126
  },
117
127
  "optionalDependencies": {
118
128
  "@vscode/ripgrep": "^1.17.0"
119
129
  },
120
- "scripts": {
121
- "dev": "tsx src/index.tsx",
122
- "build": "tsup",
123
- "typecheck": "tsc --noEmit",
124
- "test": "vitest run",
125
- "test:watch": "vitest",
126
- "start": "node dist/index.js",
127
- "postinstall": "node -e \"try { require('better-sqlite3') } catch(e) { if(e.message.includes('bindings')) { console.log('\\n⚠️ Rebuilding better-sqlite3 native bindings...'); require('child_process').execSync('pnpm rebuild better-sqlite3', {stdio:'inherit'}) } }\""
128
- }
129
- }
130
+ "gitHead": "42c2b0f46b2f36aeed31f8f3fa3e526f285085cb"
131
+ }