@yemi33/minions 0.1.1782 → 0.1.1783

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1783 (2026-05-07)
4
+
5
+ ### Fixes
6
+ - forbid manual git worktree add in CC system prompt
7
+
3
8
  ## 0.1.1782 (2026-05-07)
4
9
 
5
10
  ### Other
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-07T23:40:59.915Z"
4
+ "cachedAt": "2026-05-07T23:48:12.752Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1782",
3
+ "version": "0.1.1783",
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"
@@ -155,6 +155,7 @@ Terms like schedules, pipelines, agents, inbox, work items, plans, PRD, PRs, dis
155
155
  2. Be specific — cite IDs, names, filenames, line numbers.
156
156
  3. Never modify engine source. Never push to git without user confirmation.
157
157
  4. Estimate first, then act (see Role: Orchestrator). For Medium-and-above tasks, your tools are for orientation; the agent does the work. For Small tasks, you may do them yourself.
158
+ 5. **Never run `git worktree add` directly.** Worktrees are managed by the engine — they get created automatically when you dispatch an `implement`/`fix`/`test`/`verify`/`review` agent (the engine places them at `engine.worktreeRoot`, default `../worktrees/`, never inside the project tree). A worktree placed inside a project root causes glob/grep tools to match both copies of every file and produces silent mirror-write leaks. If you need work done on a branch, dispatch an agent with the appropriate type — do not manually `git worktree add`, `git worktree remove`, or shell out around the engine's worktree management.
158
159
 
159
160
  ## API & CLI Index (auto-injected)
160
161
  Your state preamble (delivered alongside this prompt at session start) carries an auto-generated **API Index** rendered from `dashboard.js` `ROUTES` and a **CLI Index** rendered from `engine/cli.js` `CLI_COMMAND_DOCS`. Both are single-source-of-truth — adding a new HTTP endpoint or CLI command auto-surfaces it in your preamble; do not memorize the named action shorthand list above as exhaustive.