@defai.digital/ax-cli 4.4.6 → 4.4.7

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 +33 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -16,6 +16,7 @@
16
16
  - [Configuration](#configuration)
17
17
  - [MCP Integration](#mcp-integration)
18
18
  - [VSCode Extension](#vscode-extension)
19
+ - [AutomatosX Integration](#automatosx-integration)
19
20
  - [Project Memory](#project-memory)
20
21
  - [Security](#security)
21
22
  - [Architecture](#architecture)
@@ -82,6 +83,9 @@ Run `/init` inside the CLI to initialize your project context.
82
83
  |---------|-------------|
83
84
  | **Provider Optimized** | First-class support for GLM (Z.AI) and Grok (xAI) with provider-specific parameters |
84
85
  | **17 Built-in Tools** | File editing, bash execution, search, todos, and more |
86
+ | **AutomatosX Agents** | 20+ specialized AI agents for backend, frontend, security, DevOps, and more |
87
+ | **Autonomous Bug Fixing** | Scan and auto-fix timer leaks, resource issues, type errors with rollback safety |
88
+ | **Intelligent Refactoring** | Dead code removal, type safety fixes, complexity reduction with verification |
85
89
  | **MCP Integration** | Model Context Protocol with 12+ production-ready templates |
86
90
  | **Project Memory** | Intelligent context caching with 50% token savings |
87
91
  | **Enterprise Security** | AES-256-GCM encryption, no telemetry, CVSS-rated protections |
@@ -252,6 +256,33 @@ code --install-extension defai-digital.ax-cli-vscode
252
256
 
253
257
  ---
254
258
 
259
+ ## AutomatosX Integration
260
+
261
+ AX CLI integrates with [AutomatosX](https://github.com/defai-digital/automatosx) - a multi-agent AI system with autonomous bug fixing, intelligent refactoring, and 20+ specialized agents.
262
+
263
+ In interactive mode (`ax-glm` or `ax-grok`), just ask naturally:
264
+
265
+ ```
266
+ > please scan and fix bugs in this codebase
267
+
268
+ > refactor the authentication module, focus on removing dead code
269
+
270
+ > use the security agent to audit the API endpoints
271
+
272
+ > review this PRD and work with the product agent to improve it
273
+
274
+ > ask the backend and frontend agents to implement user registration together
275
+ ```
276
+
277
+ **What you get:**
278
+ - **Bug fixing**: Detects timer leaks, missing cleanup, resource issues - auto-fixes with rollback safety
279
+ - **Refactoring**: Removes dead code, fixes type safety, reduces complexity - verified by typecheck
280
+ - **20+ agents**: Backend, frontend, security, architecture, DevOps, data, and more
281
+
282
+ See [AutomatosX Guide](docs/AutomatosX-Integration.md) for agent list, advanced options, and configuration
283
+
284
+ ---
285
+
255
286
  ## Project Memory
256
287
 
257
288
  Reduce token costs and improve context recall with intelligent caching that stores and retrieves relevant project information, avoiding redundant processing.
@@ -319,6 +350,7 @@ Stay up-to-date with the latest improvements and features.
319
350
 
320
351
  ### Recent Highlights:
321
352
 
353
+ * **v4.4.7**: Security & Documentation - Added AutomatosX integration guide to README with bug fixing, refactoring, and multi-agent examples. Fixed ESLint configuration for legacy src/ directory. Resolved all CodeQL security alerts (false positives dismissed with annotations).
322
354
  * **v4.4.6**: Documentation update - Updated and refreshed documentation across the project.
323
355
  * **v4.4.5**: Package metadata update - Updated descriptions and keywords for all packages to better reflect current features: vibe coding, thinking mode, vision, web search, MCP integration, and AutomatosX agent system. Added ax.summary.json for faster prompt context loading.
324
356
  * **v4.4.4**: ax-grok setup fix - Fixed xAI model validation during setup. The `/models` endpoint returns only actual model IDs (e.g., `grok-4-0709`) but not aliases (e.g., `grok-4`). Setup now correctly recognizes model aliases and validates them against available versioned models.
@@ -357,6 +389,7 @@ For a complete history of changes, please refer to the [full release notes on Gi
357
389
  - [Configuration](docs/configuration.md)
358
390
  - [CLI Reference](docs/cli-reference.md)
359
391
  - [MCP Integration](docs/mcp.md)
392
+ - [AutomatosX Guide](docs/AutomatosX-Integration.md)
360
393
  - [VSCode Guide](docs/vscode-integration-guide.md)
361
394
  - [Figma Integration](docs/figma-guide.md)
362
395
  - [Troubleshooting](docs/troubleshooting.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defai.digital/ax-cli",
3
- "version": "4.4.6",
3
+ "version": "4.4.7",
4
4
  "sdkVersion": "1.4.0",
5
5
  "description": "Enterprise-Class AI Coding Assistant CLI - Terminal-based vibe coding with GLM, Grok, and multi-provider AI orchestration. Features thinking mode, vision, web search, MCP integration, and AutomatosX agent system.",
6
6
  "type": "module",
@@ -84,7 +84,7 @@
84
84
  "ts-morph": "^27.0.2",
85
85
  "ws": "^8.18.3",
86
86
  "zod": "^4.1.13",
87
- "@defai.digital/ax-core": "4.4.6"
87
+ "@defai.digital/ax-core": "4.4.7"
88
88
  },
89
89
  "devDependencies": {
90
90
  "@types/fs-extra": "^11.0.2",