midsomar 0.1.14 → 0.1.15
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/dist/index.js +7 -6
- package/package.json +1 -1
- package/scripts/postinstall.js +9 -15
package/dist/index.js
CHANGED
|
@@ -3,15 +3,16 @@ import { startEngine, serveUI } from "./server.js";
|
|
|
3
3
|
const defaultPort = 3000;
|
|
4
4
|
const defaultHost = "127.0.0.1";
|
|
5
5
|
const art = `
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
███╗ ███╗██╗██████╗ ███████╗ ██████╗ ███╗ ███╗ █████╗ ██████╗
|
|
7
|
+
████╗ ████║██║██╔══██╗██╔════╝██╔═══██╗████╗ ████║██╔══██╗██╔══██╗
|
|
8
|
+
██╔████╔██║██║██║ ██║███████╗██║ ██║██╔████╔██║███████║██████╔╝
|
|
9
|
+
██║╚██╔╝██║██║██║ ██║╚════██║██║ ██║██║╚██╔╝██║██╔══██║██╔══██╗
|
|
10
|
+
██║ ╚═╝ ██║██║██████╔╝███████║╚██████╔╝██║ ╚═╝ ██║██║ ██║██║ ██║
|
|
11
|
+
╚═╝ ╚═╝╚═╝╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝
|
|
10
12
|
`;
|
|
11
13
|
function help() {
|
|
12
14
|
process.stdout.write(`${art}
|
|
13
|
-
|
|
14
|
-
AI coding agent — open-source
|
|
15
|
+
midsomar - AI coding agent
|
|
15
16
|
|
|
16
17
|
Usage:
|
|
17
18
|
npx midsomar web [options]
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -1,20 +1,14 @@
|
|
|
1
1
|
const msg = `
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
███╗ ███╗██╗██████╗ ███████╗ ██████╗ ███╗ ███╗ █████╗ ██████╗
|
|
3
|
+
████╗ ████║██║██╔══██╗██╔════╝██╔═══██╗████╗ ████║██╔══██╗██╔══██╗
|
|
4
|
+
██╔████╔██║██║██║ ██║███████╗██║ ██║██╔████╔██║███████║██████╔╝
|
|
5
|
+
██║╚██╔╝██║██║██║ ██║╚════██║██║ ██║██║╚██╔╝██║██╔══██║██╔══██╗
|
|
6
|
+
██║ ╚═╝ ██║██║██████╔╝███████║╚██████╔╝██║ ╚═╝ ██║██║ ██║██║ ██║
|
|
7
|
+
╚═╝ ╚═╝╚═╝╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
AI coding agent - open-source
|
|
9
|
-
──────────────────────────────
|
|
9
|
+
midsomar - AI coding agent
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
Documentation:
|
|
15
|
-
https://opencode.ai
|
|
16
|
-
|
|
17
|
-
Report issues:
|
|
18
|
-
https://github.com/anomalyco/opencode/issues
|
|
11
|
+
Next step:
|
|
12
|
+
npx midsomar web
|
|
19
13
|
`
|
|
20
14
|
process.stderr.write(msg)
|