@defai.digital/automatosx 6.5.8 → 6.5.9
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/CHANGELOG.md +25 -0
- package/README.md +38 -2
- package/dist/index.js +1271 -1262
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [6.5.9] - 2025-11-01
|
|
6
|
+
|
|
7
|
+
### ✨ Features
|
|
8
|
+
|
|
9
|
+
#### Iterate Mode Documentation & CLI Guidance
|
|
10
|
+
|
|
11
|
+
**Enhancements:**
|
|
12
|
+
|
|
13
|
+
- **README.md**: Updated autonomous iterate mode example
|
|
14
|
+
- Added "and ax agent" to emphasize AI + AutomatosX agent collaboration
|
|
15
|
+
- Example: "Please iterate 5 times with ultrathink and ax agent to find and fix bugs"
|
|
16
|
+
- Highlights the real power of iterate mode for repeating tasks without questions
|
|
17
|
+
|
|
18
|
+
- **init.ts**: Added Iterate Mode section to CLI success message
|
|
19
|
+
- Shows `--iterate` flag usage during `ax init`
|
|
20
|
+
- Provides practical example with quality agent
|
|
21
|
+
- Positioned before agent list for better discoverability
|
|
22
|
+
- Teaches users about autonomous multi-iteration capabilities
|
|
23
|
+
|
|
24
|
+
**Impact:**
|
|
25
|
+
- New users learn about iterate mode during project initialization
|
|
26
|
+
- Clear examples show autonomous bug-finding workflows
|
|
27
|
+
- Better integration guidance for Claude Code/Gemini/Codex
|
|
28
|
+
- All 2,612 unit tests passing ✅
|
|
29
|
+
|
|
5
30
|
## [6.5.8] - 2025-11-01
|
|
6
31
|
|
|
7
32
|
### 🐛 Bug Fixes
|
package/README.md
CHANGED
|
@@ -154,17 +154,53 @@ Backend handles the API, data handles ETL and warehousing."
|
|
|
154
154
|
|
|
155
155
|
**Long-Running Tasks with Iterate Mode**:
|
|
156
156
|
|
|
157
|
+
Iterate mode is perfect for autonomous, repeating tasks without constant questions:
|
|
158
|
+
|
|
159
|
+
```
|
|
160
|
+
# In Claude Code - Autonomous Bug-Finding (The Real Power!)
|
|
161
|
+
"Please iterate 5 times with ultrathink and ax agent to find and fix bugs"
|
|
162
|
+
|
|
163
|
+
# This will autonomously:
|
|
164
|
+
# - Iterate 1: Scan for parseInt/JSON.parse safety issues → Find & fix bugs
|
|
165
|
+
# - Iterate 2: Check array access patterns → Find & fix bugs
|
|
166
|
+
# - Iterate 3: Analyze async/await error handling → Find & fix bugs
|
|
167
|
+
# - Iterate 4: Search for race conditions → Find & fix bugs
|
|
168
|
+
# - Iterate 5: Verify resource cleanup → Find & fix bugs
|
|
169
|
+
# NO questions asked - just autonomous work!
|
|
157
170
|
```
|
|
158
|
-
# In Gemini CLI
|
|
159
|
-
"Please ultrathink to work with ax in iterate mode to find and fix bug"
|
|
160
171
|
|
|
172
|
+
```
|
|
173
|
+
# In Gemini CLI - Comprehensive Code Analysis
|
|
161
174
|
"Use ax quality agent in iterate mode to analyze the entire codebase for
|
|
162
175
|
performance issues. Set 120 minute timeout with balanced strictness."
|
|
163
176
|
|
|
177
|
+
# This runs multiple analysis passes autonomously:
|
|
178
|
+
# - Memory profiling across all modules
|
|
179
|
+
# - Database query optimization
|
|
180
|
+
# - API response time analysis
|
|
181
|
+
# - Resource utilization patterns
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
```
|
|
185
|
+
# In OpenAI Codex - Security Hardening
|
|
164
186
|
"Have ax security agent run a comprehensive security audit in iterate mode
|
|
165
187
|
with paranoid strictness. This is for production deployment."
|
|
188
|
+
|
|
189
|
+
# Autonomous security iterations:
|
|
190
|
+
# - SQL injection scanning
|
|
191
|
+
# - XSS vulnerability detection
|
|
192
|
+
# - Authentication bypass attempts
|
|
193
|
+
# - Authorization flaw discovery
|
|
194
|
+
# - Cryptography weakness analysis
|
|
166
195
|
```
|
|
167
196
|
|
|
197
|
+
**Why Iterate Mode is Powerful**:
|
|
198
|
+
- 🔄 **Autonomous Loops**: Repeats tasks without asking questions
|
|
199
|
+
- 🎯 **Systematic**: Each iteration focuses on different aspects
|
|
200
|
+
- 📊 **Comprehensive**: Covers more ground than manual analysis
|
|
201
|
+
- ✅ **Auto-Fix**: Finds AND fixes issues autonomously
|
|
202
|
+
- 🚀 **De Facto Best Practice**: Industry-standard autonomous workflows
|
|
203
|
+
|
|
168
204
|
### Why Natural Language?
|
|
169
205
|
|
|
170
206
|
- ✅ **Conversational**: Talk to AI assistants like teammates
|