@dev.sail.money/sailor 1.1.0-66 → 1.2.0-69
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
|
@@ -61,7 +61,7 @@ The path from nothing to a running agent follows the protocol lifecycle:
|
|
|
61
61
|
1. **Deploy your SMA** — `sailor onboard --new-sma` creates the SMA on-chain. `sailor account predict` computes the deterministic address in advance. The same owner, permission signer, manager, and salt produce the same SMA address on every supported chain.
|
|
62
62
|
2. **Author your permissions** — describe what the agent may do. Permission contracts encode the bounds: tokens, amounts, venues, call targets. Author them in the scaffolded Foundry workspace.
|
|
63
63
|
3. **Simulate, deploy, and sign your mandate** — `sailor mandate simulate` probes a permission off-chain before authorizing it. `sailor mandate deploy --attach` deploys and registers it on-chain. `sailor mandate sign` builds and signs the registration payload against live on-chain state.
|
|
64
|
-
4. **Run** — `sailor run` executes the agent locally on a schedule, or
|
|
64
|
+
4. **Run** — `sailor run` executes the agent loop. Three execution hosts compose: run it locally on a schedule, install it as a local OS service (`sailor service install` — launchd/systemd/Task Scheduler) that restarts on crash, or let the GitHub Actions cron workflow the scaffold provides run it. `sailor trigger github` fires that workflow on demand.
|
|
65
65
|
5. **Operate** — `sailor doctor` checks kernel health and gas balances; `sailor chains` lists supported chains and deployment addresses; `sailor session pause` instantly revokes dispatch rights without touching Safe custody.
|
|
66
66
|
|
|
67
67
|
Run `npx sailor init my-agent`, open the scaffolded folder in Claude Code, Cursor, or any AI coding assistant, and say **"start"**.
|
|
@@ -150,6 +150,12 @@ sailor run --once # single tick — confirm it works before automating
|
|
|
150
150
|
sailor run # start the agent (continuous)
|
|
151
151
|
sailor keys export-ci # copy encrypted agent wallet to ci-keystore.json for CI
|
|
152
152
|
|
|
153
|
+
# Unattended execution
|
|
154
|
+
sailor service install # run as a local OS daemon (launchd/systemd/Task Scheduler), restarts on crash
|
|
155
|
+
sailor service status # whether the service is installed and running
|
|
156
|
+
sailor service logs -f # follow the agent log (.sail/agent.log)
|
|
157
|
+
sailor trigger github # fire the agent's GitHub Actions workflow on demand
|
|
158
|
+
|
|
153
159
|
# Dashboard
|
|
154
160
|
sailor ui start # prints the per-project dashboard URL
|
|
155
161
|
```
|
|
@@ -326,8 +332,8 @@ Published to the public npm registry under the `@sail.money` scope.
|
|
|
326
332
|
|
|
327
333
|
| Trigger | Package | Version | dist-tag |
|
|
328
334
|
|---|---|---|---|
|
|
329
|
-
| Tag push (`v*`) | `@sail.money/sailor` | `1.
|
|
330
|
-
| Manual dispatch | `@dev.sail.money/sailor` | `1.
|
|
335
|
+
| Tag push (`v*`) | `@sail.money/sailor` | `1.2.0` | `latest` |
|
|
336
|
+
| Manual dispatch | `@dev.sail.money/sailor` | `1.2.0-42` | `dev` |
|
|
331
337
|
|
|
332
338
|
```bash
|
|
333
339
|
npm install @sail.money/sailor # latest stable (tag push)
|
|
@@ -387,7 +393,7 @@ Either way, `@sail.money/sailor/sdk` imports work unchanged.
|
|
|
387
393
|
|
|
388
394
|
## State of the project
|
|
389
395
|
|
|
390
|
-
Sailor is functional and published as [`@sail.money/sailor`](https://www.npmjs.com/package/@sail.money/sailor) on npm (v1.
|
|
396
|
+
Sailor is functional and published as [`@sail.money/sailor`](https://www.npmjs.com/package/@sail.money/sailor) on npm (v1.2.0). The SDK, CLI, keystore, mandate flows, agent runner, and dashboard are implemented and have been exercised end to end.
|
|
391
397
|
|
|
392
398
|
The Sail Protocol trusted core is deployed on six chains — Ethereum, Base, Arbitrum, Unichain, Base Sepolia, and Eth Sepolia — via CREATE2, with every core contract at the same address on every chain. All six run the selective dispatch model with zero fees and are bootstrapped with a genesis allowlist so `createAccount` is usable immediately. These deployments are under an ongoing external audit by [Octane Security](https://octane.security) and are not final — do not use them with funds you are not prepared to lose.
|
|
393
399
|
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Do not edit manually — run `pnpm build` to regenerate.
|
|
6
6
|
*
|
|
7
7
|
* Spec version : 1.2.0
|
|
8
|
-
* Generated at : 2026-06-
|
|
8
|
+
* Generated at : 2026-06-16T10:45:45.724Z
|
|
9
9
|
*/
|
|
10
10
|
export declare const SAIL_INTELLIGENCE_BASE_URL = "https://api.sail.money";
|
|
11
11
|
export declare const SAIL_INTELLIGENCE_DOCS_URL = "https://api.sail.money/docs";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Do not edit manually — run `pnpm build` to regenerate.
|
|
6
6
|
*
|
|
7
7
|
* Spec version : 1.2.0
|
|
8
|
-
* Generated at : 2026-06-
|
|
8
|
+
* Generated at : 2026-06-16T10:45:45.724Z
|
|
9
9
|
*/
|
|
10
10
|
export const SAIL_INTELLIGENCE_BASE_URL = "https://api.sail.money";
|
|
11
11
|
export const SAIL_INTELLIGENCE_DOCS_URL = "https://api.sail.money/docs";
|