@wanghuimvp/axon 0.5.36 → 0.5.38

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.
Files changed (2) hide show
  1. package/README.md +38 -20
  2. package/package.json +24 -13
package/README.md CHANGED
@@ -1,20 +1,38 @@
1
- # Axon
2
-
3
- A fast, open-source AI coding agent for your terminal — a fork of [opencode](https://github.com/anomalyco/opencode) (MIT).
4
-
5
- ```bash
6
- npm i -g @wanghuimvp/axon
7
- axon
8
- ```
9
-
10
- Rich TUI, multi-provider models, plugins, MCP, and LSP. Press `Tab` to switch modes: **build · plan · ask · debug · orchestrator**.
11
-
12
- ```bash
13
- axon # start the TUI
14
- axon run "<message>" # non-interactive run
15
- axon --help # all commands
16
- ```
17
-
18
- See the [project README](https://github.com/Wade-DevCode/axon) for full install, usage, and configuration.
19
-
20
- > Windows (x64) is published today; macOS and Linux builds are on the way.
1
+ # Axon
2
+
3
+ **Developer Agent for the Terminal**
4
+
5
+ Axon is a terminal-native coding agent for exploring repositories, planning changes, editing code, running tools, reviewing diffs, debugging failures, and coordinating larger tasks.
6
+
7
+ Developed by **Wang Hui (王辉)**. GitHub: https://github.com/Wade-DevCode/axon
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ npm install -g @wanghuimvp/axon
13
+ cd your-project
14
+ axon providers login
15
+ axon
16
+ ```
17
+
18
+ The npm installer selects the native binary for Windows, macOS, or Linux on x64 and ARM64 systems.
19
+
20
+ ## Core workflows
21
+
22
+ ```bash
23
+ axon # open the TUI
24
+ axon run "fix the failing tests" # run a non-interactive task
25
+ axon --continue # continue the latest session
26
+ axon models # list available models
27
+ axon providers login # connect a model provider
28
+ axon serve # start the headless server
29
+ axon --help # show all commands
30
+ ```
31
+
32
+ Axon includes agents for building, planning, coding, Q&A, debugging, review, and orchestration. It also supports MCP servers, plugins, custom agents, skills, LSP integration, a web interface, and ACP.
33
+
34
+ - [Documentation and source](https://github.com/Wade-DevCode/axon)
35
+ - [GitHub Releases](https://github.com/Wade-DevCode/axon/releases/latest)
36
+ - [License](https://github.com/Wade-DevCode/axon/blob/main/LICENSE)
37
+
38
+ Axon is built from [OpenCode](https://github.com/anomalyco/opencode) and distributed under the MIT License.
package/package.json CHANGED
@@ -6,8 +6,19 @@
6
6
  "scripts": {
7
7
  "postinstall": "node ./postinstall.mjs"
8
8
  },
9
- "version": "0.5.36",
9
+ "version": "0.5.38",
10
+ "description": "Developer Agent for the Terminal",
10
11
  "license": "MIT",
12
+ "author": {
13
+ "name": "Wang Hui",
14
+ "url": "https://github.com/Wade-DevCode"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/Wade-DevCode/axon"
19
+ },
20
+ "homepage": "https://github.com/Wade-DevCode/axon",
21
+ "bugs": "https://github.com/Wade-DevCode/axon/issues",
11
22
  "os": [
12
23
  "darwin",
13
24
  "linux",
@@ -18,17 +29,17 @@
18
29
  "x64"
19
30
  ],
20
31
  "optionalDependencies": {
21
- "axon-windows-x64-baseline": "0.5.36",
22
- "axon-windows-x64": "0.5.36",
23
- "axon-windows-arm64": "0.5.36",
24
- "axon-linux-x64-musl": "0.5.36",
25
- "axon-linux-x64-baseline-musl": "0.5.36",
26
- "axon-linux-x64-baseline": "0.5.36",
27
- "axon-linux-x64": "0.5.36",
28
- "axon-linux-arm64-musl": "0.5.36",
29
- "axon-linux-arm64": "0.5.36",
30
- "axon-darwin-x64-baseline": "0.5.36",
31
- "axon-darwin-x64": "0.5.36",
32
- "axon-darwin-arm64": "0.5.36"
32
+ "axon-windows-x64-baseline": "0.5.38",
33
+ "axon-windows-x64": "0.5.38",
34
+ "axon-windows-arm64": "0.5.38",
35
+ "axon-linux-x64-musl": "0.5.38",
36
+ "axon-linux-x64-baseline-musl": "0.5.38",
37
+ "axon-linux-x64-baseline": "0.5.38",
38
+ "axon-linux-x64": "0.5.38",
39
+ "axon-linux-arm64-musl": "0.5.38",
40
+ "axon-linux-arm64": "0.5.38",
41
+ "axon-darwin-x64-baseline": "0.5.38",
42
+ "axon-darwin-x64": "0.5.38",
43
+ "axon-darwin-arm64": "0.5.38"
33
44
  }
34
45
  }