@mightybot/chief 0.3.0-rc.55 → 0.3.0-rc.60

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 (2) hide show
  1. package/README.md +8 -6
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -10,15 +10,16 @@ distribution channel for the same attested build.
10
10
  ## Install
11
11
 
12
12
  ```sh
13
- npm install -g @mightybot/chief@latest
13
+ npm install -g @mightybot/chief@next
14
14
  chief version
15
+ chief setup
15
16
  ```
16
17
 
17
- `@latest` is the newest final release. Release candidates publish under
18
- `@next`:
18
+ This private-Hermes setup ships as a release candidate under `@next`.
19
+ `@latest` is a separate channel and may not include it. To install that channel:
19
20
 
20
21
  ```sh
21
- npm install -g @mightybot/chief@next
22
+ npm install -g @mightybot/chief@latest
22
23
  ```
23
24
 
24
25
  Run without installing:
@@ -37,8 +38,9 @@ cache. `npm prefix -g` shows where it lives; the binary is at
37
38
 
38
39
  Full setup, Slack, Cloud vs Hermes, and model choice are documented at
39
40
  <https://mightybot-ai.github.io/chief/INSTALL.md>. The first command after
40
- install is `chief maintenance`; that chat finishes the rest. Claude Code is
41
- the maintenance door, not the only Slack backend.
41
+ install is `chief setup`; it installs the private verified Hermes bundle and
42
+ opens the real xAI browser sign in. On the resulting Hermes estate, bare
43
+ `chief maintenance` uses that same managed executable.
42
44
 
43
45
  ## Platforms
44
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mightybot/chief",
3
- "version": "0.3.0-rc.55",
3
+ "version": "0.3.0-rc.60",
4
4
  "description": "Chief Runtime: one binary (CLI + resident daemon + MCP surface) for a running Chief estate",
5
5
  "bin": {
6
6
  "chief": "bin/chief.js"
@@ -16,9 +16,9 @@
16
16
  "license": "UNLICENSED",
17
17
  "private": false,
18
18
  "optionalDependencies": {
19
- "@mightybot/chief-darwin-arm64": "0.3.0-rc.55",
20
- "@mightybot/chief-darwin-x64": "0.3.0-rc.55",
21
- "@mightybot/chief-linux-x64": "0.3.0-rc.55",
22
- "@mightybot/chief-linux-arm64": "0.3.0-rc.55"
19
+ "@mightybot/chief-darwin-arm64": "0.3.0-rc.60",
20
+ "@mightybot/chief-darwin-x64": "0.3.0-rc.60",
21
+ "@mightybot/chief-linux-x64": "0.3.0-rc.60",
22
+ "@mightybot/chief-linux-arm64": "0.3.0-rc.60"
23
23
  }
24
24
  }