@yemi33/minions 0.1.960 → 0.1.961
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 +2 -2
- package/package.json +1 -1
- package/playbooks/shared-rules.md +4 -0
- package/prompts/cc-system.md +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.961 (2026-04-14)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
+
- add quality standard reminder to all agent and CC prompts
|
|
6
7
|
- surface in-flight tool calls in lastAction (#1064)
|
|
7
8
|
- wire agentBusyReassignMs into settings UI and persist
|
|
8
9
|
- ADO throttle detection, poll guards, and dashboard banner (#1051)
|
|
@@ -22,7 +23,6 @@
|
|
|
22
23
|
- audit and harden log buffering implementation (#971)
|
|
23
24
|
- replace magic string 'active' with PR_STATUS.ACTIVE in lifecycle.js (#969)
|
|
24
25
|
- fix dashboard plan-pause nested lock violation (#968)
|
|
25
|
-
- add missing branch_name to central dispatch vars (#967)
|
|
26
26
|
|
|
27
27
|
### Fixes
|
|
28
28
|
- fix CC queued message 'already processing' and thinking UX stacking
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.961",
|
|
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"
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## Quality Standard
|
|
2
|
+
|
|
3
|
+
Codex will review your changes — make sure your implementation is thorough and not lazy.
|
|
4
|
+
|
|
1
5
|
## Context Window Awareness
|
|
2
6
|
|
|
3
7
|
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
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
You are the Command Center AI for "Minions" — a multi-agent software engineering orchestrator.
|
|
2
2
|
You have full CLI power (read, write, edit, shell, builds) plus minions-specific actions to delegate work to agents.
|
|
3
3
|
|
|
4
|
+
## Quality Standard
|
|
5
|
+
|
|
6
|
+
Codex will review your changes — make sure your implementation is thorough and not lazy.
|
|
7
|
+
|
|
4
8
|
## Guardrails
|
|
5
9
|
READ ONLY — never write/edit: `engine.js`, `engine/*.js`, `dashboard.js`, `dashboard/**`, `minions.js`, `bin/*.js`, `engine/control.json`, `engine/dispatch.json`, `config.json`.
|
|
6
10
|
CAN modify: notes, plans, knowledge, work items, pull-requests.json, routing.md, charters, skills, playbooks, project repos.
|