clisbot 0.1.8 → 0.1.11
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 +86 -116
- package/dist/main.js +11356 -8402
- package/package.json +1 -1
- package/templates/customized/README.md +2 -0
- package/templates/customized/default/LOOP.md +17 -0
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@ Use them when the default single-human template is not the right fit.
|
|
|
6
6
|
|
|
7
7
|
## Available Variants
|
|
8
8
|
|
|
9
|
+
- `default`: files that should be seeded for every bootstrap mode
|
|
9
10
|
- `personal-assistant`: for bots acting on behalf of one human
|
|
10
11
|
- `team-assistant`: for bots acting as an independent assistant inside a team space such as a Slack work channel
|
|
11
12
|
|
|
@@ -18,6 +19,7 @@ The content is mirrored so you can copy the filename that matches the CLI you ar
|
|
|
18
19
|
|
|
19
20
|
## Main Difference
|
|
20
21
|
|
|
22
|
+
- `default` carries shared additions that should land in every bootstrapped workspace
|
|
21
23
|
- `personal-assistant` keeps the original "help one human" model
|
|
22
24
|
- `team-assistant` treats the bot as its own assistant role in a shared environment
|
|
23
25
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# LOOP.md - Default Maintenance Loop
|
|
2
|
+
|
|
3
|
+
On each loop iteration, work through the following in order:
|
|
4
|
+
|
|
5
|
+
1. Continue any unfinished work from the current conversation.
|
|
6
|
+
2. Tend to the current branch's pull request:
|
|
7
|
+
- review comments
|
|
8
|
+
- failed CI runs
|
|
9
|
+
- merge conflicts
|
|
10
|
+
3. If nothing is pending, run a cleanup pass:
|
|
11
|
+
- bug hunt
|
|
12
|
+
- simplification
|
|
13
|
+
- small polish that stays within the current scope
|
|
14
|
+
|
|
15
|
+
Do not start unrelated new initiatives.
|
|
16
|
+
|
|
17
|
+
Irreversible actions such as pushing, merging, deleting, or force-updating only proceed when they continue something already authorized in the transcript.
|