@fastino-ai/pioneer-cli 0.2.9 → 0.2.11
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 +49 -12
- package/dist/index.js +248 -0
- package/dist/yoga.wasm +0 -0
- package/package.json +14 -6
- package/src/api.ts +0 -3086
- package/src/chat/ChatApp.tsx +0 -1028
- package/src/chat/index.ts +0 -7
- package/src/client/ToolExecutor.ts +0 -175
- package/src/client/WebSocketClient.ts +0 -379
- package/src/client/index.ts +0 -2
- package/src/config.ts +0 -225
- package/src/index.tsx +0 -5763
- package/src/telemetry.ts +0 -173
- package/src/tests/api.test.ts +0 -104
- package/src/tests/config-functions.test.ts +0 -163
- package/src/tests/config.test.ts +0 -33
- package/src/tests/file-resolver-edge-cases.test.ts +0 -92
- package/src/tests/telemetry.test.ts +0 -111
- package/src/tests/tool-types.test.ts +0 -104
- package/src/tests/utils.test.ts +0 -90
- package/src/tools/bash.ts +0 -184
- package/src/tools/filesystem.ts +0 -444
- package/src/tools/index.ts +0 -22
- package/src/tools/sandbox.ts +0 -310
- package/src/tools/types.ts +0 -25
- package/src/utils/FileResolver.ts +0 -321
- package/src/utils/index.ts +0 -6
package/dist/yoga.wasm
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,26 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastino-ai/pioneer-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11",
|
|
4
4
|
"description": "Pioneer CLI - AI training platform with chat agent",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
|
-
"
|
|
8
|
-
"src/**/*.tsx",
|
|
7
|
+
"dist/**",
|
|
9
8
|
"README.md"
|
|
10
9
|
],
|
|
11
10
|
"publishConfig": {
|
|
12
11
|
"access": "public"
|
|
13
12
|
},
|
|
14
13
|
"bin": {
|
|
15
|
-
"pioneer": "
|
|
14
|
+
"pioneer": "dist/index.js"
|
|
16
15
|
},
|
|
17
16
|
"scripts": {
|
|
17
|
+
"build": "bun run scripts/build.ts",
|
|
18
|
+
"prepack": "bun run build",
|
|
18
19
|
"start": "bun run src/index.tsx",
|
|
19
20
|
"chat": "bun run src/index.tsx chat",
|
|
20
21
|
"dev": "bun run --hot src/index.tsx",
|
|
21
22
|
"typecheck": "tsc --noEmit",
|
|
22
23
|
"test": "bun test",
|
|
23
|
-
"test:
|
|
24
|
+
"test:ws-e2e": "bun test tests/ws_tool_browse_url_e2e.test.ts",
|
|
25
|
+
"test:agent-smoke": "bun test tests/agent_prompt_browse_mock_ws.test.ts",
|
|
26
|
+
"test:agent-live-auth": "RUN_AGENT_REST_PROBE_LIVE=1 bun test tests/agent_live_rest_probe.test.ts",
|
|
27
|
+
"smoke:agent-ws": "bun run scripts/agent-ws-smoke.ts",
|
|
28
|
+
"test:coverage": "bun test --coverage",
|
|
29
|
+
"release:check-version": "bun run scripts/check-release-version.ts",
|
|
30
|
+
"release:pack": "bun run scripts/release-pack.ts"
|
|
24
31
|
},
|
|
25
32
|
"dependencies": {
|
|
26
33
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
@@ -29,7 +36,8 @@
|
|
|
29
36
|
"ink-spinner": "^5.0.0",
|
|
30
37
|
"ink-text-input": "^5.0.1",
|
|
31
38
|
"openai": "^4.77.0",
|
|
32
|
-
"react": "^18.3.1"
|
|
39
|
+
"react": "^18.3.1",
|
|
40
|
+
"ws": "^8.18.0"
|
|
33
41
|
},
|
|
34
42
|
"devDependencies": {
|
|
35
43
|
"@types/node": "^22.0.0",
|