@arcforge/axon 1.0.3 → 1.0.5
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 +58 -148
- package/index.js +535 -532
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,195 +1,105 @@
|
|
|
1
1
|
# Axon
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A clean, fast coding agent with modular capabilities.
|
|
4
4
|
|
|
5
|
-
Axon
|
|
5
|
+
Axon is a terminal-first coding agent built for developers who want something simple, powerful, and extensible without fighting the tool.
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npm install -g @arcforge/axon
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
## Why Axon
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Most coding agents are either rigid with fixed tools and behaviour, or messy and hard to extend.
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Axon takes a different approach.
|
|
16
16
|
|
|
17
|
-
###
|
|
17
|
+
### Modular by default
|
|
18
18
|
|
|
19
|
-
Axon runs
|
|
19
|
+
Axon runs inside a capsule environment where capabilities can be added dynamically.
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
* Install tools on demand
|
|
22
|
+
* Extend the agent with simple TypeScript modules
|
|
23
|
+
* No complex setup or configuration
|
|
22
24
|
|
|
23
|
-
|
|
25
|
+
The agent is not limited to what it started with.
|
|
24
26
|
|
|
25
|
-
|
|
27
|
+
### Fast, clean terminal UX
|
|
26
28
|
|
|
27
|
-
|
|
28
|
-
- **No scanning or searching** — it simply remembers
|
|
29
|
-
- **Evolving understanding** that improves as you work together
|
|
29
|
+
Built on a custom terminal renderer.
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
* Instant startup
|
|
32
|
+
* Smooth streaming output
|
|
33
|
+
* Clean diffs, logs, and process views
|
|
34
|
+
* Keyboard-first navigation
|
|
32
35
|
|
|
33
|
-
|
|
34
|
-
- **Planners** design implementation strategies
|
|
35
|
-
- **Coders** write clean, contextual solutions
|
|
36
|
-
- **Critics** review for quality and correctness
|
|
37
|
-
- **Test Writers** ensure robustness
|
|
36
|
+
It behaves like a real development tool.
|
|
38
37
|
|
|
39
|
-
|
|
38
|
+
### Works with real models
|
|
40
39
|
|
|
41
|
-
|
|
40
|
+
Use the models you already have.
|
|
42
41
|
|
|
43
|
-
|
|
42
|
+
* OpenAI
|
|
43
|
+
* Anthropic
|
|
44
|
+
* OpenRouter
|
|
44
45
|
|
|
45
|
-
|
|
46
|
+
Bring your own API keys and start immediately.
|
|
46
47
|
|
|
47
|
-
|
|
48
|
+
### Built for real work
|
|
49
|
+
|
|
50
|
+
Axon supports:
|
|
51
|
+
|
|
52
|
+
* File reads and writes
|
|
53
|
+
* Subprocess execution
|
|
54
|
+
* Tool usage
|
|
55
|
+
* Multi-step coding tasks
|
|
56
|
+
|
|
57
|
+
It focuses on being a solid, usable coding agent.
|
|
48
58
|
|
|
49
59
|
## Quick Start
|
|
50
60
|
|
|
51
61
|
```bash
|
|
52
|
-
# Install globally
|
|
53
62
|
npm install -g @arcforge/axon
|
|
54
|
-
|
|
55
|
-
# Launch the terminal UI
|
|
56
63
|
axon
|
|
57
64
|
```
|
|
58
65
|
|
|
59
|
-
|
|
60
|
-
- [Bun](https://bun.sh) runtime installed
|
|
61
|
-
- Valid Axon API key (get yours at [axon.arclabs.it](https://axon.arclabs.it))
|
|
62
|
-
|
|
63
|
-
---
|
|
64
|
-
|
|
65
|
-
## Features
|
|
66
|
-
|
|
67
|
-
### Beautiful Terminal UI
|
|
68
|
-
Built with Blessed for a responsive, full-featured text user interface. Navigate with keyboard shortcuts, manage multiple workspaces, and visualize agent reasoning in real-time.
|
|
69
|
-
|
|
70
|
-
### Network Intelligence
|
|
71
|
-
Multiple specialized AI subsystems coordinating as a single mind — planners, critics, coders, test writers — all working in parallel across intelligent inference pipelines.
|
|
72
|
-
|
|
73
|
-
### Process Management
|
|
74
|
-
Monitor and control running processes, track execution state, and visualize the cognitive control loop in action.
|
|
75
|
-
|
|
76
|
-
### Kanban-Style Task Management
|
|
77
|
-
Built-in task board for organizing work, tracking agent decisions, and managing multi-step implementations.
|
|
78
|
-
|
|
79
|
-
### Device Authentication
|
|
80
|
-
Secure device flow authentication connects your CLI to your Axon account seamlessly.
|
|
66
|
+
Then add your API key and start prompting.
|
|
81
67
|
|
|
82
|
-
|
|
83
|
-
Audio visualizer, system metrics, and cognitive state monitoring — see your agent think.
|
|
84
|
-
|
|
85
|
-
---
|
|
86
|
-
|
|
87
|
-
## Usage
|
|
88
|
-
|
|
89
|
-
Once launched, navigate with:
|
|
90
|
-
|
|
91
|
-
- **Arrow keys** → Navigate menus and panels
|
|
92
|
-
- **Enter** → Select / Execute
|
|
93
|
-
- **Esc** → Go back
|
|
94
|
-
- **Tab** → Switch between panels
|
|
95
|
-
- **/help** → View all commands
|
|
96
|
-
|
|
97
|
-
### Example Session
|
|
68
|
+
## Example
|
|
98
69
|
|
|
99
70
|
```bash
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
> axon init
|
|
104
|
-
|
|
105
|
-
# Ask questions about your codebase
|
|
106
|
-
> "Why was this module created?"
|
|
107
|
-
> "What depends on this function?"
|
|
108
|
-
|
|
109
|
-
# Request implementations
|
|
110
|
-
> "Add user authentication with JWT"
|
|
111
|
-
|
|
112
|
-
# The agent plans, codes, tests, and explains its reasoning
|
|
71
|
+
> Add a CLI command to export this data as JSON
|
|
72
|
+
> Refactor this module to remove duplication
|
|
73
|
+
> Run the test suite and fix failures
|
|
113
74
|
```
|
|
114
75
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
## How It Works
|
|
118
|
-
|
|
119
|
-
### 1. **Initialize** — Build a Semantic Map
|
|
76
|
+
Axon will plan the task, edit files, run commands, and show diffs and output in real time.
|
|
120
77
|
|
|
121
|
-
|
|
78
|
+
## Extending Axon
|
|
122
79
|
|
|
123
|
-
|
|
80
|
+
You can add your own tools with a simple module.
|
|
124
81
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
Complex tasks are routed across parallel inference pipelines. Heavy reasoning goes deep with advanced models. Simple tasks stay lean and fast.
|
|
135
|
-
|
|
136
|
-
A purpose-built cognitive architecture that makes traditional LLM tools feel like they're standing still.
|
|
137
|
-
|
|
138
|
-
---
|
|
139
|
-
|
|
140
|
-
## Architecture
|
|
141
|
-
|
|
142
|
-
Axon is powered by:
|
|
143
|
-
|
|
144
|
-
- **Cognitive Operating System** — Proprietary runtime for orchestrating distributed AI subsystems
|
|
145
|
-
- **Persistent Memory Layer** — Semantic graph storage with contextual retrieval
|
|
146
|
-
- **Parallel Inference Pipelines** — Intelligent task routing across model tiers
|
|
147
|
-
- **Real-Time State Monitoring** — Observable cognitive control loop
|
|
148
|
-
|
|
149
|
-
Built on [Cognos](https://cognos.dev) — a first-class cognitive framework for agentic intelligence.
|
|
150
|
-
|
|
151
|
-
---
|
|
152
|
-
|
|
153
|
-
## Authentication
|
|
154
|
-
|
|
155
|
-
Axon uses **device flow authentication** to securely connect your CLI to your account:
|
|
156
|
-
|
|
157
|
-
1. Run `axon` for the first time
|
|
158
|
-
2. Visit the authentication URL shown in the terminal
|
|
159
|
-
3. Approve the device from your browser
|
|
160
|
-
4. Start coding
|
|
161
|
-
|
|
162
|
-
Your API key is stored securely and refreshed automatically.
|
|
163
|
-
|
|
164
|
-
---
|
|
165
|
-
|
|
166
|
-
## Credits & Billing
|
|
167
|
-
|
|
168
|
-
Axon operates on a **credit-based system**:
|
|
169
|
-
|
|
170
|
-
- **1,000 credits per £1**
|
|
171
|
-
- **Subscription plans** grant monthly credit allocations
|
|
172
|
-
- **Top-ups** available for one-time purchases
|
|
173
|
-
- Credits never expire
|
|
82
|
+
```ts
|
|
83
|
+
export default defineModule({
|
|
84
|
+
name: "dice",
|
|
85
|
+
tools: {
|
|
86
|
+
roll: () => Math.floor(Math.random() * 6) + 1
|
|
87
|
+
}
|
|
88
|
+
})
|
|
89
|
+
```
|
|
174
90
|
|
|
175
|
-
|
|
91
|
+
Reload the environment and the agent can use it.
|
|
176
92
|
|
|
177
|
-
|
|
93
|
+
## Status
|
|
178
94
|
|
|
179
|
-
|
|
95
|
+
Axon is in early beta.
|
|
180
96
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
97
|
+
* Core system is stable
|
|
98
|
+
* UX is polished
|
|
99
|
+
* Capabilities are still expanding
|
|
184
100
|
|
|
185
|
-
|
|
101
|
+
Looking for a small group of developers to try it and give feedback.
|
|
186
102
|
|
|
187
103
|
## License
|
|
188
104
|
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
This is proprietary software. See [LICENSE](./LICENSE) for details.
|
|
192
|
-
|
|
193
|
-
---
|
|
194
|
-
|
|
195
|
-
**Built different. Think different.**
|
|
105
|
+
Proprietary. © ArcForge
|