delimit-cli 3.9.4 → 3.9.5
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 +7 -1
- package/bin/delimit-setup.js +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
```
|
|
2
|
+
____ ________ ______ _____________
|
|
3
|
+
/ __ \/ ____/ / / _/ |/ / _/_ __/
|
|
4
|
+
/ / / / __/ / / / // /|_/ // / / /
|
|
5
|
+
/ /_/ / /___/ /____/ // / / // / / /
|
|
6
|
+
/_____/_____/_____/___/_/ /_/___/ /_/
|
|
7
|
+
```
|
|
2
8
|
|
|
3
9
|
One workspace for every AI coding assistant. Switch models, not context.
|
|
4
10
|
|
package/bin/delimit-setup.js
CHANGED
|
@@ -31,8 +31,12 @@ function step(n, msg) { log(`\n${blue(`[${n}]`)} ${msg}`); }
|
|
|
31
31
|
|
|
32
32
|
async function main() {
|
|
33
33
|
log('');
|
|
34
|
-
log(
|
|
35
|
-
log(
|
|
34
|
+
log(blue(' ____ ________ ______ _____________'));
|
|
35
|
+
log(blue(' / __ \\/ ____/ / / _/ |/ / _/_ __/'));
|
|
36
|
+
log(blue(' / / / / __/ / / / // /|_/ // / / / '));
|
|
37
|
+
log(blue(' / /_/ / /___/ /____/ // / / // / / / '));
|
|
38
|
+
log(blue('/_____/_____/_____/___/_/ /_/___/ /_/ '));
|
|
39
|
+
log(dim(' One workspace for every AI coding assistant'));
|
|
36
40
|
log('');
|
|
37
41
|
|
|
38
42
|
// Step 1: Check prerequisites
|
package/package.json
CHANGED