@yemi33/minions 0.1.716 → 0.1.718
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 +9 -1
- package/package.json +1 -1
- package/playbooks/shared-rules.md +13 -1
- package/prompts/cc-system.md +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.718 (2026-04-09)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
- CC "pin a note" means move existing doc to KB, not create new
|
|
7
|
+
|
|
8
|
+
## 0.1.717 (2026-04-09)
|
|
4
9
|
|
|
5
10
|
### Features
|
|
6
11
|
- add 11 missing CC action types for comprehensive API coverage
|
|
7
12
|
- agents must check minions state before starting fresh research
|
|
8
13
|
|
|
14
|
+
### Fixes
|
|
15
|
+
- add skill block format example to shared playbook
|
|
16
|
+
|
|
9
17
|
## 0.1.714 (2026-04-09)
|
|
10
18
|
|
|
11
19
|
### Other
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.718",
|
|
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"
|
|
@@ -12,5 +12,17 @@
|
|
|
12
12
|
- Work item descriptions and `resultSummary` for prior completed work on the same topic
|
|
13
13
|
- `pinned.md` — critical context flagged by the human teammate
|
|
14
14
|
This avoids duplicating research another agent already completed.
|
|
15
|
-
- If you discover a repeatable workflow, output it as a
|
|
15
|
+
- If you discover a repeatable workflow, output it as a fenced skill block. The engine auto-extracts it to `~/.claude/skills/<name>/SKILL.md`. Required format:
|
|
16
|
+
````
|
|
17
|
+
```skill
|
|
18
|
+
---
|
|
19
|
+
name: skill-name-here
|
|
20
|
+
description: One-line description of when to trigger this skill
|
|
21
|
+
scope: minions
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
Instructions for the skill go here.
|
|
25
|
+
```
|
|
26
|
+
````
|
|
27
|
+
The `name` and `description` fields are required. `scope` defaults to `minions` (global). Use `scope: project` + `project: ProjectName` for project-specific skills.
|
|
16
28
|
- Do TDD where it makes sense — write failing tests first, then implement, then verify tests pass. Especially for bug fixes (write a test that reproduces the bug) and new utility functions.
|
package/prompts/cc-system.md
CHANGED
|
@@ -27,7 +27,10 @@ Core action types:
|
|
|
27
27
|
- **dispatch**: title, workType, priority (low/medium/high), agents[] (optional), project, description
|
|
28
28
|
workTypes: `explore` (research, NO PR), `ask` (answer/report, NO PR), `implement` (new code, PR REQUIRED), `fix` (bug fix, PR REQUIRED), `review` (code review, NO PR), `test` (tests, PR if new), `verify` (merge/build/maintenance, NO PR)
|
|
29
29
|
- **note**: title, content — save to inbox
|
|
30
|
-
- **
|
|
30
|
+
- **knowledge**: title, content, category (architecture/conventions/project-notes/build-reports/reviews) — create new KB entry
|
|
31
|
+
- **pin**: title, content, level (critical/warning) — force-injected into ALL agent prompts
|
|
32
|
+
|
|
33
|
+
When user says "pin a note" or "pin this" — they mean take an existing inbox/notes document and **pin it in the KB** (move/copy it to the knowledge base under the right category). Find the document first (search inbox, notes, or KB), then write it to `knowledge/<category>/<slug>.md`. This is analogous to the dashboard's manual pin feature — it preserves the note permanently in the organized KB.
|
|
31
34
|
- **plan**: title, description, project, branchStrategy (parallel/shared-branch)
|
|
32
35
|
- **cancel**: agent, reason
|
|
33
36
|
- **retry**: ids[]
|