@yemi33/minions 0.1.1895 → 0.1.1896

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.
Files changed (3) hide show
  1. package/README.md +4 -4
  2. package/engine.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -216,8 +216,8 @@ minions work "Explore the codebase and document the architecture"
216
216
 
217
217
  ## What It Does
218
218
 
219
- - **Auto-discovers work** from plans (`plans/*.json`), pull requests, and work queues across all linked projects
220
- - **Plan pipeline** — `/plan` spawns a plan agent, chains to plan-to-prd, produces `plans/{project}-{date}.json` with `status: "awaiting-approval"`. Supports shared-branch and parallel strategies.
219
+ - **Auto-discovers work** from plans (`plans/*.md`), pull requests, and work queues across all linked projects (Plans are markdown in `plans/`; PRDs are JSON in `prd/`.)
220
+ - **Plan pipeline** — `/plan` spawns a plan agent, chains to plan-to-prd, produces `plans/{project}-{date}.md` with `status: "awaiting-approval"`. Supports shared-branch and parallel strategies.
221
221
  - **Human approval gate** — plans require approval before materializing as work items. Dashboard provides Approve / Discuss & Revise / Reject. Discussion launches an interactive Command Center session via the configured runtime CLI (`config.engine.ccCli`).
222
222
  - **Dispatches AI agents** (Claude CLI) with full project context, git worktrees, and MCP server access
223
223
  - **Routes intelligently** — fixes first, then reviews, then implementation, matched to agent strengths
@@ -380,7 +380,7 @@ The engine discovers work from 4 sources, in priority order:
380
380
  | Priority | Source | Dispatch Type |
381
381
  |----------|--------|---------------|
382
382
  | 1 | Pull requests (changes-requested, human feedback, build failures, pending review) | `fix`, `review`, `test` |
383
- | 2 | Plan items (`plans/*.json`, approved) | `implement` |
383
+ | 2 | Plan items (`plans/*.md`, approved) | `implement` |
384
384
  | 3 | Per-project work items | item's `type` |
385
385
  | 4 | Central work items (project-agnostic tasks) | item's `type` |
386
386
 
@@ -699,7 +699,7 @@ To move to a new machine: `npm install -g @yemi33/minions && minions init --forc
699
699
  config.json <- projects[], agents, engine, claude settings (generated by minions init)
700
700
  config.template.json <- Template for new installs
701
701
  package.json <- npm package definition
702
- plans/ <- Approved plans: plans/{project}-{date}.json (generated)
702
+ plans/ <- Approved plans: plans/{project}-{date}.md (generated)
703
703
  prd/ <- PRD archives and verification guides (generated)
704
704
  pipelines/ <- Pipeline definitions (generated)
705
705
  meetings/ <- Meeting state files (generated)
package/engine.js CHANGED
@@ -4184,7 +4184,7 @@ async function discoverWork(config) {
4184
4184
  }
4185
4185
 
4186
4186
  // Source 2: Minions-level PRD → implements (multi-project, called once outside project loop)
4187
- // PRD items now flow through plans/*.json materializePlansAsWorkItems → discoverFromWorkItems
4187
+ // PRD items (prd/*.json), materialized from plans/*.md, flow through materializePlansAsWorkItems → discoverFromWorkItems
4188
4188
 
4189
4189
  // Central work items (project-agnostic — agent decides where to work)
4190
4190
  const centralWork = discoverCentralWorkItems(config);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1895",
3
+ "version": "0.1.1896",
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"