@defai.digital/automatosx 5.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/CHANGELOG.md +2877 -0
- package/CONTRIBUTING.md +357 -0
- package/FAQ.md +604 -0
- package/FIXES.md +277 -0
- package/LICENSE +190 -0
- package/README.md +603 -0
- package/REVIEW-REPORT.md +278 -0
- package/TROUBLESHOOTING.md +612 -0
- package/automatosx.config.json +219 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +11806 -0
- package/dist/index.js.map +1 -0
- package/docs/README.md +227 -0
- package/docs/guide/core-concepts.md +568 -0
- package/docs/guide/installation.md +406 -0
- package/docs/guide/introduction.md +199 -0
- package/docs/guide/quick-start.md +387 -0
- package/docs/index.md +132 -0
- package/docs/reference/cli-commands.md +894 -0
- package/docs/tutorials/first-agent.md +691 -0
- package/docs/tutorials/memory-management.md +785 -0
- package/examples/AGENTS_INFO.md +293 -0
- package/examples/README.md +434 -0
- package/examples/abilities/best-practices.md +102 -0
- package/examples/abilities/code-generation.md +1035 -0
- package/examples/abilities/code-review.md +42 -0
- package/examples/abilities/content-creation.md +97 -0
- package/examples/abilities/debugging.md +43 -0
- package/examples/abilities/documentation.md +54 -0
- package/examples/abilities/error-analysis.md +107 -0
- package/examples/abilities/general-assistance.md +26 -0
- package/examples/abilities/our-architecture-decisions.md +242 -0
- package/examples/abilities/our-code-review-checklist.md +217 -0
- package/examples/abilities/our-coding-standards.md +389 -0
- package/examples/abilities/our-project-structure.md +502 -0
- package/examples/abilities/performance-analysis.md +56 -0
- package/examples/abilities/problem-solving.md +50 -0
- package/examples/abilities/refactoring.md +49 -0
- package/examples/abilities/security-audit.md +65 -0
- package/examples/abilities/task-planning.md +65 -0
- package/examples/abilities/technical-writing.md +77 -0
- package/examples/abilities/testing.md +47 -0
- package/examples/abilities/troubleshooting.md +80 -0
- package/examples/agents/assistant.yaml +45 -0
- package/examples/agents/backend.yaml +60 -0
- package/examples/agents/ceo.yaml +47 -0
- package/examples/agents/coder.yaml +388 -0
- package/examples/agents/cto.yaml +47 -0
- package/examples/agents/data.yaml +47 -0
- package/examples/agents/debugger.yaml +59 -0
- package/examples/agents/design.yaml +46 -0
- package/examples/agents/devops.yaml +47 -0
- package/examples/agents/frontend.yaml +61 -0
- package/examples/agents/product.yaml +47 -0
- package/examples/agents/quality.yaml +47 -0
- package/examples/agents/reviewer.yaml +49 -0
- package/examples/agents/security.yaml +47 -0
- package/examples/agents/writer.yaml +66 -0
- package/examples/claude/commands/ax:agent.md +37 -0
- package/examples/claude/commands/ax:clear.md +22 -0
- package/examples/claude/commands/ax:init.md +25 -0
- package/examples/claude/commands/ax:list.md +19 -0
- package/examples/claude/commands/ax:memory.md +25 -0
- package/examples/claude/commands/ax:status.md +24 -0
- package/examples/claude/commands/ax:update.md +28 -0
- package/examples/claude/mcp/automatosx.json +74 -0
- package/examples/templates/analyst.yaml +60 -0
- package/examples/templates/basic-agent.yaml +28 -0
- package/examples/templates/designer.yaml +69 -0
- package/examples/templates/developer.yaml +60 -0
- package/examples/templates/qa-specialist.yaml +71 -0
- package/examples/use-cases/01-web-app-development.md +374 -0
- package/package.json +86 -0
- package/scripts/check-release.js +128 -0
- package/scripts/real-provider-test.sh +357 -0
- package/scripts/smoke-test.sh +286 -0
- package/tsup.config.ts +16 -0
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
{
|
|
2
|
+
"providers": {
|
|
3
|
+
"claude-code": {
|
|
4
|
+
"enabled": true,
|
|
5
|
+
"priority": 3,
|
|
6
|
+
"timeout": 900000,
|
|
7
|
+
"command": "claude",
|
|
8
|
+
"healthCheck": {
|
|
9
|
+
"enabled": true,
|
|
10
|
+
"interval": 300000,
|
|
11
|
+
"timeout": 5000
|
|
12
|
+
},
|
|
13
|
+
"defaults": {
|
|
14
|
+
"maxTokens": 4096,
|
|
15
|
+
"temperature": 0.7,
|
|
16
|
+
"topP": 1
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"gemini-cli": {
|
|
20
|
+
"enabled": true,
|
|
21
|
+
"priority": 2,
|
|
22
|
+
"timeout": 900000,
|
|
23
|
+
"command": "gemini",
|
|
24
|
+
"healthCheck": {
|
|
25
|
+
"enabled": true,
|
|
26
|
+
"interval": 300000,
|
|
27
|
+
"timeout": 5000
|
|
28
|
+
},
|
|
29
|
+
"defaults": {
|
|
30
|
+
"maxTokens": 8192,
|
|
31
|
+
"temperature": 0.7,
|
|
32
|
+
"topP": 1
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"openai": {
|
|
36
|
+
"enabled": true,
|
|
37
|
+
"priority": 1,
|
|
38
|
+
"timeout": 900000,
|
|
39
|
+
"command": "codex",
|
|
40
|
+
"healthCheck": {
|
|
41
|
+
"enabled": true,
|
|
42
|
+
"interval": 300000,
|
|
43
|
+
"timeout": 5000
|
|
44
|
+
},
|
|
45
|
+
"defaults": {
|
|
46
|
+
"maxTokens": 4096,
|
|
47
|
+
"temperature": 0.7,
|
|
48
|
+
"topP": 1
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"execution": {
|
|
53
|
+
"defaultTimeout": 900000,
|
|
54
|
+
"retry": {
|
|
55
|
+
"maxAttempts": 3,
|
|
56
|
+
"initialDelay": 1000,
|
|
57
|
+
"maxDelay": 10000,
|
|
58
|
+
"backoffFactor": 2,
|
|
59
|
+
"retryableErrors": [
|
|
60
|
+
"ECONNREFUSED",
|
|
61
|
+
"ETIMEDOUT",
|
|
62
|
+
"ENOTFOUND",
|
|
63
|
+
"rate_limit",
|
|
64
|
+
"overloaded",
|
|
65
|
+
"timeout"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"provider": {
|
|
69
|
+
"maxWaitMs": 60000,
|
|
70
|
+
"fallbackDelay": 5000
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"orchestration": {
|
|
74
|
+
"session": {
|
|
75
|
+
"maxSessions": 100,
|
|
76
|
+
"maxMetadataSize": 10240,
|
|
77
|
+
"saveDebounce": 1000,
|
|
78
|
+
"cleanupAfterDays": 7,
|
|
79
|
+
"maxUuidAttempts": 100,
|
|
80
|
+
"persistPath": ".automatosx/sessions"
|
|
81
|
+
},
|
|
82
|
+
"delegation": {
|
|
83
|
+
"maxDepth": 2,
|
|
84
|
+
"timeout": 900000,
|
|
85
|
+
"enableCycleDetection": true
|
|
86
|
+
},
|
|
87
|
+
"workspace": {
|
|
88
|
+
"maxFileSize": 10485760,
|
|
89
|
+
"maxFiles": 100,
|
|
90
|
+
"cleanupAfterDays": 7,
|
|
91
|
+
"autoCleanup": true,
|
|
92
|
+
"permissions": 448,
|
|
93
|
+
"basePath": ".automatosx/workspaces"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"memory": {
|
|
97
|
+
"maxEntries": 10000,
|
|
98
|
+
"persistPath": ".automatosx/memory",
|
|
99
|
+
"autoCleanup": true,
|
|
100
|
+
"cleanupDays": 30,
|
|
101
|
+
"search": {
|
|
102
|
+
"defaultLimit": 10,
|
|
103
|
+
"maxLimit": 100,
|
|
104
|
+
"timeout": 5000
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"abilities": {
|
|
108
|
+
"basePath": ".automatosx/abilities",
|
|
109
|
+
"fallbackPath": "examples/abilities",
|
|
110
|
+
"cache": {
|
|
111
|
+
"enabled": true,
|
|
112
|
+
"maxEntries": 50,
|
|
113
|
+
"ttl": 600000,
|
|
114
|
+
"maxSize": 5242880,
|
|
115
|
+
"cleanupInterval": 120000
|
|
116
|
+
},
|
|
117
|
+
"limits": {
|
|
118
|
+
"maxFileSize": 524288
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"workspace": {
|
|
122
|
+
"basePath": ".automatosx/workspaces",
|
|
123
|
+
"autoCleanup": true,
|
|
124
|
+
"cleanupDays": 7,
|
|
125
|
+
"maxFiles": 100
|
|
126
|
+
},
|
|
127
|
+
"logging": {
|
|
128
|
+
"level": "info",
|
|
129
|
+
"path": ".automatosx/logs",
|
|
130
|
+
"console": true,
|
|
131
|
+
"retention": {
|
|
132
|
+
"maxSizeBytes": 104857600,
|
|
133
|
+
"maxAgeDays": 30,
|
|
134
|
+
"compress": true
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"performance": {
|
|
138
|
+
"profileCache": {
|
|
139
|
+
"enabled": true,
|
|
140
|
+
"maxEntries": 20,
|
|
141
|
+
"ttl": 600000,
|
|
142
|
+
"cleanupInterval": 120000
|
|
143
|
+
},
|
|
144
|
+
"teamCache": {
|
|
145
|
+
"enabled": true,
|
|
146
|
+
"maxEntries": 10,
|
|
147
|
+
"ttl": 600000,
|
|
148
|
+
"cleanupInterval": 120000
|
|
149
|
+
},
|
|
150
|
+
"providerCache": {
|
|
151
|
+
"enabled": true,
|
|
152
|
+
"maxEntries": 100,
|
|
153
|
+
"ttl": 600000,
|
|
154
|
+
"cleanupInterval": 120000
|
|
155
|
+
},
|
|
156
|
+
"rateLimit": {
|
|
157
|
+
"enabled": false,
|
|
158
|
+
"requestsPerMinute": 60,
|
|
159
|
+
"burstSize": 10
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"advanced": {
|
|
163
|
+
"embedding": {
|
|
164
|
+
"timeout": 30000,
|
|
165
|
+
"retryDelay": 1000,
|
|
166
|
+
"dimensions": 1536,
|
|
167
|
+
"maxRetries": 3
|
|
168
|
+
},
|
|
169
|
+
"security": {
|
|
170
|
+
"enablePathValidation": true,
|
|
171
|
+
"allowedExtensions": [
|
|
172
|
+
".ts",
|
|
173
|
+
".js",
|
|
174
|
+
".tsx",
|
|
175
|
+
".jsx",
|
|
176
|
+
".py",
|
|
177
|
+
".go",
|
|
178
|
+
".rs",
|
|
179
|
+
".java",
|
|
180
|
+
".yaml",
|
|
181
|
+
".yml",
|
|
182
|
+
".json",
|
|
183
|
+
".toml",
|
|
184
|
+
".md",
|
|
185
|
+
".txt",
|
|
186
|
+
".csv"
|
|
187
|
+
]
|
|
188
|
+
},
|
|
189
|
+
"development": {
|
|
190
|
+
"mockProviders": false,
|
|
191
|
+
"profileMode": false
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"integration": {
|
|
195
|
+
"vscode": {
|
|
196
|
+
"enabled": false,
|
|
197
|
+
"apiPort": 3000,
|
|
198
|
+
"autoStart": true,
|
|
199
|
+
"outputPanel": true,
|
|
200
|
+
"notifications": true
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
"cli": {
|
|
204
|
+
"run": {
|
|
205
|
+
"defaultMemory": true,
|
|
206
|
+
"defaultSaveMemory": true,
|
|
207
|
+
"defaultFormat": "text",
|
|
208
|
+
"defaultVerbose": false
|
|
209
|
+
},
|
|
210
|
+
"session": {
|
|
211
|
+
"defaultShowAgents": true
|
|
212
|
+
},
|
|
213
|
+
"memory": {
|
|
214
|
+
"defaultLimit": 10
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"$schema": "https://automatosx.dev/schema/config.json",
|
|
218
|
+
"version": "5.0.0"
|
|
219
|
+
}
|
package/dist/index.d.ts
ADDED