baro-ai 0.3.0 → 0.3.2

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/bin/baro CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baro-ai",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Autonomous parallel coding - plan and execute with AI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,7 +12,8 @@ import * as https from "https"
12
12
  const __dirname = path.dirname(fileURLToPath(import.meta.url))
13
13
  const PACKAGE_ROOT = path.resolve(__dirname, "..")
14
14
  const BIN_DIR = path.join(PACKAGE_ROOT, "bin")
15
- const BINARY_NAME = "baro"
15
+ const BINARY_NAME = "baro-native"
16
+ const RELEASE_NAME = "baro"
16
17
  const REPO = "Lotus015/baro"
17
18
 
18
19
  function getPlatformKey() {
@@ -71,7 +72,7 @@ async function main() {
71
72
  const platformKey = getPlatformKey()
72
73
  const version = getVersion()
73
74
 
74
- const url = `https://github.com/${REPO}/releases/download/v${version}/${BINARY_NAME}-${platformKey}`
75
+ const url = `https://github.com/${REPO}/releases/download/v${version}/${RELEASE_NAME}-${platformKey}`
75
76
 
76
77
  console.log(`Downloading baro for ${platformKey}...`)
77
78
 
package/bin/baro-tui DELETED
Binary file