archondev 2.18.3 → 2.18.4
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 +5 -0
- package/dist/index.js +0 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,6 +101,7 @@ Copy governance files into any project. Works with your existing AI tools: **Cur
|
|
|
101
101
|
| `archon cleanup auto [enable\|disable]` | Enable/disable auto cleanup on start |
|
|
102
102
|
|
|
103
103
|
**Tip:** Use `archon plan --edit` to adjust title and acceptance criteria before planning.
|
|
104
|
+
**Web Checks:** If Archon detects a web project, it prompts to run A11y/SEO/GEO checks and stores your preference in `.archon/config.yaml`.
|
|
104
105
|
|
|
105
106
|
## Pricing
|
|
106
107
|
|
|
@@ -183,12 +184,16 @@ archon github status # Verify connection
|
|
|
183
184
|
archon plan "add user settings page"
|
|
184
185
|
archon execute ATOM-001 --cloud
|
|
185
186
|
|
|
187
|
+
# 3b. Queue multiple atoms in parallel (Credits tier)
|
|
188
|
+
archon parallel cloud ATOM-001 ATOM-002
|
|
189
|
+
|
|
186
190
|
# 4. Check progress
|
|
187
191
|
archon cloud status # List all cloud executions
|
|
188
192
|
archon cloud logs <id> # View execution logs
|
|
189
193
|
```
|
|
190
194
|
|
|
191
195
|
The cloud worker clones your repo, runs the Executor agent, creates a feature branch, and opens a PR. You can close your terminal after queuing.
|
|
196
|
+
Cloud execution is Credits-only. BYOK and Free tiers run locally.
|
|
192
197
|
|
|
193
198
|
## Working with Existing Projects
|
|
194
199
|
|
package/dist/index.js
CHANGED
|
@@ -16,7 +16,6 @@ import {
|
|
|
16
16
|
} from "./chunk-BFPWDOMA.js";
|
|
17
17
|
import "./chunk-HGLPIM7J.js";
|
|
18
18
|
import {
|
|
19
|
-
listModels,
|
|
20
19
|
resetPreferences,
|
|
21
20
|
setExecutionPreference,
|
|
22
21
|
setPreference,
|
|
@@ -7103,9 +7102,6 @@ preferencesCommand.command("execution-set <key> <value>").description("Set execu
|
|
|
7103
7102
|
preferencesCommand.action(async () => {
|
|
7104
7103
|
await showPreferences();
|
|
7105
7104
|
});
|
|
7106
|
-
program.command("models").description("List available AI models").action(async () => {
|
|
7107
|
-
await listModels();
|
|
7108
|
-
});
|
|
7109
7105
|
program.command("watch").description("Live TUI dashboard showing atoms, credits, and activity").action(async () => {
|
|
7110
7106
|
await watch();
|
|
7111
7107
|
});
|