@aslomon/effectum 0.3.0 → 0.3.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/bin/install.js CHANGED
@@ -543,17 +543,19 @@ Options:
543
543
  writeConfig(targetDir, config);
544
544
  }
545
545
 
546
- // MCP servers
547
- if (args.withMcp) {
548
- const mcpResults = installMcpServers(config.mcpServers);
546
+ // MCP servers — always install recommended MCPs (or explicit --with-mcp)
547
+ const mcpKeys = config.mcpServers || (config.recommended ? config.recommended.mcps : []) || [];
548
+ if (mcpKeys.length > 0 || args.withMcp) {
549
+ const keysToInstall = mcpKeys.length > 0 ? mcpKeys : MCP_SERVERS.map((s) => s.key);
550
+ const mcpResults = installMcpServers(keysToInstall);
549
551
  const settingsPath = isGlobal
550
552
  ? path.join(homeClaudeDir, "settings.json")
551
553
  : path.join(targetDir, ".claude", "settings.json");
552
554
  addMcpToSettings(settingsPath, mcpResults, targetDir);
553
555
  }
554
556
 
555
- // Playwright
556
- if (args.withPlaywright) {
557
+ // Playwright — install if recommended or explicit
558
+ if (args.withPlaywright || config.playwrightBrowsers) {
557
559
  installPlaywrightBrowsers();
558
560
  if (!isGlobal) ensurePlaywrightConfig(process.cwd());
559
561
  }
package/bin/lib/ui.js CHANGED
@@ -155,15 +155,11 @@ async function askAppType() {
155
155
  */
156
156
  async function askDescription() {
157
157
  const value = await p.text({
158
- message: "Describe what you want to build (one sentence)",
158
+ message: "Describe what you want to build (optional, press Enter to skip)",
159
159
  placeholder: "e.g. An internal CRM dashboard with auth and analytics",
160
- validate: (v) => {
161
- if (!v.trim())
162
- return "A short description helps generate better recommendations";
163
- },
164
160
  });
165
161
  handleCancel(value);
166
- return value;
162
+ return value || "";
167
163
  }
168
164
 
169
165
  // ─── Step 5: Language ───────────────────────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aslomon/effectum",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Autonomous development system for Claude Code \u2014 describe what you want, get production-ready code",
5
5
  "bin": {
6
6
  "effectum": "bin/effectum.js"