@bloxystudios/bloxycode 1.0.0 → 1.0.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/README.md +33 -3
- package/bin/bloxycode +7 -4
- package/package.json +20 -3
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# BloxyCode
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@bloxystudios/bloxycode)
|
|
4
|
+
[](https://www.bridgemind.ai/vibeathon)
|
|
4
5
|
[](LICENSE)
|
|
5
6
|
[](https://bun.sh/)
|
|
6
7
|
|
|
@@ -61,12 +62,27 @@ Access Claude and Gemini models through your Google account — no API keys requ
|
|
|
61
62
|
|
|
62
63
|
## Installation
|
|
63
64
|
|
|
65
|
+
### Global Installation (Recommended)
|
|
66
|
+
|
|
64
67
|
```bash
|
|
65
|
-
# Install via npm
|
|
68
|
+
# Install via npm
|
|
66
69
|
npm install -g @bloxystudios/bloxycode
|
|
67
70
|
|
|
68
|
-
# Or
|
|
71
|
+
# Or install via bun
|
|
72
|
+
bun install -g @bloxystudios/bloxycode
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### Development Setup
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
# Clone the repository
|
|
79
|
+
git clone https://github.com/bloxystudios/bloxycode.git
|
|
80
|
+
cd bloxycode
|
|
81
|
+
|
|
82
|
+
# Install dependencies
|
|
69
83
|
bun install
|
|
84
|
+
|
|
85
|
+
# Run in development mode
|
|
70
86
|
bun run dev
|
|
71
87
|
```
|
|
72
88
|
|
|
@@ -245,6 +261,20 @@ Contributions are welcome! Please see our contributing guidelines for more detai
|
|
|
245
261
|
|
|
246
262
|
MIT
|
|
247
263
|
|
|
264
|
+
## Changelog
|
|
265
|
+
|
|
266
|
+
### 1.0.2 - 2026-01-30
|
|
267
|
+
- **Fixed**: npm global installation failing to find platform-specific binary
|
|
268
|
+
- Added `optionalDependencies` to package.json for all platform packages (darwin, linux, windows)
|
|
269
|
+
- This allows npm to automatically install the correct binary for the user's platform
|
|
270
|
+
|
|
271
|
+
### 1.0.1 - Initial Release
|
|
272
|
+
- Initial release of BloxyCode with Bloxy autonomous task execution
|
|
273
|
+
- Multi-provider AI support (Claude, OpenAI, Gemini, and 15+ more)
|
|
274
|
+
- MCP (Model Context Protocol) compatibility
|
|
275
|
+
- TUI interface with SolidJS
|
|
276
|
+
- Session management and agent system
|
|
277
|
+
|
|
248
278
|
## Links
|
|
249
279
|
|
|
250
280
|
- [Documentation](https://docs.bloxycode.dev) (coming soon)
|
package/bin/bloxycode
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
import childProcess from "child_process"
|
|
4
|
+
import fs from "fs"
|
|
5
|
+
import path from "path"
|
|
6
|
+
import os from "os"
|
|
7
|
+
import { fileURLToPath } from "url"
|
|
8
|
+
|
|
9
|
+
const __filename = fileURLToPath(import.meta.url)
|
|
7
10
|
|
|
8
11
|
function run(target) {
|
|
9
12
|
const result = childProcess.spawnSync(target, process.argv.slice(2), {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"name": "@bloxystudios/bloxycode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,6 +13,23 @@
|
|
|
13
13
|
"bugs": {
|
|
14
14
|
"url": "https://github.com/bloxystudios/bloxycode/issues"
|
|
15
15
|
},
|
|
16
|
+
"optionalDependencies": {
|
|
17
|
+
"bloxycode-darwin-arm64": "1.0.2",
|
|
18
|
+
"bloxycode-darwin-x64": "1.0.2",
|
|
19
|
+
"bloxycode-darwin-x64-baseline": "1.0.2",
|
|
20
|
+
"bloxycode-linux-arm64": "1.0.2",
|
|
21
|
+
"bloxycode-linux-x64": "1.0.2",
|
|
22
|
+
"bloxycode-linux-x64-baseline": "1.0.2",
|
|
23
|
+
"bloxycode-linux-arm64-musl": "1.0.2",
|
|
24
|
+
"bloxycode-linux-x64-musl": "1.0.2",
|
|
25
|
+
"bloxycode-linux-x64-baseline-musl": "1.0.2",
|
|
26
|
+
"bloxycode-windows-x64": "1.0.2",
|
|
27
|
+
"bloxycode-windows-x64-baseline": "1.0.2"
|
|
28
|
+
},
|
|
29
|
+
"resolutions": {
|
|
30
|
+
"zod": "4.1.8",
|
|
31
|
+
"quansync": "^1.0.0"
|
|
32
|
+
},
|
|
16
33
|
"scripts": {
|
|
17
34
|
"typecheck": "tsgo --noEmit",
|
|
18
35
|
"test": "bun test",
|
|
@@ -82,7 +99,7 @@
|
|
|
82
99
|
"@ai-sdk/xai": "2.0.51",
|
|
83
100
|
"@clack/prompts": "1.0.0-alpha.1",
|
|
84
101
|
"@gitlab/gitlab-ai-provider": "3.3.1",
|
|
85
|
-
"@hono/standard-validator": "0.
|
|
102
|
+
"@hono/standard-validator": "^0.2.0",
|
|
86
103
|
"@hono/zod-validator": "^0.7.6",
|
|
87
104
|
"@modelcontextprotocol/sdk": "1.25.2",
|
|
88
105
|
"@octokit/graphql": "9.0.2",
|
|
@@ -116,7 +133,7 @@
|
|
|
116
133
|
"open": "10.1.2",
|
|
117
134
|
"opentui-spinner": "0.0.6",
|
|
118
135
|
"partial-json": "0.1.7",
|
|
119
|
-
"quansync": "^
|
|
136
|
+
"quansync": "^0.2.11",
|
|
120
137
|
"remeda": "2.26.0",
|
|
121
138
|
"solid-js": "1.9.10",
|
|
122
139
|
"strip-ansi": "7.1.2",
|