@slock-ai/cli 0.0.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.
Files changed (2) hide show
  1. package/dist/index.js +1921 -0
  2. package/package.json +39 -0
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@slock-ai/cli",
3
+ "version": "0.0.1",
4
+ "description": "Agent-facing execution interface for the Slock platform. Not a user-facing CLI product — invoked by daemon-spawned agent processes via injected env vars.",
5
+ "type": "module",
6
+ "bin": {
7
+ "slock": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/botiverse/slock.git",
15
+ "directory": "packages/cli"
16
+ },
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "scripts": {
21
+ "dev": "tsx watch src/index.ts",
22
+ "start": "tsx src/index.ts",
23
+ "build": "tsup && node scripts/write-dist-package.mjs",
24
+ "test": "node --import tsx --test --test-force-exit 'src/**/*.test.ts'",
25
+ "typecheck": "tsc --noEmit",
26
+ "lint:publish-package": "node scripts/check-publish-package.mjs"
27
+ },
28
+ "dependencies": {
29
+ "commander": "^12.1.0",
30
+ "undici": "^7.24.7"
31
+ },
32
+ "devDependencies": {
33
+ "@slock-ai/shared": "workspace:*",
34
+ "@types/node": "^25.5.0",
35
+ "tsup": "^8.5.1",
36
+ "tsx": "^4.21.0",
37
+ "typescript": "^5.9.3"
38
+ }
39
+ }