@yemi33/minions 0.1.2425 → 0.1.2426
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/docs/README.md +2 -2
- package/docs/index.html +9 -2
- package/docs/internal-install.md +32 -10
- package/docs/onboarding.md +26 -0
- package/docs/tutorials/01-install-and-connect.md +23 -0
- package/package.json +1 -1
package/docs/README.md
CHANGED
|
@@ -9,8 +9,8 @@ Hands-on stories and distribution guides for people running or evaluating Minion
|
|
|
9
9
|
- [blog-first-successful-dispatch.md](blog-first-successful-dispatch.md) — Narrative walkthrough of the first end-to-end agent dispatch and the seven failed spawn attempts that preceded it.
|
|
10
10
|
- [architecture-review-2026-07-09.md](architecture-review-2026-07-09.md) — Architecture review covering engine orchestration, SQL/JSON state boundaries, runtime/process recovery, worktree lifecycle, pipelines/schedules, and prompt assembly, verified against `origin/main` at `b1b83dd2`.
|
|
11
11
|
- [documentation-audit-2026-07-09.md](documentation-audit-2026-07-09.md) — Verified user-facing documentation audit covering runtime, CLI, storage, routing, and broken-link corrections.
|
|
12
|
-
- [
|
|
13
|
-
- [
|
|
12
|
+
- [internal-install.md](internal-install.md) — **Start here to install.** One-command internal install/upgrade of `@opg-microsoft/minions` from the ISS `ProjectFeed-ISS` Azure Artifacts feed using the caller's `az` login: the ordered migration plan, consistent state backup, temporary-token handling, active-agent deferral, and idempotency.
|
|
13
|
+
- [distribution.md](distribution.md) — How Minions is published: the internal `@opg-microsoft/minions` customer channel consumed from ISS `ProjectFeed-ISS`, the public/legacy `@yemi33/minions` npm channel, and the bidirectional sync contract — automated opg → yemi33 backport workflow + manual yemi33 → opg sync PRs.
|
|
14
14
|
- [onboarding.md](onboarding.md) — Condensed first-30-minutes walkthrough for a new operator.
|
|
15
15
|
- [tutorials/README.md](tutorials/README.md) — Progressive tutorial track from installation through advanced automation and operations.
|
|
16
16
|
|
package/docs/index.html
CHANGED
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
<h1>Minions <span>Mission Control</span></h1>
|
|
89
89
|
<p class="tagline">Five autonomous coding agents, one engine, one dashboard. Plan, implement, review, verify, and ship code with human control at every gate.</p>
|
|
90
90
|
<div class="hero-badges">
|
|
91
|
-
<span class="hero-badge green">Node.js
|
|
91
|
+
<span class="hero-badge green">Node.js 22.5+</span>
|
|
92
92
|
<span class="hero-badge blue">Claude or Copilot</span>
|
|
93
93
|
<span class="hero-badge yellow">Multi-Project</span>
|
|
94
94
|
<span class="hero-badge purple">Dashboard + CLI</span>
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
<div class="cta">
|
|
97
97
|
<a href="https://www.npmjs.com/package/@yemi33/minions" class="cta-primary">Install from npm</a>
|
|
98
98
|
<a href="#quickstart" class="cta-secondary">Quick Start</a>
|
|
99
|
+
<a href="https://github.com/opg-microsoft/minions/blob/HEAD/docs/internal-install.md" class="cta-secondary">OPG internal install</a>
|
|
99
100
|
<a href="demo/memory-system.html" class="cta-secondary">Explore the Memory System</a>
|
|
100
101
|
</div>
|
|
101
102
|
</div>
|
|
@@ -221,10 +222,16 @@
|
|
|
221
222
|
<!-- Quick Start -->
|
|
222
223
|
<div class="quickstart" id="quickstart">
|
|
223
224
|
<h2>Quick Start</h2>
|
|
224
|
-
<pre><span class="comment"># Prerequisites: Node.js
|
|
225
|
+
<pre><span class="comment"># Prerequisites: Node.js 22.5+, Git, and at least one agent runtime</span>
|
|
225
226
|
<span class="comment"># Install Claude Code or GitHub Copilot CLI separately, then install Minions</span>
|
|
226
227
|
npm install -g @yemi33/minions
|
|
227
228
|
|
|
229
|
+
<span class="comment"># OPG (Microsoft) only: the internal channel is @opg-microsoft/minions on the</span>
|
|
230
|
+
<span class="comment"># ISS ProjectFeed-ISS feed. Clone the repository, then run the one-command</span>
|
|
231
|
+
<span class="comment"># installer — it needs `az login` with read access to that feed.</span>
|
|
232
|
+
<span class="comment"># scripts\install-internal-minions.ps1 # Windows</span>
|
|
233
|
+
<span class="comment"># ./scripts/install-internal-minions.sh # Linux / macOS</span>
|
|
234
|
+
|
|
228
235
|
<span class="comment"># Bootstrap ~/.minions/ and scan/link repositories</span>
|
|
229
236
|
minions init
|
|
230
237
|
|
package/docs/internal-install.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
# Internal install & state migration (ISS ProjectFeed-ISS)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
(`@opg-microsoft/minions`) from
|
|
5
|
-
|
|
6
|
-
runtime in place — preserving config,
|
|
7
|
-
project links.
|
|
3
|
+
**This is the supported installation path for OPG customers.** One command
|
|
4
|
+
installs or upgrades the internal Minions package (`@opg-microsoft/minions`) from
|
|
5
|
+
the **ISS `ProjectFeed-ISS` Azure Artifacts npm registry** using your existing
|
|
6
|
+
Azure CLI login, then migrates the existing runtime in place — preserving config,
|
|
7
|
+
SQLite state, notes, plans, knowledge, and project links.
|
|
8
|
+
|
|
9
|
+
The registry is the feed's **base** npm registry:
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
https://pkgs.dev.azure.com/office/ISS/_packaging/ProjectFeed-ISS/npm/registry/
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Packages live in the feed's Local view, so do **not** point at a view-qualified
|
|
16
|
+
registry such as `ProjectFeed-ISS@Release`.
|
|
8
17
|
|
|
9
18
|
No manually created PAT is required, accepted, or stored.
|
|
10
19
|
|
|
@@ -164,11 +173,24 @@ reinstates `download-artifact` + `install-internal` so the shim is re-linked.
|
|
|
164
173
|
## Relationship to `minions update`
|
|
165
174
|
|
|
166
175
|
`minions update` is the in-place updater for whichever package is already
|
|
167
|
-
installed
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
176
|
+
installed: it resolves the active package name from the installed manifest and
|
|
177
|
+
reinstalls *that* package, so an internal install upgrades itself instead of
|
|
178
|
+
pulling in the public one.
|
|
179
|
+
|
|
180
|
+
It does **not** configure a registry. `minions update` shells out to plain
|
|
181
|
+
`npm view <pkg> version` / `npm install -g <pkg>@<version>`
|
|
182
|
+
(`engine/shared.js#buildNpmViewVersionCommand` / `#buildNpmGlobalInstallCommand`),
|
|
183
|
+
so on the internal channel it only reaches `ProjectFeed-ISS` when your **own**
|
|
184
|
+
npm configuration already has a persistent scoped registry entry and credentials
|
|
185
|
+
for the feed — for example `@opg-microsoft:registry=<base feed URL>` in your user
|
|
186
|
+
`.npmrc`. This script's npm config is deliberately temporary and is deleted after
|
|
187
|
+
every run, so it leaves nothing behind for `minions update` to reuse.
|
|
188
|
+
|
|
189
|
+
Re-running this script is therefore the upgrade path that always works: it
|
|
190
|
+
acquires its own short-lived token per run and is idempotent. It is also the
|
|
191
|
+
**channel bootstrap** — what moves a machine onto the internal ProjectFeed-ISS
|
|
192
|
+
channel (including replacing a public `@yemi33/minions` install) and what installs
|
|
193
|
+
the internal package on a machine that has no Minions at all.
|
|
172
194
|
|
|
173
195
|
## Troubleshooting
|
|
174
196
|
|
package/docs/onboarding.md
CHANGED
|
@@ -10,15 +10,41 @@ completed first dispatch. For deeper, progressive exercises, use the
|
|
|
10
10
|
- Git
|
|
11
11
|
- One supported runtime CLI with working authentication
|
|
12
12
|
- A local Git repository you are comfortable allowing an agent to change
|
|
13
|
+
- For the internal (OPG) install: Azure CLI signed in (`az login`) and Azure
|
|
14
|
+
Artifacts **read** permission on the ISS `ProjectFeed-ISS` feed
|
|
13
15
|
|
|
14
16
|
Minions defaults to GitHub Copilot CLI. Claude Code and Codex are also
|
|
15
17
|
supported.
|
|
16
18
|
|
|
17
19
|
## 1. Install and initialize
|
|
18
20
|
|
|
21
|
+
Install the internal package `@opg-microsoft/minions` from the ISS
|
|
22
|
+
`ProjectFeed-ISS` Azure Artifacts feed with the repository's one-command
|
|
23
|
+
installer. It installs the package and runs `minions init --force` for you:
|
|
24
|
+
|
|
25
|
+
```powershell
|
|
26
|
+
scripts\install-internal-minions.ps1 # Windows
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
./scripts/install-internal-minions.sh # Linux / macOS
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The installer acquires a short-lived token from your existing `az` login — no PAT
|
|
34
|
+
is created, accepted, or stored. Full options and troubleshooting:
|
|
35
|
+
[internal-install.md](internal-install.md).
|
|
36
|
+
|
|
37
|
+
If you do not have access to the ISS `ProjectFeed-ISS` feed, install the public
|
|
38
|
+
package from npm instead (separate release channel, not the OPG path):
|
|
39
|
+
|
|
19
40
|
```bash
|
|
20
41
|
npm install -g @yemi33/minions
|
|
21
42
|
minions init
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Either way, verify the host next:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
22
48
|
minions doctor
|
|
23
49
|
```
|
|
24
50
|
|
|
@@ -9,6 +9,8 @@ repository, and start the engine and dashboard.
|
|
|
9
9
|
- Git
|
|
10
10
|
- GitHub Copilot CLI, Claude Code, or Codex CLI with working authentication
|
|
11
11
|
- A local Git repository with an `origin` remote
|
|
12
|
+
- For the internal (OPG) install: Azure CLI signed in (`az login`) and Azure
|
|
13
|
+
Artifacts **read** permission on the ISS `ProjectFeed-ISS` feed
|
|
12
14
|
|
|
13
15
|
Minions defaults to GitHub Copilot CLI. Install it if you have not selected a
|
|
14
16
|
different runtime:
|
|
@@ -19,6 +21,27 @@ npm install -g @github/copilot
|
|
|
19
21
|
|
|
20
22
|
## 1. Install and initialize
|
|
21
23
|
|
|
24
|
+
Install the internal package `@opg-microsoft/minions` from the ISS
|
|
25
|
+
`ProjectFeed-ISS` Azure Artifacts feed using the repository's one-command
|
|
26
|
+
installer:
|
|
27
|
+
|
|
28
|
+
```powershell
|
|
29
|
+
scripts\install-internal-minions.ps1 # Windows
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
./scripts/install-internal-minions.sh # Linux / macOS
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
The installer validates feed access, installs the package, and then runs the
|
|
37
|
+
supported `minions init --force` synchronization — so no separate `minions init`
|
|
38
|
+
is needed. It authenticates with a short-lived token from your existing `az`
|
|
39
|
+
login; no PAT is created, accepted, or stored. See
|
|
40
|
+
[internal-install.md](internal-install.md) for options and troubleshooting.
|
|
41
|
+
|
|
42
|
+
If you do not have access to the ISS `ProjectFeed-ISS` feed, install the public
|
|
43
|
+
package from npm instead (a separate release channel, not the OPG path):
|
|
44
|
+
|
|
22
45
|
```bash
|
|
23
46
|
npm install -g @yemi33/minions
|
|
24
47
|
minions init
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2426",
|
|
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"
|