@arcforge/axon 1.0.4 → 1.0.6

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 (3) hide show
  1. package/README.md +58 -148
  2. package/index.js +554 -554
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,195 +1,105 @@
1
1
  # Axon
2
2
 
3
- > **A new generation of agentic intelligence.**
3
+ A clean, fast coding agent with modular capabilities.
4
4
 
5
- Axon isn't another chatbot with tools. It's a **cognitive operating system** a distributed network of specialized AI subsystems that coordinate like a real mind to understand, reason, and code alongside you.
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
- **Built different. Think different.**
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
- ## What Makes Axon Different?
15
+ Axon takes a different approach.
16
16
 
17
- ### Designed Cognition, Not Prompted Behavior
17
+ ### Modular by default
18
18
 
19
- Axon runs on a proprietary **cognitive operating system** that orchestrates dozens of AI models as a single, coherent intelligence. Modular in structure, composable in function, transparent in reasoning.
19
+ Axon runs inside a capsule environment where capabilities can be added dynamically.
20
20
 
21
- This isn't prompted behavior. It's **designed cognition**.
21
+ * Install tools on demand
22
+ * Extend the agent with simple TypeScript modules
23
+ * No complex setup or configuration
22
24
 
23
- ### Persistent Memory Architecture
25
+ The agent is not limited to what it started with.
24
26
 
25
- Most agents drown in their own context windows, rereading your project on every turn. Axon forms a **persistent semantic map** of your codebase — architecture, patterns, conventions, dependencies — and recalls only what's relevant in the moment.
27
+ ### Fast, clean terminal UX
26
28
 
27
- - **No tokens wasted** on redundant context
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
- ### Network Intelligence
31
+ * Instant startup
32
+ * Smooth streaming output
33
+ * Clean diffs, logs, and process views
34
+ * Keyboard-first navigation
32
35
 
33
- A distributed network of specialized subsystems coordinate seamlessly:
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
- All working together as a single, cohesive intelligence runtime.
38
+ ### Works with real models
40
39
 
41
- ### No Slop, Just Code
40
+ Use the models you already have.
42
41
 
43
- Axon understands your architecture, follows your patterns, and writes thoughtful solutions. No unnecessary abstractions, no premature optimizations, no junior-level mistakes.
42
+ * OpenAI
43
+ * Anthropic
44
+ * OpenRouter
44
45
 
45
- It thinks like a senior engineer because it's **designed to think**, not just pattern-match.
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
- **Requirements:**
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
- ### Real-Time Visualizations
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
- $ axon
101
-
102
- # Initialize context for your project
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
- As Axon explores your codebase, it forms a persistent map of how everything fits together. Not files. Not tokens. But **meaning**: purpose, relationships, design intent.
78
+ ## Extending Axon
122
79
 
123
- ### 2. **Instruct** Context Without Friction
80
+ You can add your own tools with a simple module.
124
81
 
125
- Ask questions like a senior engineer would:
126
- - "Why was this module created?"
127
- - "What depends on this function?"
128
- - "How did this system evolve over time?"
129
-
130
- Axon answers immediately — without scanning, searching, or invoking tools. It simply **remembers**.
131
-
132
- ### 3. **Execute** — Distributed Intelligence
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
- Manage your subscription at [axon.arclabs.it/billing](https://axon.arclabs.it/billing)
91
+ Reload the environment and the agent can use it.
176
92
 
177
- ---
93
+ ## Status
178
94
 
179
- ## Support
95
+ Axon is in early beta.
180
96
 
181
- - **Website**: [axon.arclabs.it](https://axon.arclabs.it)
182
- - **Documentation**: [axon.arclabs.it/docs](https://axon.arclabs.it/docs)
183
- - **Billing**: [axon.arclabs.it/billing](https://axon.arclabs.it/billing)
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
- Copyright © 2025 ArcForge. All rights reserved.
190
-
191
- This is proprietary software. See [LICENSE](./LICENSE) for details.
192
-
193
- ---
194
-
195
- **Built different. Think different.**
105
+ Proprietary. © ArcForge