@meltstudio/meltctl 4.29.0 → 4.29.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/meltctl",
3
- "version": "4.29.0",
3
+ "version": "4.29.1",
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",