@tyvm/knowhow 0.0.117 → 0.0.118
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/package.json +1 -1
- package/src/cli.ts +2 -0
- package/src/commands/mcp.ts +742 -0
- package/src/services/Mcp.ts +3 -1
- package/src/types.ts +1 -0
- package/ts_build/package.json +1 -1
- package/ts_build/src/cli.js +2 -0
- package/ts_build/src/cli.js.map +1 -1
- package/ts_build/src/commands/mcp.d.ts +2 -0
- package/ts_build/src/commands/mcp.js +664 -0
- package/ts_build/src/commands/mcp.js.map +1 -0
- package/ts_build/src/services/Mcp.js +2 -1
- package/ts_build/src/services/Mcp.js.map +1 -1
- package/ts_build/src/types.d.ts +1 -0
- package/ts_build/src/types.js.map +1 -1
package/package.json
CHANGED
package/src/cli.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { ModulesService } from "./services/modules";
|
|
|
10
10
|
|
|
11
11
|
// Command registrars
|
|
12
12
|
import { addModulesCommand } from "./commands/modules";
|
|
13
|
+
import { addMcpCommands } from "./commands/mcp";
|
|
13
14
|
import {
|
|
14
15
|
addWorkerCommand,
|
|
15
16
|
addWorkersCommand,
|
|
@@ -96,6 +97,7 @@ async function main() {
|
|
|
96
97
|
addCloudWorkerCommand(program);
|
|
97
98
|
addGithubCredentialsCommand(program);
|
|
98
99
|
addModulesCommand(program);
|
|
100
|
+
addMcpCommands(program);
|
|
99
101
|
|
|
100
102
|
// Load global modules early (before parse) so they can register CLI subcommands.
|
|
101
103
|
// We pass only the Program in context — no services are spun up at this stage.
|