@ours.network/fleet 0.5.1 → 0.5.2

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/README.md CHANGED
@@ -26,8 +26,9 @@ reality match the file.
26
26
 
27
27
  **Harness-agnostic by design.** The core never assumes a specific agent CLI; each
28
28
  harness is a small adapter (how to launch, how to resume, how to wire config).
29
- Today: **Claude Code**. The adapter interface is public — Codex CLI, Gemini CLI,
30
- OpenCode and friends are a PR each. A single fleet can mix harnesses per role:
29
+ **Claude Code** is wired in, and the adapter interface is public — each
30
+ additional harness (Codex CLI, Gemini CLI, OpenCode, …) is a small adapter. A
31
+ single fleet can mix harnesses per role:
31
32
 
32
33
  ```yaml
33
34
  roles:
@@ -234,13 +235,29 @@ Adding a harness = implementing `HarnessAdapter`
234
235
  (`src/harness/types.ts`) and registering it — see `src/harness/claude-code.ts`
235
236
  for the reference implementation.
236
237
 
238
+ ## Learn more
239
+
240
+ - **The AI fleet use case:** a walkthrough of the coordinator-plus-specialists
241
+ pattern, end to end →
242
+ **[ours.network/use-cases/ai-fleet](https://ours.network/use-cases/ai-fleet)**.
243
+ - **How it works — the protocol, in depth:** the shared agent-to-agent core and
244
+ wire format is documented in
245
+ **[ours-mufl-core](https://github.com/adapt-toolkit/ours-mufl-core)**.
246
+ - **The whole project:** [ours.network](https://ours.network) ·
247
+ [umbrella repo](https://github.com/adapt-toolkit/ours-network)
248
+
237
249
  ## Support ours.network
238
250
 
239
- ours-fleet is part of [ours.network](https://ours.network) — free, source-available
240
- software built by a small independent team, running the broker and relay services
241
- at their own cost. If this is useful to you, please consider chipping in:
251
+ ours.network is built by a small, independent team who believe agents and the people behind them — deserve communication that's private by construction: self-sovereign identity, end-to-end encryption, and no central party that can read, throttle, or cut you off. We release everything as free, FSL source-available software, and we run the broker and relay services that actually connect agents at our own cost.
252
+
253
+ We're at the alpha stage: we have a clear roadmap and, if this stage proves itself, proper funding will come later — but right now there is no funding and no monetization behind the project. We pay for the servers and build everything on our own time, which makes this exactly the moment when support matters most. Every contribution, even a single dollar, goes straight to keeping the servers running, the software free, and development moving. If ours.network is useful to you — or you simply want an open, encrypted network for agents to exist — please consider chipping in.
254
+
255
+ **Like it? Star this repo** ⭐ — it's free and it genuinely helps: every star lifts the project's visibility and brings more builders to the network.
256
+
242
257
  **→ https://github.com/adapt-toolkit/ours-donate**
243
258
 
259
+ Thank you for helping keep it free, open, and alive.
260
+
244
261
  ## Licence, status & warranty
245
262
 
246
263
  > **Alpha software.** ours-fleet is part of **ours.network**, which is early,
@@ -266,8 +283,12 @@ separate **commercial licence** from Adapt Framework Solutions Ltd — see
266
283
  [`COMMERCIAL-LICENCE.md`](COMMERCIAL-LICENCE.md) (contact:
267
284
  **license@adaptframework.solutions**).
268
285
 
269
- ours.network builds on Adapt Framework Solutions Ltd's own FSL-licensed core (the
270
- `@adapt-toolkit` packages); **Adapt itself is not part of this release** and is
271
- licensed separately.
286
+ **Built on Adapt.** ours.network runs on ADAPT, a framework we've spent eight years building. ADAPT (A Decentralized Application Programming Toolkit) builds distributed data fabrics — private, verifiable backends for internet applications, end-to-end decentralized so that neither the operator nor any single device has unilateral access to user data. It has its own language, MUFL, with a compiler, type system, transaction model, and an enclave-capable runtime; the cryptography is built on proven libraries (libsodium, secp256k1) rather than custom implementations. Architecture, language and SDK reference: [docs.adaptframework.solutions](https://docs.adaptframework.solutions).
287
+
288
+ **Not a black box.** Much of the stack is already open and inspectable. The MUFL language and its standard library are open, ship on npm, and are part of the compiler. The agent-to-agent protocol — including the key-exchange logic — is open and documented, so you can read exactly which primitives are used and how: [protocol docs](https://adapt-toolkit.github.io/ours-mufl-core/). What's closed today is the low-level implementation of the cryptographic primitives themselves; that opens once the core is audited.
289
+
290
+ **Security by design, on three layers.** Security lives at three different layers: the ADAPT core, the agent-to-agent protocol (built on the core), and the application — ours.network's MCP server (built on the protocol). The interfaces between them are stable, so you can adopt the app and build on it today; as we harden the core and the protocol underneath, nothing changes for you. You inherit security by design instead of re-implementing it per app.
291
+
292
+ **Audit status.** The core has not yet had an independent security audit. We're raising funding to commission one from a recognized firm and prove these guarantees, and we'll open-source the full core once it passes. Until then it's source-available and documented, but not independently audited — run anything critical on it at your own risk.
272
293
 
273
294
  Copyright 2026 Adapt Framework Solutions Ltd.
package/dist/cli.js CHANGED
@@ -4,7 +4,7 @@ import { mkdirSync } from 'node:fs';
4
4
  import { realpathSync } from 'node:fs';
5
5
  import { Command } from 'commander';
6
6
  import { VERSION } from './version.js';
7
- import { agentsRoot, tmpRoot, logsRoot } from './paths.js';
7
+ import { agentsRoot, tmpRoot, logsRoot, deriveXdgRuntimeDir } from './paths.js';
8
8
  import { loadConfig } from './config.js';
9
9
  import { Tmux } from './tmux.js';
10
10
  import { pickBackend } from './supervisor/index.js';
@@ -13,6 +13,9 @@ import { runOnce, runTemp } from './runner.js';
13
13
  import { spawnPermanent, spawnTemp } from './spawn.js';
14
14
  import { doctor } from './doctor.js';
15
15
  import './harness/claude-code.js'; // registers the claude-code adapter
16
+ // sudo/su shells lack XDG_RUNTIME_DIR, breaking every systemctl/journalctl
17
+ // --user child (supervisor commands, logs, doctor). Derive it before dispatch. (#9)
18
+ deriveXdgRuntimeDir();
16
19
  const binPath = (() => { try {
17
20
  return realpathSync(process.argv[1]);
18
21
  }
package/dist/doctor.js CHANGED
@@ -3,7 +3,7 @@ import { readFileSync } from 'node:fs';
3
3
  import { realExec } from './exec.js';
4
4
  import { loadConfig } from './config.js';
5
5
  import { getAdapter } from './harness/registry.js';
6
- import { agentDir, home } from './paths.js';
6
+ import { agentDir, home, deriveXdgRuntimeDir } from './paths.js';
7
7
  import { resolveIsolation } from './isolation/policy.js';
8
8
  import { makeBubblewrapBackend } from './isolation/bubblewrap.js';
9
9
  /** Which cgroup-v2 controllers are delegated to this user manager (advisory). */
@@ -53,6 +53,16 @@ export async function doctor(opts = {}, exec = realExec, platform = process.plat
53
53
  detail: ok ? 'enabled (roles survive logout/reboot)'
54
54
  : `not enabled — run: ours-fleet init (or: sudo loginctl enable-linger ${user})`,
55
55
  });
56
+ // systemctl --user needs $XDG_RUNTIME_DIR/bus. The cli entry point derives
57
+ // it from /run/user/<uid> when possible (#9), so a failure here means the
58
+ // user manager itself is unreachable — sudo/su shell with linger off.
59
+ const xdg = deriveXdgRuntimeDir();
60
+ checks.push({
61
+ name: 'user bus', ok: !!xdg,
62
+ detail: xdg
63
+ ? `XDG_RUNTIME_DIR=${xdg}`
64
+ : `no XDG_RUNTIME_DIR and /run/user/<uid> missing — systemctl --user cannot reach the user manager; enable linger: sudo loginctl enable-linger ${user}`,
65
+ });
56
66
  }
57
67
  // Isolation reporting (AC-9). Backend availability is advisory — isolation is
58
68
  // opt-in per role (OQ-1), so a missing bwrap must not fail doctor for fleets that
package/dist/paths.d.ts CHANGED
@@ -1,5 +1,15 @@
1
1
  /** Home root for config + state. OURS_FLEET_HOME overrides (tests, exotic setups). */
2
2
  export declare const home: () => string;
3
+ /**
4
+ * systemctl/journalctl --user locate the user bus via $XDG_RUNTIME_DIR/bus.
5
+ * sudo/su shells run inside the CALLING user's logind session, so the target
6
+ * user's shell gets no XDG_RUNTIME_DIR even when linger keeps the user manager
7
+ * (and the bus socket) alive at /run/user/<uid>. Derive the standard path once
8
+ * at CLI startup: never override an existing value, and only fire when the dir
9
+ * actually exists — when it doesn't, the real problem is missing linger and the
10
+ * systemctl error (plus its hint) is the right signal. (#9)
11
+ */
12
+ export declare function deriveXdgRuntimeDir(env?: NodeJS.ProcessEnv, uid?: number | undefined, exists?: (p: string) => boolean): string | undefined;
3
13
  export declare const stateRoot: () => string;
4
14
  export declare const agentsRoot: () => string;
5
15
  export declare const tmpRoot: () => string;
package/dist/paths.js CHANGED
@@ -1,7 +1,25 @@
1
+ import { existsSync } from 'node:fs';
1
2
  import { homedir } from 'node:os';
2
3
  import { join } from 'node:path';
3
4
  /** Home root for config + state. OURS_FLEET_HOME overrides (tests, exotic setups). */
4
5
  export const home = () => process.env.OURS_FLEET_HOME ?? homedir();
6
+ /**
7
+ * systemctl/journalctl --user locate the user bus via $XDG_RUNTIME_DIR/bus.
8
+ * sudo/su shells run inside the CALLING user's logind session, so the target
9
+ * user's shell gets no XDG_RUNTIME_DIR even when linger keeps the user manager
10
+ * (and the bus socket) alive at /run/user/<uid>. Derive the standard path once
11
+ * at CLI startup: never override an existing value, and only fire when the dir
12
+ * actually exists — when it doesn't, the real problem is missing linger and the
13
+ * systemctl error (plus its hint) is the right signal. (#9)
14
+ */
15
+ export function deriveXdgRuntimeDir(env = process.env, uid = process.getuid?.(), exists = existsSync) {
16
+ if (!env.XDG_RUNTIME_DIR && uid !== undefined) {
17
+ const runDir = `/run/user/${uid}`;
18
+ if (exists(runDir))
19
+ env.XDG_RUNTIME_DIR = runDir;
20
+ }
21
+ return env.XDG_RUNTIME_DIR;
22
+ }
5
23
  export const stateRoot = () => join(home(), '.ours-fleet');
6
24
  export const agentsRoot = () => join(stateRoot(), 'agents');
7
25
  export const tmpRoot = () => join(stateRoot(), 'tmp');
@@ -1,5 +1,12 @@
1
1
  import { type Exec } from '../exec.js';
2
2
  import type { SupervisorBackend } from './types.js';
3
3
  export declare const UNIT_TEMPLATE = "ours-fleet-agent@.service";
4
+ /**
5
+ * Actionable hint when systemctl cannot reach the user bus. After the cli.ts
6
+ * XDG_RUNTIME_DIR fallback this branch stays reachable only when
7
+ * /run/user/<uid> itself is missing — i.e. linger is off and no session is
8
+ * active — so pointing at linger is the correct first hint. (#9)
9
+ */
10
+ export declare const busHint: (stderr: string) => string;
4
11
  export declare const unitFor: (name: string) => string;
5
12
  export declare function makeSystemdBackend(exec?: Exec): SupervisorBackend;
@@ -4,6 +4,16 @@ import { userInfo } from 'node:os';
4
4
  import { home } from '../paths.js';
5
5
  import { realExec } from '../exec.js';
6
6
  export const UNIT_TEMPLATE = 'ours-fleet-agent@.service';
7
+ /**
8
+ * Actionable hint when systemctl cannot reach the user bus. After the cli.ts
9
+ * XDG_RUNTIME_DIR fallback this branch stays reachable only when
10
+ * /run/user/<uid> itself is missing — i.e. linger is off and no session is
11
+ * active — so pointing at linger is the correct first hint. (#9)
12
+ */
13
+ export const busHint = (stderr) => /user scope bus|XDG_RUNTIME_DIR/.test(stderr)
14
+ ? `\nhint: no user runtime dir — enable linger: sudo loginctl enable-linger ${userInfo().username}` +
15
+ `\n (if linger is already on: export XDG_RUNTIME_DIR=/run/user/$(id -u))`
16
+ : '';
7
17
  export const unitFor = (name) => `ours-fleet-agent@${name}.service`;
8
18
  export function makeSystemdBackend(exec = realExec) {
9
19
  const ctl = (...args) => exec('systemctl', ['--user', ...args]);
@@ -38,18 +48,18 @@ WantedBy=default.target
38
48
  async install(name) {
39
49
  const r = await ctl('enable', '--now', unitFor(name));
40
50
  if (r.code !== 0)
41
- throw new Error(`systemctl enable --now ${unitFor(name)} failed: ${r.stderr.trim()}`);
51
+ throw new Error(`systemctl enable --now ${unitFor(name)} failed: ${r.stderr.trim()}${busHint(r.stderr)}`);
42
52
  },
43
53
  async start(name) { await ctl('start', unitFor(name)); },
44
54
  async stop(name) {
45
55
  const r = await ctl('stop', unitFor(name));
46
56
  if (r.code !== 0)
47
- throw new Error(`systemctl stop ${unitFor(name)} failed: ${r.stderr.trim()}`);
57
+ throw new Error(`systemctl stop ${unitFor(name)} failed: ${r.stderr.trim()}${busHint(r.stderr)}`);
48
58
  },
49
59
  async restart(name) {
50
60
  const r = await ctl('restart', unitFor(name));
51
61
  if (r.code !== 0)
52
- throw new Error(`systemctl restart ${unitFor(name)} failed: ${r.stderr.trim()}`);
62
+ throw new Error(`systemctl restart ${unitFor(name)} failed: ${r.stderr.trim()}${busHint(r.stderr)}`);
53
63
  },
54
64
  async status(name) {
55
65
  const r = await ctl('status', unitFor(name), '--no-pager');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ours.network/fleet",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "Harness-agnostic fleet of persistent, identity-bound AI agents. Declarative fleet.yaml, tmux consoles, systemd/launchd supervision, ours.network messaging.",
5
5
  "type": "module",
6
6
  "license": "FSL-1.1-Apache-2.0",