@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.
|
|
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
|
package/package.json
CHANGED