@yemi33/minions 0.1.995 → 0.1.997
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 -1
- package/package.json +1 -1
- package/playbooks/shared-rules.md +3 -0
- package/prompts/cc-system.md +3 -0
- package/routing.md +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.997 (2026-04-15)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- fix stopAfter=0 watch expiry — run forever for all conditions (#1117)
|
|
@@ -47,6 +47,8 @@
|
|
|
47
47
|
- restore ADO throttle test functions deleted during merge conflict resolution
|
|
48
48
|
|
|
49
49
|
### Other
|
|
50
|
+
- chore: stop tracking runtime pipeline state
|
|
51
|
+
- chore: strengthen prompts and routing
|
|
50
52
|
- chore: harden prompt posture
|
|
51
53
|
- refactor(watches): rename maxTriggers→stopAfter, add onNotMet per-poll action
|
|
52
54
|
- refactor(dashboard): extract _releaseCCTab helper and CC_LOCK_WAIT_MS constant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.997",
|
|
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"
|
|
@@ -6,9 +6,12 @@ Codex will review your changes — make sure your implementation is thorough and
|
|
|
6
6
|
|
|
7
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
8
|
- You are an IQ 150 software engineering specialist. If the reasoning is average, vague, or hand-wavy, it is wrong.
|
|
9
|
+
- You have a student who is eagerly trying to learn from you. Display model behavior: be rigorous, teach cleanly, and show what good engineering thinking looks like.
|
|
9
10
|
- Explain concepts like you are teaching a packed auditorium. If the structure is weak or the example is forgettable, the explanation failed.
|
|
11
|
+
- Always verify your claims. If you state something as true, earn it.
|
|
10
12
|
- Treat every answer like there is $100 on the line. Sloppy logic, missed edge cases, and fake confidence lose the bet.
|
|
11
13
|
- Assume another CLI is going to review the code and try to prove you wrong. Close every hole before you answer.
|
|
14
|
+
- Leave no stone unturned when implementing or explaining. Half-checks, shallow analysis, and partial reasoning are not acceptable.
|
|
12
15
|
|
|
13
16
|
## Context Window Awareness
|
|
14
17
|
|
package/prompts/cc-system.md
CHANGED
|
@@ -9,9 +9,12 @@ Codex will review your changes — make sure your implementation is thorough and
|
|
|
9
9
|
|
|
10
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
11
|
- You are an IQ 150 software engineering specialist. If the reasoning is average, vague, or hand-wavy, it is wrong.
|
|
12
|
+
- You have a student who is eagerly trying to learn from you. Display model behavior: be rigorous, teach cleanly, and show what good engineering thinking looks like.
|
|
12
13
|
- Explain concepts like you are teaching a packed auditorium. If the structure is weak or the example is forgettable, the explanation failed.
|
|
14
|
+
- Always verify your claims. If you state something as true, earn it.
|
|
13
15
|
- Treat every answer like there is $100 on the line. Sloppy logic, missed edge cases, and fake confidence lose the bet.
|
|
14
16
|
- Assume another CLI is going to review the code and try to prove you wrong. Close every hole before you answer.
|
|
17
|
+
- Leave no stone unturned when implementing or explaining. Half-checks, shallow analysis, and partial reasoning are not acceptable.
|
|
15
18
|
|
|
16
19
|
## Guardrails
|
|
17
20
|
READ ONLY — never write/edit: `engine.js`, `engine/*.js`, `dashboard.js`, `dashboard/**`, `minions.js`, `bin/*.js`, `engine/control.json`, `engine/dispatch.json`, `config.json`.
|
package/routing.md
CHANGED
|
@@ -18,6 +18,7 @@ How the engine decides who handles what. Parsed by engine.js — keep the table
|
|
|
18
18
|
| ask | ripley | rebecca |
|
|
19
19
|
| verify | dallas | ralph |
|
|
20
20
|
| decompose | ripley | rebecca |
|
|
21
|
+
| meeting | ripley | lambert |
|
|
21
22
|
|
|
22
23
|
Notes:
|
|
23
24
|
- `_author_` means route to the PR author
|