@minasoft/mina-ai-router 0.1.1 → 0.1.4

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 CHANGED
@@ -78,6 +78,7 @@ You can also create agents from the Web UI by right-clicking the `Live Agent Flo
78
78
  - [Skill Install Guide](https://github.com/stevennana/mina-ai-router/blob/main/docs/SKILL-INSTALL-GUIDE.md)
79
79
  - [HTTP UI and MCP Server](https://github.com/stevennana/mina-ai-router/blob/main/docs/HTTP-UI-MCP.md)
80
80
  - [Troubleshooting](https://github.com/stevennana/mina-ai-router/blob/main/docs/TROUBLESHOOTING.md)
81
+ - [Release Guide](https://github.com/stevennana/mina-ai-router/blob/main/docs/RELEASE.md)
81
82
 
82
83
  ## Development
83
84
 
@@ -7,7 +7,7 @@ const node_child_process_1 = require("node:child_process");
7
7
  const src_1 = require("../../../packages/core/src");
8
8
  const src_2 = require("../../../packages/transports/src");
9
9
  const statePath = process.env.MINA_ROUTER_STATE ?? (0, node_path_1.join)(process.cwd(), "data", "router-state.json");
10
- const version = "0.1.1";
10
+ const version = "0.1.4";
11
11
  const serverPidPath = process.env.MINA_SERVER_PID ?? (0, node_path_1.join)(process.cwd(), "data", "mair-server.json");
12
12
  async function main(argv) {
13
13
  const command = argv[2];
File without changes
File without changes
@@ -109,3 +109,9 @@ Run:
109
109
  npm run verify
110
110
  git status --short
111
111
  ```
112
+
113
+ ## 10. Release
114
+
115
+ npm releases are published through GitHub Actions and npm Trusted Publishing.
116
+
117
+ See [RELEASE.md](./RELEASE.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minasoft/mina-ai-router",
3
- "version": "0.1.1",
3
+ "version": "0.1.4",
4
4
  "description": "Local MCP router and Web UI for visible tmux-backed AI agents.",
5
5
  "homepage": "https://github.com/stevennana/mina-ai-router#readme",
6
6
  "repository": {