@meltstudio/meltctl 4.29.0 → 4.30.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.
@@ -120,7 +120,7 @@ export async function auditListCommand(options) {
120
120
  };
121
121
  if (options.latest) {
122
122
  console.log(chalk.bold(`\n Latest Audits (${body.count}):\n`));
123
- console.log(chalk.dim(` ${'TYPE'.padEnd(12)} ${'REPOSITORY'.padEnd(40)} ${'AGE'.padEnd(10)} ${'AUTHOR'.padEnd(30)} DATE`));
123
+ console.log(chalk.dim(` ${'ID'.padEnd(10)} ${'TYPE'.padEnd(12)} ${'REPOSITORY'.padEnd(40)} ${'AGE'.padEnd(10)} ${'AUTHOR'.padEnd(30)} DATE`));
124
124
  console.log();
125
125
  for (const r of body.audits) {
126
126
  const createdAt = new Date(r.created_at ?? r.createdAt);
@@ -150,12 +150,12 @@ export async function auditListCommand(options) {
150
150
  : daysAgo <= 30
151
151
  ? chalk.yellow
152
152
  : chalk.red;
153
- console.log(` ${typeColor(label.padEnd(12))} ${chalk.white(repo.padEnd(40))} ${ageColor(ageText.padEnd(10))} ${chalk.dim(r.author.padEnd(30))} ${chalk.dim(date)}`);
153
+ console.log(` ${chalk.dim(r.id.slice(0, 8).padEnd(10))} ${typeColor(label.padEnd(12))} ${chalk.white(repo.padEnd(40))} ${ageColor(ageText.padEnd(10))} ${chalk.dim(r.author.padEnd(30))} ${chalk.dim(date)}`);
154
154
  }
155
155
  }
156
156
  else {
157
157
  console.log(chalk.bold(`\n Audits (${body.count}):\n`));
158
- const hdr = ` ${'TYPE'.padEnd(12)} ${'REPOSITORY'.padEnd(40)} ${'AUTHOR'.padEnd(30)} DATE`;
158
+ const hdr = ` ${'ID'.padEnd(10)} ${'TYPE'.padEnd(12)} ${'REPOSITORY'.padEnd(40)} ${'AUTHOR'.padEnd(30)} DATE`;
159
159
  console.log(chalk.dim(hdr));
160
160
  console.log();
161
161
  for (const r of body.audits) {
@@ -173,9 +173,9 @@ export async function auditListCommand(options) {
173
173
  : r.type === 'security-audit'
174
174
  ? chalk.red
175
175
  : chalk.magenta;
176
- console.log(` ${typeColor(label.padEnd(12))} ${chalk.white(repo.padEnd(40))} ${chalk.dim(r.author.padEnd(30))} ${chalk.dim(date)}`);
176
+ console.log(` ${chalk.dim(r.id.slice(0, 8).padEnd(10))} ${typeColor(label.padEnd(12))} ${chalk.white(repo.padEnd(40))} ${chalk.dim(r.author.padEnd(30))} ${chalk.dim(date)}`);
177
177
  if (r.branch && r.branch !== 'main') {
178
- console.log(` ${' '.padEnd(12)} ${chalk.dim(`branch: ${r.branch} commit: ${r.commit ?? 'N/A'}`)}`);
178
+ console.log(` ${' '.padEnd(10)} ${' '.padEnd(12)} ${chalk.dim(`branch: ${r.branch} commit: ${r.commit ?? 'N/A'}`)}`);
179
179
  }
180
180
  }
181
181
  }
package/dist/index.js CHANGED
@@ -29,6 +29,20 @@ program
29
29
  printBanner();
30
30
  return '';
31
31
  })
32
+ .addHelpText('after', `
33
+ ${chalk.bold('AI Skills')} ${chalk.dim('(run these in your AI coding tool, not the CLI):')}
34
+ ${chalk.dim(' /melt-setup Analyze the project and customize AGENTS.md')}
35
+ ${chalk.dim(' /melt-plan Design an implementation approach before writing code')}
36
+ ${chalk.dim(' /melt-validate Run the validation plan and verify end-to-end')}
37
+ ${chalk.dim(' /melt-review Review changes against project standards')}
38
+ ${chalk.dim(' /melt-pr Create a well-structured pull request')}
39
+ ${chalk.dim(' /melt-debug Systematically investigate and fix bugs')}
40
+ ${chalk.dim(' /melt-audit Run a project compliance audit')}
41
+ ${chalk.dim(' /melt-ux-audit Review UI against usability heuristics')}
42
+ ${chalk.dim(' /melt-security-audit Run a security posture audit across the platform')}
43
+ ${chalk.dim(' /melt-update Update Melt skills to the latest version')}
44
+ ${chalk.dim(' /melt-help Answer questions about the development playbook')}
45
+ `)
32
46
  .hook('preAction', async () => {
33
47
  await checkAndEnforceUpdate();
34
48
  });
@@ -44,7 +58,14 @@ program
44
58
  .action(async () => {
45
59
  await logoutCommand();
46
60
  });
47
- const project = program.command('project').description('manage project configuration');
61
+ const project = program
62
+ .command('project')
63
+ .description('manage project configuration')
64
+ .addHelpText('after', `
65
+ ${chalk.dim('Related skills (run in your AI coding tool after init):')}
66
+ ${chalk.dim(' /melt-setup Analyze the project and customize AGENTS.md')}
67
+ ${chalk.dim(' /melt-update Update Melt skills to the latest version')}
68
+ `);
48
69
  project
49
70
  .command('init')
50
71
  .description('scaffold Melt development tools into the current directory (AGENTS.md, .claude/, .cursor/, .opencode/, .mcp.json)')
@@ -91,7 +112,15 @@ program
91
112
  .action(async (options) => {
92
113
  await coinsCommand(options);
93
114
  });
94
- const audit = program.command('audit').description('submit and list audits');
115
+ const audit = program
116
+ .command('audit')
117
+ .description('submit and list audits')
118
+ .addHelpText('after', `
119
+ ${chalk.dim('Related skills (run in your AI coding tool):')}
120
+ ${chalk.dim(' /melt-audit Run a project compliance audit')}
121
+ ${chalk.dim(' /melt-ux-audit Review UI against usability heuristics')}
122
+ ${chalk.dim(' /melt-security-audit Run a security posture audit across the platform')}
123
+ `);
95
124
  audit
96
125
  .command('submit')
97
126
  .description('submit an audit report from a markdown file')
@@ -117,7 +146,13 @@ audit
117
146
  .action(async (id, options) => {
118
147
  await auditViewCommand(id, options);
119
148
  });
120
- const plan = program.command('plan').description('submit and list plans');
149
+ const plan = program
150
+ .command('plan')
151
+ .description('submit and list plans')
152
+ .addHelpText('after', `
153
+ ${chalk.dim('Related skill (run in your AI coding tool):')}
154
+ ${chalk.dim(' /melt-plan Design an implementation approach before writing code')}
155
+ `);
121
156
  plan
122
157
  .command('submit')
123
158
  .description('submit or update a plan from a markdown file')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "4.29.0",
3
+ "version": "4.30.0",
4
4
  "description": "AI-first development tools for teams - set up AGENTS.md, Claude Code, Cursor, and OpenCode standards",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",