@dev.sail.money/sailor 1.3.0-211 → 1.3.0-95

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/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@dev.sail.money/sailor",
3
- "version": "1.3.0-211",
3
+ "version": "1.3.0-95",
4
4
  "description": "Operator toolkit for Sail Protocol",
5
5
  "bin": {
6
- "sailor": "packages/cli/dist/index.cjs"
6
+ "sailor": "packages/cli/dist/index.cjs",
7
+ "sailor-mcp": "packages/cli/dist/mcp.cjs"
7
8
  },
8
9
  "exports": {
9
10
  "./sdk": {
@@ -26,6 +27,7 @@
26
27
  "scripts": {
27
28
  "clean": "node scripts/clean.mjs",
28
29
  "build": "pnpm --filter @sail/sdk build && pnpm --filter sailor build && pnpm --filter sailor-ui build",
30
+ "pack": "pnpm build && npm pack",
29
31
  "test": "pnpm --filter sailor-ui test",
30
32
  "test:ui": "pnpm --filter sailor-ui test:ui",
31
33
  "link:cli": "pnpm link --global",
@@ -40811,6 +40811,9 @@ Pass --force to scaffold into it anyway (existing files with the same name are o
40811
40811
  }
40812
40812
  })() : null;
40813
40813
  copyDirSync(templateSrc, dest);
40814
+ if (options.skills === false) {
40815
+ import_node_fs10.default.rmSync(import_node_path8.default.join(dest, ".agents", "skills"), { recursive: true, force: true });
40816
+ }
40814
40817
  const pkgRoot = packageRoot();
40815
40818
  const examplesPermSrc = import_node_path8.default.join(pkgRoot, "examples", "permissions");
40816
40819
  if (import_node_fs10.default.existsSync(examplesPermSrc)) {
@@ -45474,7 +45477,7 @@ function actionWith(fn) {
45474
45477
  closePrompts();
45475
45478
  };
45476
45479
  }
45477
- program2.command("init [dir]").description("Scaffold a new Sail agent into the current directory (or [dir] subdirectory)").option("--template <name>", "Template to scaffold from (default: default)").option("--chain <id>", "Default EVM chain id written to .sail/config.json and .env.example").option("--rpc-url <url>", "Default RPC_URL written to .sail/.env.local").option("--force", "Re-initialize even if already initialized (overwrites scaffold files; keys/ and state/ are preserved)").action(
45480
+ program2.command("init [dir]").description("Scaffold a new Sail agent into the current directory (or [dir] subdirectory)").option("--template <name>", "Template to scaffold from (default: default)").option("--chain <id>", "Default EVM chain id written to .sail/config.json and .env.example").option("--rpc-url <url>", "Default RPC_URL written to .sail/.env.local").option("--force", "Re-initialize even if already initialized (overwrites scaffold files; keys/ and state/ are preserved)").option("--no-skills", "Skip scaffolding the sailor skills (use under the Sailor plugin, which already provides them to the agent)").action(
45478
45481
  async (name, opts) => {
45479
45482
  try {
45480
45483
  await initCommand(name, opts);