@yemi33/minions 0.1.2105 → 0.1.2107
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 +6 -6
- package/dashboard/js/qa.js +392 -198
- package/dashboard/js/render-dispatch.js +3 -2
- package/dashboard/js/render-prd.js +1 -1
- package/dashboard/js/settings.js +1 -1
- package/dashboard/pages/qa.html +37 -112
- package/dashboard.js +110 -1
- package/docs/auto-discovery.md +7 -7
- package/docs/human-vs-automated.md +2 -2
- package/docs/index.html +1 -1
- package/docs/managed-spawn.md +1 -1
- package/docs/onboarding.md +2 -2
- package/docs/pr-review-fix-loop.md +1 -1
- package/docs/self-improvement.md +1 -1
- package/docs/slim-ux/concepts.md +2 -2
- package/docs/watches.md +1 -1
- package/engine/cli.js +1 -1
- package/engine/qa-sessions.js +65 -0
- package/engine/shared.js +113 -6
- package/engine/watch-actions.js +301 -0
- package/engine/watches.js +3 -2
- package/engine.js +18 -13
- package/package.json +1 -1
- package/playbooks/plan-to-prd.md +25 -0
- package/prompts/cc-system.md +9 -0
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ node ~/.minions/minions.js init
|
|
|
57
57
|
| `minions remove <dir-or-name> [--keep-data \| --purge --force]` | Unlink a project: cancels pending work items, drains dispatch + kills active agents, cleans worktrees, disables linked schedules, archives `projects/<name>/` to `projects/.archived/<name>-YYYYMMDD/`. Use `--keep-data` to leave the data dir in place, or `--purge --force` to delete it. |
|
|
58
58
|
| `minions list` | List all linked projects with descriptions |
|
|
59
59
|
| `minions restart` | Start engine and dashboard together (recommended after reboot) |
|
|
60
|
-
| `minions start` | Start engine daemon (ticks every
|
|
60
|
+
| `minions start` | Start engine daemon (ticks every 10s, auto-syncs MCP servers) |
|
|
61
61
|
| `minions stop` | Stop the engine |
|
|
62
62
|
| `minions status` | Show agents, projects, dispatch queue, quality metrics |
|
|
63
63
|
| `minions pause` / `resume` | Pause/resume dispatching |
|
|
@@ -112,7 +112,7 @@ minions init
|
|
|
112
112
|
# → scans ~ for git repos (auto-detects host, org, branch)
|
|
113
113
|
# → shows numbered list, pick with "1,3,5-7" or "all"
|
|
114
114
|
|
|
115
|
-
# 2. Start the engine (runs in foreground, ticks every
|
|
115
|
+
# 2. Start the engine (runs in foreground, ticks every 10s)
|
|
116
116
|
minions start
|
|
117
117
|
|
|
118
118
|
# 3. Open the dashboard (separate terminal)
|
|
@@ -151,7 +151,7 @@ Run `minions status` and tell me what my minions is doing
|
|
|
151
151
|
|
|
152
152
|
### What happens on first run
|
|
153
153
|
|
|
154
|
-
1. The engine starts ticking every
|
|
154
|
+
1. The engine starts ticking every 10 seconds
|
|
155
155
|
2. It scans each linked project for work: PRs needing review, plan items, queued work items
|
|
156
156
|
3. If it finds work and an agent is idle, it spawns a Claude Code session with the right playbook
|
|
157
157
|
4. You can watch progress on the dashboard or via `minions status`
|
|
@@ -167,7 +167,7 @@ minions work "Explore the codebase and document the architecture"
|
|
|
167
167
|
┌──────────────────────────────────────┐
|
|
168
168
|
│ ~/.minions/ (central) │
|
|
169
169
|
│ │
|
|
170
|
-
│ engine.js ← tick
|
|
170
|
+
│ engine.js ← tick 10s │
|
|
171
171
|
│ dashboard.js ← :7331 │
|
|
172
172
|
│ config.json ← projects, │
|
|
173
173
|
│ agents, │
|
|
@@ -535,7 +535,7 @@ Engine behavior is controlled via `config.json`. Key settings:
|
|
|
535
535
|
```json
|
|
536
536
|
{
|
|
537
537
|
"engine": {
|
|
538
|
-
"tickInterval":
|
|
538
|
+
"tickInterval": 10000,
|
|
539
539
|
"maxConcurrent": 5,
|
|
540
540
|
"agentTimeout": 18000000,
|
|
541
541
|
"heartbeatTimeout": 300000,
|
|
@@ -549,7 +549,7 @@ Engine behavior is controlled via `config.json`. Key settings:
|
|
|
549
549
|
|
|
550
550
|
| Setting | Default | Description |
|
|
551
551
|
|---------|---------|-------------|
|
|
552
|
-
| `tickInterval` |
|
|
552
|
+
| `tickInterval` | 10000 (10s) | Milliseconds between engine ticks |
|
|
553
553
|
| `maxConcurrent` | 5 | Max agents running simultaneously |
|
|
554
554
|
| `agentTimeout` | 18000000 (5h) | Max total agent runtime |
|
|
555
555
|
| `heartbeatTimeout` | 300000 (5min) | Stale-orphan grace after process tracking is lost |
|