clisbot 0.1.22 → 0.1.28
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clisbot",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.28",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Chat surfaces for durable AI coding agents running in tmux",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && bun build ./src/main.ts --target=node --outfile ./dist/main.js",
|
|
31
31
|
"dev": "bun --watch run src/main.ts serve-foreground",
|
|
32
|
-
"start": "
|
|
33
|
-
"restart": "
|
|
34
|
-
"stop": "
|
|
35
|
-
"status": "
|
|
36
|
-
"logs": "
|
|
37
|
-
"init": "
|
|
32
|
+
"start": "bash ./scripts/run-dev-cli.sh start",
|
|
33
|
+
"restart": "bash ./scripts/run-dev-cli.sh restart",
|
|
34
|
+
"stop": "bash ./scripts/run-dev-cli.sh stop",
|
|
35
|
+
"status": "bash ./scripts/run-dev-cli.sh status",
|
|
36
|
+
"logs": "bash ./scripts/run-dev-cli.sh logs",
|
|
37
|
+
"init": "bash ./scripts/run-dev-cli.sh init",
|
|
38
38
|
"print-config-path": "bun run src/main.ts print-config-path",
|
|
39
|
-
"pairing": "
|
|
39
|
+
"pairing": "bash ./scripts/run-dev-cli.sh pairing",
|
|
40
40
|
"typecheck": "bunx tsc --noEmit",
|
|
41
41
|
"test": "bun test",
|
|
42
42
|
"prepack": "bun run build",
|
|
@@ -90,7 +90,7 @@ These are broad or legacy-looking for the current `clisbot` Slack design and sho
|
|
|
90
90
|
| `function_executed` event | Not consumed by current code |
|
|
91
91
|
| `app_home.messages_tab_enabled` and related App Home surface config | Not required for current chat-routing behavior |
|
|
92
92
|
| `org_deploy_enabled` | Not needed for the current local or workspace-level setup story |
|
|
93
|
-
| `
|
|
93
|
+
| `function_runtime` | Not needed for the current Slack Socket Mode bot |
|
|
94
94
|
|
|
95
95
|
## Practical Recommendation
|
|
96
96
|
|