clisbot 0.1.53-beta.5 → 0.1.53
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 +587 -399
- package/config/clisbot.json.template +5 -2
- package/dist/main.js +41931 -13727
- package/package.json +3 -1
- package/templates/customized/personal-assistant/AGENTS.md +6 -0
- package/templates/customized/team-assistant/AGENTS.md +6 -0
- package/templates/default/AGENTS.md +6 -0
- package/templates/openclaw/AGENTS.md +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clisbot",
|
|
3
|
-
"version": "0.1.53
|
|
3
|
+
"version": "0.1.53",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Chat surfaces for durable AI coding agents running in tmux",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,7 +44,9 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@slack/bolt": "^4.6.0",
|
|
47
|
+
"pngjs": "^7.0.0",
|
|
47
48
|
"proper-lockfile": "^4.1.2",
|
|
49
|
+
"zca-js": "2.1.2",
|
|
48
50
|
"zod": "^3.24.2"
|
|
49
51
|
},
|
|
50
52
|
"keywords": [
|
|
@@ -22,6 +22,12 @@ Before doing anything else:
|
|
|
22
22
|
Exception:
|
|
23
23
|
- If the user message is only simple social talk like `hi`, `thanks`, or similar, you may skip step 3 and step 4 unless recent memory is needed for a better reply.
|
|
24
24
|
|
|
25
|
+
## Artifact Rules
|
|
26
|
+
|
|
27
|
+
- Organize AI-generated files at scale with clear folders and predictable names, using helpful prefixes or suffixes when they improve sorting.
|
|
28
|
+
- Put generated artifacts in `<current workspace folder>/artifacts` unless the user asks for a different location.
|
|
29
|
+
- Prefer `docs/<topic>/`, `web/<topic>/`, `static/<topic>/`, or `archives/yyyy-MM/` when those categories fit.
|
|
30
|
+
|
|
25
31
|
## Memory
|
|
26
32
|
|
|
27
33
|
You wake up fresh each session. These files are your continuity:
|
|
@@ -22,6 +22,12 @@ Before doing anything else:
|
|
|
22
22
|
Exception:
|
|
23
23
|
- If the user message is only simple social talk like `hi`, `thanks`, or similar, you may skip step 3 and step 4 unless recent memory is needed for a better reply.
|
|
24
24
|
|
|
25
|
+
## Artifact Rules
|
|
26
|
+
|
|
27
|
+
- Organize AI-generated files at scale with clear folders and predictable names, using helpful prefixes or suffixes when they improve sorting.
|
|
28
|
+
- Put generated artifacts in `<current workspace folder>/artifacts` unless the user asks for a different location.
|
|
29
|
+
- Prefer `docs/<topic>/`, `web/<topic>/`, `static/<topic>/`, or `archives/yyyy-MM/` when those categories fit.
|
|
30
|
+
|
|
25
31
|
## Memory
|
|
26
32
|
|
|
27
33
|
You wake up fresh each session. These files are your continuity:
|
|
@@ -21,6 +21,12 @@ Before doing anything else:
|
|
|
21
21
|
|
|
22
22
|
Don't ask permission. Just do it.
|
|
23
23
|
|
|
24
|
+
## Artifact Rules
|
|
25
|
+
|
|
26
|
+
- Organize AI-generated files at scale with clear folders and predictable names, using helpful prefixes or suffixes when they improve sorting.
|
|
27
|
+
- Put generated artifacts in `<current workspace folder>/artifacts` unless the user asks for a different location.
|
|
28
|
+
- Prefer `docs/<topic>/`, `web/<topic>/`, `static/<topic>/`, or `archives/yyyy-MM/` when those categories fit.
|
|
29
|
+
|
|
24
30
|
## Memory
|
|
25
31
|
|
|
26
32
|
You wake up fresh each session. These files are your continuity:
|
|
@@ -21,6 +21,12 @@ Before doing anything else:
|
|
|
21
21
|
|
|
22
22
|
Don't ask permission. Just do it.
|
|
23
23
|
|
|
24
|
+
## Artifact Rules
|
|
25
|
+
|
|
26
|
+
- Organize AI-generated files at scale with clear folders and predictable names, using helpful prefixes or suffixes when they improve sorting.
|
|
27
|
+
- Put generated artifacts in `<current workspace folder>/artifacts` unless the user asks for a different location.
|
|
28
|
+
- Prefer `docs/<topic>/`, `web/<topic>/`, `static/<topic>/`, or `archives/yyyy-MM/` when those categories fit.
|
|
29
|
+
|
|
24
30
|
## Memory
|
|
25
31
|
|
|
26
32
|
You wake up fresh each session. These files are your continuity:
|