@morphllm/morph-setup 1.0.3 → 1.0.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -634,6 +634,7 @@ function buildCodexMorphBlock(input) {
634
634
  const argsToml = morphArgs.map((a) => `"${tomlEscapeString(a)}"`).join(", ");
635
635
  lines.push(`args = [${argsToml}]`);
636
636
  lines.push("enabled = true");
637
+ lines.push("startup_timeout_sec = 45");
637
638
  const env = [];
638
639
  if (input.apiKey) env.push(`MORPH_API_KEY = "${tomlEscapeString(input.apiKey)}"`);
639
640
  if (input.enabledTools) env.push(`ENABLED_TOOLS = "${tomlEscapeString(input.enabledTools)}"`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morphllm/morph-setup",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Install Morph MCP and bundled skills onto coding agents",
5
5
  "type": "module",
6
6
  "bin": {