@meltstudio/meltctl 4.17.0 → 4.18.0

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.
@@ -5,7 +5,13 @@ const EDITOR_HINT = chalk.dim('(type \\e to open your editor)');
5
5
  async function promptField(message, required) {
6
6
  const value = await input({ message: `${message} ${EDITOR_HINT}` });
7
7
  if (value === '\\e') {
8
- return editor({ message });
8
+ try {
9
+ return await editor({ message });
10
+ }
11
+ catch {
12
+ console.log(chalk.yellow('Editor failed to open. Falling back to inline input.'));
13
+ return promptField(message, required);
14
+ }
9
15
  }
10
16
  if (required && !value.trim()) {
11
17
  console.log(chalk.yellow('This field is required.'));
@@ -47,6 +53,7 @@ export async function standupCommand(options) {
47
53
  }
48
54
  else {
49
55
  console.log(chalk.bold.cyan('\n Daily Standup Report\n'));
56
+ console.log(chalk.dim(' Tip: Mention tickets, PRs, or features by name.\n'));
50
57
  yesterday = await promptField('What did you work on yesterday?', true);
51
58
  today = await promptField('What are you going to work on today?', true);
52
59
  blockers = await promptField('Any blockers? (leave empty if none)', false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "4.17.0",
3
+ "version": "4.18.0",
4
4
  "description": "AI-first development tools for teams - set up AGENTS.md, Claude Code, Cursor, and Copilot standards",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",