@launchsecure/launch-kit 0.0.1 → 0.0.2
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/server/cli.js +8 -0
- package/package.json +1 -1
package/dist/server/cli.js
CHANGED
|
@@ -3828,6 +3828,10 @@ function writeClaudeConfig(projectDir, mcpUrl, token) {
|
|
|
3828
3828
|
headers: {
|
|
3829
3829
|
Authorization: `Bearer ${token}`
|
|
3830
3830
|
}
|
|
3831
|
+
},
|
|
3832
|
+
"launch-chart": {
|
|
3833
|
+
command: "launch-chart",
|
|
3834
|
+
args: []
|
|
3831
3835
|
}
|
|
3832
3836
|
}
|
|
3833
3837
|
};
|
|
@@ -3845,6 +3849,10 @@ function writeCodexConfig(projectDir, mcpUrl, token) {
|
|
|
3845
3849
|
`[mcp_servers.launch-pod]`,
|
|
3846
3850
|
`url = "${mcpUrl}"`,
|
|
3847
3851
|
`http_headers = { "Authorization" = "Bearer ${token}" }`,
|
|
3852
|
+
``,
|
|
3853
|
+
`[mcp_servers.launch-chart]`,
|
|
3854
|
+
`command = "launch-chart"`,
|
|
3855
|
+
`args = []`,
|
|
3848
3856
|
``
|
|
3849
3857
|
].join("\n");
|
|
3850
3858
|
const filePath = import_path.default.join(codexDir, "config.toml");
|
package/package.json
CHANGED