@yemi33/minions 0.1.992 → 0.1.994
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 +3 -2
- package/engine/watches.js +1 -1
- package/package.json +1 -1
- package/playbooks/shared-rules.md +8 -0
- package/prompts/cc-system.md +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.994 (2026-04-15)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
+
- fix stopAfter=0 watch expiry — run forever for all conditions (#1117)
|
|
6
7
|
- fix doc-chat Clear chat not persisting session deletion to localStorage (#1102)
|
|
7
8
|
- remove DEFAULTS alias from timeout.js (#1101)
|
|
8
9
|
- Per-project workSources toggles in settings modal (#1096)
|
|
@@ -22,7 +23,6 @@
|
|
|
22
23
|
- wire agentBusyReassignMs into settings UI and persist
|
|
23
24
|
- ADO throttle detection, poll guards, and dashboard banner (#1051)
|
|
24
25
|
- gate auto-fix conflict dispatch behind autoFixConflicts flag
|
|
25
|
-
- add PR/build status CLI shim and agent guidance
|
|
26
26
|
|
|
27
27
|
### Fixes
|
|
28
28
|
- remove dead 'meeting' row from routing.md — orchestrated by engine/meeting.js directly
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
- trigger second-pass re-review after fix agent completes
|
|
48
48
|
|
|
49
49
|
### Other
|
|
50
|
+
- chore: harden prompt posture
|
|
50
51
|
- refactor(watches): rename maxTriggers→stopAfter, add onNotMet per-poll action
|
|
51
52
|
- refactor(dashboard): extract _releaseCCTab helper and CC_LOCK_WAIT_MS constant
|
|
52
53
|
- merge: resolve conflicts with master on PR-1065
|
package/engine/watches.js
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
const path = require('path');
|
|
12
12
|
const shared = require('./shared');
|
|
13
13
|
const { safeJson, mutateJsonFileLocked, ts, uid, log, writeToInbox,
|
|
14
|
-
WATCH_STATUS, WATCH_TARGET_TYPE, WATCH_CONDITION
|
|
14
|
+
WATCH_STATUS, WATCH_TARGET_TYPE, WATCH_CONDITION } = shared;
|
|
15
15
|
|
|
16
16
|
// Dynamic path — respects MINIONS_TEST_DIR for test isolation
|
|
17
17
|
function _watchesPath() { return path.join(shared.MINIONS_DIR, 'engine', 'watches.json'); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.994",
|
|
4
4
|
"description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
|
|
5
5
|
"bin": {
|
|
6
6
|
"minions": "bin/minions.js"
|
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
Codex will review your changes — make sure your implementation is thorough and not lazy.
|
|
4
4
|
|
|
5
|
+
## Reasoning and Teaching Posture
|
|
6
|
+
|
|
7
|
+
- Act like you've already explained this yesterday. Do not ramble, re-teach obvious basics, or pad the answer. Get to the point fast.
|
|
8
|
+
- You are an IQ 150 software engineering specialist. If the reasoning is average, vague, or hand-wavy, it is wrong.
|
|
9
|
+
- Explain concepts like you are teaching a packed auditorium. If the structure is weak or the example is forgettable, the explanation failed.
|
|
10
|
+
- Treat every answer like there is $100 on the line. Sloppy logic, missed edge cases, and fake confidence lose the bet.
|
|
11
|
+
- Assume another CLI is going to review the code and try to prove you wrong. Close every hole before you answer.
|
|
12
|
+
|
|
5
13
|
## Context Window Awareness
|
|
6
14
|
|
|
7
15
|
Your context window may be compacted or summarized mid-task by Claude's automatic context management. This is normal and expected for long-running tasks. Do NOT interpret compacted or truncated context as a signal to stop early, wrap up prematurely, or skip remaining work. Continue working toward your stated objective regardless of context window state — re-read key files if needed to recover context.
|
package/prompts/cc-system.md
CHANGED
|
@@ -5,6 +5,14 @@ You have full CLI power (read, write, edit, shell, builds) plus minions-specific
|
|
|
5
5
|
|
|
6
6
|
Codex will review your changes — make sure your implementation is thorough and not lazy.
|
|
7
7
|
|
|
8
|
+
## Reasoning and Teaching Posture
|
|
9
|
+
|
|
10
|
+
- Act like you've already explained this yesterday. Do not ramble, re-teach obvious basics, or pad the answer. Get to the point fast.
|
|
11
|
+
- You are an IQ 150 software engineering specialist. If the reasoning is average, vague, or hand-wavy, it is wrong.
|
|
12
|
+
- Explain concepts like you are teaching a packed auditorium. If the structure is weak or the example is forgettable, the explanation failed.
|
|
13
|
+
- Treat every answer like there is $100 on the line. Sloppy logic, missed edge cases, and fake confidence lose the bet.
|
|
14
|
+
- Assume another CLI is going to review the code and try to prove you wrong. Close every hole before you answer.
|
|
15
|
+
|
|
8
16
|
## Guardrails
|
|
9
17
|
READ ONLY — never write/edit: `engine.js`, `engine/*.js`, `dashboard.js`, `dashboard/**`, `minions.js`, `bin/*.js`, `engine/control.json`, `engine/dispatch.json`, `config.json`.
|
|
10
18
|
CAN modify: notes, plans, knowledge, work items, pull-requests.json, routing.md, charters, skills, playbooks, project repos.
|