@arcforge/axon 0.0.2 → 0.0.3
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 +195 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
# Axon
|
|
2
|
+
|
|
3
|
+
> **A new generation of agentic intelligence.**
|
|
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.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @arcforge/axon
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
**Built different. Think different.**
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## What Makes Axon Different?
|
|
16
|
+
|
|
17
|
+
### Designed Cognition, Not Prompted Behavior
|
|
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.
|
|
20
|
+
|
|
21
|
+
This isn't prompted behavior. It's **designed cognition**.
|
|
22
|
+
|
|
23
|
+
### Persistent Memory Architecture
|
|
24
|
+
|
|
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.
|
|
26
|
+
|
|
27
|
+
- **No tokens wasted** on redundant context
|
|
28
|
+
- **No scanning or searching** — it simply remembers
|
|
29
|
+
- **Evolving understanding** that improves as you work together
|
|
30
|
+
|
|
31
|
+
### Network Intelligence
|
|
32
|
+
|
|
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
|
|
38
|
+
|
|
39
|
+
All working together as a single, cohesive intelligence runtime.
|
|
40
|
+
|
|
41
|
+
### No Slop, Just Code
|
|
42
|
+
|
|
43
|
+
Axon understands your architecture, follows your patterns, and writes thoughtful solutions. No unnecessary abstractions, no premature optimizations, no junior-level mistakes.
|
|
44
|
+
|
|
45
|
+
It thinks like a senior engineer because it's **designed to think**, not just pattern-match.
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## Quick Start
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
# Install globally
|
|
53
|
+
npm install -g @arcforge/axon
|
|
54
|
+
|
|
55
|
+
# Launch the terminal UI
|
|
56
|
+
axon
|
|
57
|
+
```
|
|
58
|
+
|
|
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.
|
|
81
|
+
|
|
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
|
|
98
|
+
|
|
99
|
+
```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
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
## How It Works
|
|
118
|
+
|
|
119
|
+
### 1. **Initialize** — Build a Semantic Map
|
|
120
|
+
|
|
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.
|
|
122
|
+
|
|
123
|
+
### 2. **Instruct** — Context Without Friction
|
|
124
|
+
|
|
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
|
|
174
|
+
|
|
175
|
+
Manage your subscription at [axon.arclabs.it/billing](https://axon.arclabs.it/billing)
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
## Support
|
|
180
|
+
|
|
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)
|
|
184
|
+
|
|
185
|
+
---
|
|
186
|
+
|
|
187
|
+
## License
|
|
188
|
+
|
|
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.**
|
package/package.json
CHANGED