@defai.digital/automatosx 8.0.21 → 8.0.23
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/AGENTS.md
CHANGED
|
@@ -198,6 +198,98 @@ ax run backend "Draft implementation" --output automatosx/tmp/draft.ts
|
|
|
198
198
|
- Platform-specific guides: `CLAUDE.md` (Claude Code), `GEMINI.md` (Gemini CLI)
|
|
199
199
|
|
|
200
200
|
|
|
201
|
+
# List available agents
|
|
202
|
+
ax list agents
|
|
203
|
+
|
|
204
|
+
# Run an agent task
|
|
205
|
+
ax run <agent-name> "your task description"
|
|
206
|
+
|
|
207
|
+
# Example: backend automation
|
|
208
|
+
ax run backend "create a REST API for user management"
|
|
209
|
+
|
|
210
|
+
# Search past conversations
|
|
211
|
+
ax memory search "keyword"
|
|
212
|
+
|
|
213
|
+
# Check system status
|
|
214
|
+
ax status
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
## Working with AI Assistants
|
|
218
|
+
|
|
219
|
+
This project follows the [AGENTS.md standard](https://agents.md) for cross-tool compatibility.
|
|
220
|
+
|
|
221
|
+
- Any AI assistant with shell access can issue `ax` commands; wrap them in `bash -lc` when using the Codex CLI harness.
|
|
222
|
+
- For Cursor/Copilot/Codeium/Windsurf style tools, instruct the assistant to run the desired `ax run ...` command verbatim.
|
|
223
|
+
- Use AutomatosX agents for parallelized work (e.g., `quality` to draft tests while coding continues).
|
|
224
|
+
|
|
225
|
+
## Available Agents
|
|
226
|
+
|
|
227
|
+
| Agent | Persona | Expertise |
|
|
228
|
+
|-------|---------|-----------|
|
|
229
|
+
| `backend` | Bob | Go, Rust, Python, APIs, databases |
|
|
230
|
+
| `frontend` | Frank | React, Next.js, Vue, Swift UI |
|
|
231
|
+
| `fullstack` | Felix | Node.js, TypeScript, full-stack web apps |
|
|
232
|
+
| `mobile` | Maya | iOS, Android, Flutter, React Native |
|
|
233
|
+
| `devops` | Oliver | Kubernetes, Docker, CI/CD, infrastructure |
|
|
234
|
+
| `security` | Steve | Security audits, threat modeling, OWASP |
|
|
235
|
+
| `quality` | Queenie | Test planning, QA, E2E testing |
|
|
236
|
+
| `product` | Paris | Requirements, roadmaps, feature design |
|
|
237
|
+
| `writer` | Wendy | Technical writing, API docs, tutorials |
|
|
238
|
+
| `standard` | Stan | Best practices, design patterns, code review |
|
|
239
|
+
|
|
240
|
+
Run `ax list agents --format json` for metadata and availability across providers.
|
|
241
|
+
|
|
242
|
+
## Workspace Conventions
|
|
243
|
+
|
|
244
|
+
- `automatosx/PRD/` stores long-lived product and design documents committed to git.
|
|
245
|
+
- `automatosx/tmp/` is a scratchpad for drafts, logs, and generated artifacts (auto-cleaned, ignored by git).
|
|
246
|
+
- Use `--output` to redirect agent results into either directory depending on permanence requirements.
|
|
247
|
+
|
|
248
|
+
```bash
|
|
249
|
+
# Save planning document
|
|
250
|
+
ax run product "Design auth system" --output automatosx/PRD/auth-design.md
|
|
251
|
+
|
|
252
|
+
# Save temporary draft
|
|
253
|
+
ax run backend "Draft implementation" --output automatosx/tmp/draft.ts
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
## Memory System
|
|
257
|
+
|
|
258
|
+
- All `ax run` executions persist to `.automatosx/memory/memories.db` (SQLite FTS5, private/local).
|
|
259
|
+
- Retrieve past insights with `ax memory search "<keywords>"` or list recent sessions via `ax memory list --limit 10`.
|
|
260
|
+
- Manage retention: export with `ax memory export > backup.json` or prune via `ax memory clear --before "YYYY-MM-DD"`.
|
|
261
|
+
|
|
262
|
+
## Common AutomatosX Commands
|
|
263
|
+
|
|
264
|
+
| Command | Description |
|
|
265
|
+
|---------|-------------|
|
|
266
|
+
| `ax setup` | Initialize AutomatosX in the current project |
|
|
267
|
+
| `ax list agents` | List available agents |
|
|
268
|
+
| `ax run <agent> "task"` | Execute an agent task |
|
|
269
|
+
| `ax memory search "keyword"` | Search conversation history |
|
|
270
|
+
| `ax status` | Check provider/system status |
|
|
271
|
+
| `ax config show` | Display current configuration |
|
|
272
|
+
| `ax config get <path>` | Read a specific config value |
|
|
273
|
+
| `ax agent create my-agent --template developer --interactive` | Scaffold a custom agent |
|
|
274
|
+
| `ax --debug run <agent> "task"` | Run with verbose logging |
|
|
275
|
+
|
|
276
|
+
## Configuration & Troubleshooting
|
|
277
|
+
|
|
278
|
+
- Primary configuration file: `automatosx.config.json`; view via `ax config show`.
|
|
279
|
+
- **Agent not found**: verify case-sensitive names with `ax list agents`.
|
|
280
|
+
- **Provider unavailable**: inspect `ax status` and `ax config show` for provider priorities.
|
|
281
|
+
- **Memory pressure**: run `ax cache stats` or clear old entries (`ax memory clear --before "2024-01-01"`).
|
|
282
|
+
- Enable verbose diagnostics with `ax --debug run <agent> "task"`.
|
|
283
|
+
|
|
284
|
+
## Additional References
|
|
285
|
+
|
|
286
|
+
- AutomatosX documentation: https://github.com/defai-digital/automatosx
|
|
287
|
+
- NPM package: https://www.npmjs.com/package/@defai.digital/automatosx
|
|
288
|
+
- Agent definitions: `.automatosx/agents/`
|
|
289
|
+
- Memory database: `.automatosx/memory/memories.db`
|
|
290
|
+
- Platform-specific guides: `CLAUDE.md` (Claude Code), `GEMINI.md` (Gemini CLI)
|
|
291
|
+
|
|
292
|
+
|
|
201
293
|
# List available agents
|
|
202
294
|
ax list agents
|
|
203
295
|
|
package/automatosx.config.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defai.digital/automatosx",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Production-ready code intelligence platform with AI agents, workflow orchestration, interactive CLI, SpecKit generators, and autonomous retry system. 44 languages, 21 AI agents, 745+ tests.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
Binary file
|
|
File without changes
|