archondev 2.1.0 → 2.1.2
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 +26 -0
- package/dist/index.js +1091 -614
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,6 +92,9 @@ Copy governance files into any project. Works with your existing AI tools: **Cur
|
|
|
92
92
|
| `archon index search "query" [--cloud]` | Semantic code search |
|
|
93
93
|
| `archon parallel status` | Show parallel execution status |
|
|
94
94
|
| `archon deploy` | One-click deploy (auto-detect platform) |
|
|
95
|
+
| `archon cleanup check` | Analyze workspace for bloat |
|
|
96
|
+
| `archon cleanup run` | Execute cleanup tasks |
|
|
97
|
+
| `archon cleanup auto [enable\|disable]` | Enable/disable auto cleanup on start |
|
|
95
98
|
|
|
96
99
|
## Pricing
|
|
97
100
|
|
|
@@ -121,6 +124,29 @@ This works similarly to how Claude Code allows subscription-based access. We're
|
|
|
121
124
|
3. **Changes Are Validated** — Quality gates check code before it's applied
|
|
122
125
|
4. **Learnings Persist** — Insights saved for future sessions
|
|
123
126
|
|
|
127
|
+
## Cloud Execution
|
|
128
|
+
|
|
129
|
+
Run AI agents in the cloud — close your laptop and get a PR when it's done.
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
# 1. Authenticate
|
|
133
|
+
archon login
|
|
134
|
+
|
|
135
|
+
# 2. Connect GitHub (one-time setup)
|
|
136
|
+
archon github connect # Opens browser for authorization
|
|
137
|
+
archon github status # Verify connection
|
|
138
|
+
|
|
139
|
+
# 3. Plan locally, execute in cloud
|
|
140
|
+
archon plan "add user settings page"
|
|
141
|
+
archon execute ATOM-001 --cloud
|
|
142
|
+
|
|
143
|
+
# 4. Check progress
|
|
144
|
+
archon cloud status # List all cloud executions
|
|
145
|
+
archon cloud logs <id> # View execution logs
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
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.
|
|
149
|
+
|
|
124
150
|
## Working with Existing Projects
|
|
125
151
|
|
|
126
152
|
Have a project created by another AI agent? ArchonDev can review it first, then govern future changes.
|