@bitbiz/pi-coding-agent-win32-x64 1.6.24 → 1.6.25
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 +35 -0
- package/package.json +2 -1
- package/pi.exe +0 -0
- package/windows.md +10 -1
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# BitBiz Pi Coding Agent
|
|
2
|
+
|
|
3
|
+
A cross-platform, native terminal coding agent for software development and workspace automation.
|
|
4
|
+
|
|
5
|
+
[Homepage](https://bitbiz.top/) · [npm package](https://www.npmjs.com/package/@bitbiz/pi-coding-agent)
|
|
6
|
+
|
|
7
|
+
## Why BitBiz Pi Coding Agent
|
|
8
|
+
|
|
9
|
+
- **Native cross-platform runtime** — npm automatically selects the matching macOS, Linux, or Windows package. The runtime ships with ripgrep, fd, themes, HTML export assets, and image-processing WASM.
|
|
10
|
+
- **Broad model choice** — use BitBiz AI Hub or connect providers including Anthropic, OpenAI, Gemini, GitHub Copilot, OpenRouter, Amazon Bedrock, and OpenAI-compatible services.
|
|
11
|
+
- **Engineering-focused tools** — inspect and edit files, run shell commands, search code, automate browsers, and extend the workspace with additional tools.
|
|
12
|
+
- **Extensible workflows** — add Skills, MCP servers, prompt templates, themes, and TypeScript extensions without forking the core agent.
|
|
13
|
+
- **Long-task support** — persistent sessions, context compaction, configurable work modes, message queues, and subagents support complex work across multiple steps.
|
|
14
|
+
- **Automation-ready** — use the interactive TUI, print/JSON output, RPC mode, or the SDK for integration with other applications.
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install -g @bitbiz/pi-coding-agent
|
|
20
|
+
pi
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Run `/login`, select **BitBiz AI Hub** or another supported provider, and follow the authorization instructions.
|
|
24
|
+
|
|
25
|
+
## Supported native packages
|
|
26
|
+
|
|
27
|
+
- macOS arm64 and x64
|
|
28
|
+
- Linux glibc arm64 and x64
|
|
29
|
+
- Windows x64
|
|
30
|
+
|
|
31
|
+
The `@bitbiz/pi-coding-agent-*` platform packages are installed automatically by the main package. Install `@bitbiz/pi-coding-agent` rather than selecting a platform package directly.
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
package/package.json
CHANGED
package/pi.exe
CHANGED
|
Binary file
|
package/windows.md
CHANGED
|
@@ -5,7 +5,16 @@
|
|
|
5
5
|
- 64 位 x86 Windows 10 或更高版本。
|
|
6
6
|
- 安装 [Git for Windows](https://git-scm.com/download/win),Pi 默认使用其中的 Git Bash。
|
|
7
7
|
|
|
8
|
-
##
|
|
8
|
+
## npm 安装(推荐)
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install -g @bitbiz/pi-coding-agent
|
|
12
|
+
npx pi
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
安装完成后可使用 `npx pi` 启动,无需手动配置 Pi 的 PATH。首次启动后执行 `/login`,选择 **BitBiz AI Hub**,然后按提示在浏览器中继续并完成授权。
|
|
16
|
+
|
|
17
|
+
## ZIP 安装
|
|
9
18
|
|
|
10
19
|
1. 将发行 ZIP 完整解压到固定目录,不要只复制 `pi.exe`。
|
|
11
20
|
2. 在解压目录打开 Git Bash。
|