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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "midsomar",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "AI coding agent — open-source, bring your own API key",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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
- Next step:
12
- npx midsomar web
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)