@slock-ai/daemon 0.57.7 → 0.58.1

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 ADDED
@@ -0,0 +1,9 @@
1
+ # @slock-ai/daemon
2
+
3
+ **This package has been renamed to [@botiverse/raft-daemon](https://www.npmjs.com/package/@botiverse/raft-daemon).**
4
+
5
+ From the shim versions onward, @slock-ai/daemon is a compatibility wrapper
6
+ that depends on @botiverse/raft-daemon: the `slock-daemon` bin delegates to
7
+ it and the `./core` export re-exports it, so existing installs, service
8
+ definitions, and auto-upgrade scripts keep working unchanged. New installs
9
+ should use @botiverse/raft-daemon directly.
package/core.js ADDED
@@ -0,0 +1,2 @@
1
+ // Compatibility re-export: @slock-ai/daemon/core -> @botiverse/raft-daemon/core.
2
+ export * from "@botiverse/raft-daemon/core";
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ // Compatibility shim: @slock-ai/daemon -> @botiverse/raft-daemon.
3
+ await import("@botiverse/raft-daemon/dist/slock-daemon.js");
package/package.json CHANGED
@@ -1,19 +1,15 @@
1
1
  {
2
2
  "name": "@slock-ai/daemon",
3
- "version": "0.57.7",
3
+ "version": "0.58.1",
4
+ "description": "Renamed to @botiverse/raft-daemon. This package is a compatibility shim that delegates to it; existing `slock-daemon` invocations and the ./core export keep working.",
4
5
  "type": "module",
5
6
  "bin": {
6
- "slock-daemon": "dist/index.js"
7
+ "slock-daemon": "index.js"
7
8
  },
8
9
  "exports": {
9
- "./core": {
10
- "types": "./src/core.ts",
11
- "import": "./dist/core.js"
12
- }
10
+ "./core": "./core.js",
11
+ "./package.json": "./package.json"
13
12
  },
14
- "files": [
15
- "dist"
16
- ],
17
13
  "repository": {
18
14
  "type": "git",
19
15
  "url": "git+https://github.com/botiverse/slock.git",
@@ -22,38 +18,7 @@
22
18
  "publishConfig": {
23
19
  "access": "public"
24
20
  },
25
- "scripts": {
26
- "dev": "pnpm --filter @slock-ai/cli build && tsx watch src/index.ts",
27
- "start": "tsx src/index.ts",
28
- "build": "pnpm --filter @slock-ai/cli build && tsup && node -e \"require('fs').cpSync('../cli/dist','dist/cli',{recursive:true})\"",
29
- "test": "node --import tsx --test --test-force-exit 'src/**/*.test.ts'",
30
- "prepack": "pnpm run build",
31
- "prepublishOnly": "pnpm run build",
32
- "typecheck": "tsc --noEmit",
33
- "generate:slock-cli-guide": "tsx scripts/generate-slock-cli-guide.ts",
34
- "check:slock-cli-guide-fresh": "pnpm generate:slock-cli-guide && git diff --exit-code ../../manual/agent-knowledge/slock-cli-overview.md",
35
- "release:patch": "npm version patch --no-git-tag-version && cd ../.. && pnpm install --lockfile-only && git add packages/daemon/package.json pnpm-lock.yaml && git commit -m \"chore: bump @slock-ai/daemon to v$(node -p \"require('./packages/daemon/package.json').version\")\" && git tag daemon-v$(node -p \"require('./packages/daemon/package.json').version\") && git push && git push --tags",
36
- "release:minor": "npm version minor --no-git-tag-version && cd ../.. && pnpm install --lockfile-only && git add packages/daemon/package.json pnpm-lock.yaml && git commit -m \"chore: bump @slock-ai/daemon to v$(node -p \"require('./packages/daemon/package.json').version\")\" && git tag daemon-v$(node -p \"require('./packages/daemon/package.json').version\") && git push && git push --tags",
37
- "release:major": "npm version major --no-git-tag-version && cd ../.. && pnpm install --lockfile-only && git add packages/daemon/package.json pnpm-lock.yaml && git commit -m \"chore: bump @slock-ai/daemon to v$(node -p \"require('./packages/daemon/package.json').version\")\" && git tag daemon-v$(node -p \"require('./packages/daemon/package.json').version\") && git push && git push --tags",
38
- "release:alpha": "npm version prerelease --preid=alpha --no-git-tag-version && cd ../.. && pnpm install --lockfile-only && git add packages/daemon/package.json pnpm-lock.yaml && git commit -m \"chore: bump @slock-ai/daemon to v$(node -p \"require('./packages/daemon/package.json').version\")\" && git tag daemon-v$(node -p \"require('./packages/daemon/package.json').version\") && git push && git push --tags"
39
- },
40
21
  "dependencies": {
41
- "@earendil-works/pi-ai": "0.79.1",
42
- "@earendil-works/pi-coding-agent": "0.79.1",
43
- "@jackwener/opencli": "^1.8.3",
44
- "@modelcontextprotocol/sdk": "^1.29.0",
45
- "commander": "^12.1.0",
46
- "https-proxy-agent": "^7.0.6",
47
- "undici": "^7.24.7",
48
- "ws": "^8.20.0",
49
- "zod": "^4.3.6"
50
- },
51
- "devDependencies": {
52
- "@slock-ai/cli": "workspace:*",
53
- "@slock-ai/shared": "workspace:*",
54
- "@types/node": "^25.5.0",
55
- "@types/ws": "^8.18.1",
56
- "tsup": "^8.5.1",
57
- "typescript": "^5.9.3"
22
+ "@botiverse/raft-daemon": "^0.58.1"
58
23
  }
59
24
  }