@arrislink/axon 1.0.0 → 1.0.1

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 CHANGED
@@ -8,7 +8,7 @@
8
8
  [![Bun](https://img.shields.io/badge/bun-%3E=1.1.0-blue.svg)](https://bun.sh)
9
9
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.3-blue.svg)](https://www.typescriptlang.org)
10
10
 
11
- Axon is a unified AI-assisted development environment that solves context loss, wheel reinvention, and planning chaos in AI-powered programming through deep integration of specification-driven development, task management, and skill reuse.
11
+ Axon is a unified AI-assisted development environment that solves context loss, wheel reinvention, and planning chaos in AI-powered programming. **Powered by [OpenCode](https://github.com/anomalyco/opencode) and [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)**, Axon orchestrates these powerful tools through specification-driven development and task management.
12
12
 
13
13
  ## ✨ Features
14
14
 
@@ -19,16 +19,40 @@ Axon is a unified AI-assisted development environment that solves context loss,
19
19
  - **🤖 Multi-Provider Support** - Integrate with OMO for 75+ LLM providers (Anthropic, OpenAI, Antigravity, etc.)
20
20
  - **🎭 Agent Orchestration** - Multiple AI agents collaborate intelligently
21
21
 
22
+ ## 🎯 Applicable Scenarios
23
+
24
+ Axon is best suited for:
25
+
26
+ - **Complex Feature Implementation**: When a feature requires multiple file changes and architectural consistency (e.g., "Add JWT Auth").
27
+ - **Greenfield Projects**: Starting a new project with clear requirements and strictly following a spec.
28
+ - **Large-Scale Refactoring**: Systematically updating code patterns across a codebase.
29
+ - **Team Standardization**: Enforcing consistent coding standards and capabilities across a team using shared Skill templates.
30
+
31
+ It is **NOT** designed for:
32
+ - Simple, one-line code completions (Use Copilot/Cursor).
33
+ - Real-time syntax error fixing (Use IDE linters).
34
+
35
+ ## 🆚 Tool Comparison
36
+
37
+ | Feature | Axon | GitHub Copilot / Cursor | Aider / OpenDevin |
38
+ | :--- | :--- | :--- | :--- |
39
+ | **Core Philosophy** | **Plan-Execute-Verify** (Agentic) | **Autocomplete** (Assistive) | **Chat-to-Code** (Autonomous) |
40
+ | **Context Awareness** | **High** (Project-wide Spec + Graph) | **Medium** (Open Files + RAG) | **High** (Repo Map) |
41
+ | **Planning** | ✅ **Pre-execution Task Graph** | ❌ None (Streaming) | ⚠️ Implicit (Step-by-step) |
42
+ | **Human Control** | ✅ **High** (Review Plan & Spec) | ✅ High (Accept/Reject) | ⚠️ Application Dependent |
43
+ | **Cost Control** | ✅ **Token Budgeting & Tracking** | ❌ Subscription Based | ⚠️ Often Unbounded |
44
+ | **Knowledge Reuse** | ✅ **Skill Templates** (.skills) | ❌ None | ❌ None |
45
+
22
46
  ## 🚀 Quick Start
23
47
 
24
48
  ### Global Installation (Recommended)
25
49
 
26
50
  ```bash
27
- # Install globally via npm (coming soon)
28
- npm install -g axon
51
+ # Install globally via npm
52
+ npm install -g @arrislink/axon
29
53
 
30
54
  # Or use with bunx
31
- bunx axon init my-project
55
+ bunx @arrislink/axon init my-project
32
56
  ```
33
57
 
34
58
  ### Development Installation
@@ -220,9 +244,8 @@ bun run build:js
220
244
  ```
221
245
 
222
246
  ## 📖 Documentation
223
-
224
- - [Product Requirements (PRD)](./PRD.md)
225
- - [API Documentation](./docs/api.md)
247
+
248
+ - [**User Guide**](./docs/GUIDE.md) - **Start Here** (Philosophy, Arch, Features, API)
226
249
  - [Contributing Guide](./CONTRIBUTING.md)
227
250
  - [Changelog](./CHANGELOG.md)
228
251
 
package/README.zh-CN.md CHANGED
@@ -8,7 +8,7 @@
8
8
  [![Bun](https://img.shields.io/badge/bun-%3E=1.1.0-blue.svg)](https://bun.sh)
9
9
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.3-blue.svg)](https://www.typescriptlang.org)
10
10
 
11
- Axon 是一个统一的 AI 辅助开发环境,通过深度集成规格驱动开发、任务管理和技能复用,解决 AI 编程中的上下文丢失、重复造轮子和规划失控问题。
11
+ Axon 是一个统一的 AI 辅助开发环境,解决 AI 编程中的上下文丢失、重复造轮子和规划失控问题。**由 [OpenCode](https://github.com/anomalyco/opencode) 和 [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) 驱动**,Axon 通过规格驱动开发和任务管理来编排这些强大的工具。
12
12
 
13
13
  ## ✨ 核心特性
14
14
 
@@ -19,16 +19,40 @@ Axon 是一个统一的 AI 辅助开发环境,通过深度集成规格驱动
19
19
  - **🤖 多提供商支持** - 集成 OMO,支持 75+ LLM 提供商(Anthropic、OpenAI、Antigravity 等)
20
20
  - **🎭 Agent 编排** - 多个 AI 代理智能协作
21
21
 
22
+ ## 🎯 适用场景
23
+
24
+ Axon 最适合以下场景:
25
+
26
+ - **复杂功能实现**: 当功能需要修改多个文件并保持架构一致性时(例如“添加 JWT 认证”)。
27
+ - **绿地项目**: 启动一个需求清晰且严格遵循规格的新项目。
28
+ - **大规模重构**: 在代码库中系统地更新代码模式。
29
+ - **团队标准化**: 使用共享的技能模板在团队中强制执行一致的编码标准和能力。
30
+
31
+ 它是与 **不适用** 于:
32
+ - 简单的单行代码补全(请使用 Copilot/Cursor)。
33
+ - 实时语法错误修复(请使用 IDE linter)。
34
+
35
+ ## 🆚 工具对比
36
+
37
+ | 特性 | Axon | GitHub Copilot / Cursor | Aider / OpenDevin |
38
+ | :--- | :--- | :--- | :--- |
39
+ | **核心理念** | **规划-执行-验证** (代理式) | **自动补全** (辅助式) | **聊天即代码** (自主式) |
40
+ | **上下文感知** | **高** (全项目规格 + 任务图) | **中** (打开文件 + RAG) | **高** (仓库地图) |
41
+ | **规划能力** | ✅ **执行前任务图** | ❌ 无 (流式生成) | ⚠️ 隐式 (逐步进行) |
42
+ | **人类控制** | ✅ **高** (审查规划与规格) | ✅ 高 (接受/拒绝) | ⚠️ 依赖于具体应用 |
43
+ | **成本控制** | ✅ **Token 预算与追踪** | ❌ 基于订阅 | ⚠️ 通常无限制 |
44
+ | **知识复用** | ✅ **技能模板** (.skills) | ❌ 无 | ❌ 无 |
45
+
22
46
  ## 🚀 快速开始
23
47
 
24
48
  ### 全局安装(推荐)
25
49
 
26
50
  ```bash
27
- # 通过 npm 全局安装(即将推出)
28
- npm install -g axon
51
+ # 通过 npm 全局安装
52
+ npm install -g @arrislink/axon
29
53
 
30
54
  # 或使用 bunx
31
- bunx axon init my-project
55
+ bunx @arrislink/axon init my-project
32
56
  ```
33
57
 
34
58
  ### 开发安装
@@ -220,9 +244,8 @@ bun run build:js
220
244
  ```
221
245
 
222
246
  ## 📖 文档
223
-
224
- - [产品需求文档 (PRD)](./PRD.md)
225
- - [API 文档](./docs/api.md)
247
+
248
+ - [**用户指南**](./docs/GUIDE.zh-CN.md) - **从这里开始** (设计理念, 架构, 功能, API)
226
249
  - [贡献指南](./CONTRIBUTING.md)
227
250
  - [更新日志](./CHANGELOG.md)
228
251
 
package/dist/ax CHANGED
Binary file