@yemi33/minions 0.1.719 → 0.1.721

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 CHANGED
@@ -1,8 +1,14 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.719 (2026-04-09)
3
+ ## 0.1.721 (2026-04-09)
4
4
 
5
5
  ### Fixes
6
+ - remove 200-char truncation from PRD item descriptions in plan viewer (closes #670) (#700)
7
+
8
+ ## 0.1.720 (2026-04-09)
9
+
10
+ ### Fixes
11
+ - CC "pin" always routes to KB, not pinned.md
6
12
  - CC "pin a note" means move existing doc to KB, not create new
7
13
 
8
14
  ## 0.1.717 (2026-04-09)
@@ -414,7 +414,7 @@ function _renderPlanModal(normalizedFile, raw, lastMod) {
414
414
  const items = (plan.missing_features || []).map((f, i) =>
415
415
  (i + 1) + '. [' + f.id + '] ' + f.name + ' (' + (f.estimated_complexity || '?') + ', ' + (f.priority || '?') + ')' +
416
416
  (f.depends_on?.length ? ' \u2192 depends on: ' + f.depends_on.join(', ') : '') +
417
- '\n ' + (f.description || '').slice(0, 200) +
417
+ '\n ' + (f.description || '') +
418
418
  (f.acceptance_criteria?.length ? '\n Criteria: ' + f.acceptance_criteria.join('; ') : '')
419
419
  ).join('\n\n');
420
420
  text = 'Project: ' + (plan.project || '?') +
package/dashboard.html CHANGED
@@ -4273,7 +4273,7 @@ async function planView(file) {
4273
4273
  const items = (plan.missing_features || []).map((f, i) =>
4274
4274
  (i + 1) + '. [' + f.id + '] ' + f.name + ' (' + (f.estimated_complexity || '?') + ', ' + (f.priority || '?') + ')' +
4275
4275
  (f.depends_on?.length ? ' → depends on: ' + f.depends_on.join(', ') : '') +
4276
- '\n ' + (f.description || '').slice(0, 200) +
4276
+ '\n ' + (f.description || '') +
4277
4277
  (f.acceptance_criteria?.length ? '\n Criteria: ' + f.acceptance_criteria.join('; ') : '')
4278
4278
  ).join('\n\n');
4279
4279
  text = 'Project: ' + (plan.project || '?') +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.719",
3
+ "version": "0.1.721",
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"
@@ -27,8 +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
- - **knowledge**: title, content, category (architecture/conventions/project-notes/build-reports/reviews) — create new KB entry. When user says "pin a note" or "pin this", find the existing document (search inbox, notes) and copy it to `knowledge/<category>/<slug>.md`.
31
- - **pin**: title, content, level (critical/warning) — force-injected into ALL agent prompts (use sparingly — only for urgent context every agent must see)
30
+ - **knowledge**: title, content, category (architecture/conventions/project-notes/build-reports/reviews) — create new KB entry or copy existing doc to KB
31
+ - **pin-to-pinned**: title, content, level (critical/warning) — write to pinned.md, force-injected into ALL agent prompts (rarely needed)
32
+
33
+ **IMPORTANT**: When user says "pin", "pin this", "pin a note", or "pin in KB" — they mean save/copy to the **knowledge base** (`knowledge/<category>/`), NOT to `pinned.md`. If a file path is given, read it and write to `knowledge/<category>/<slug>.md`. If no path, search inbox/notes first. Only write to `pinned.md` if user explicitly says "pinned.md" or "critical alert for all agents".
32
34
  - **plan**: title, description, project, branchStrategy (parallel/shared-branch)
33
35
  - **cancel**: agent, reason
34
36
  - **retry**: ids[]