@meltstudio/meltctl 4.53.0 → 4.55.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.
- package/dist/index.js +13 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var CLI_VERSION;
|
|
|
14
14
|
var init_version = __esm({
|
|
15
15
|
"src/utils/version.ts"() {
|
|
16
16
|
"use strict";
|
|
17
|
-
CLI_VERSION = "4.
|
|
17
|
+
CLI_VERSION = "4.55.0";
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
20
|
|
|
@@ -14446,6 +14446,7 @@ var auditFindingSchema = external_exports.object({
|
|
|
14446
14446
|
repository: external_exports.string(),
|
|
14447
14447
|
project: external_exports.string(),
|
|
14448
14448
|
auditType: external_exports.string(),
|
|
14449
|
+
catalogCode: external_exports.string().nullable(),
|
|
14449
14450
|
category: external_exports.string(),
|
|
14450
14451
|
title: external_exports.string(),
|
|
14451
14452
|
currentStatus: external_exports.enum(["pass", "warning", "missing", "na"]),
|
|
@@ -16045,6 +16046,14 @@ ${chalk16.dim(" /melt-ux-audit Review UI against usability heuristics")
|
|
|
16045
16046
|
${chalk16.dim(" /melt-security-audit Run a security posture audit across the platform")}
|
|
16046
16047
|
${chalk16.dim(" /melt-update Update Melt skills to the latest version")}
|
|
16047
16048
|
${chalk16.dim(" /melt-help Answer questions about the development playbook")}
|
|
16049
|
+
|
|
16050
|
+
${chalk16.bold("Admin Commands")} ${chalk16.dim("(used by skills and team managers):")}
|
|
16051
|
+
${chalk16.dim(" audit submit [file] Submit an audit report")}
|
|
16052
|
+
${chalk16.dim(" audit list List audits (managers only)")}
|
|
16053
|
+
${chalk16.dim(" audit view <id> View a specific audit (managers only)")}
|
|
16054
|
+
${chalk16.dim(" plan submit [file] Submit or update a plan")}
|
|
16055
|
+
${chalk16.dim(" plan list List plans (managers only)")}
|
|
16056
|
+
${chalk16.dim(" event track --skill Track skill usage (called by skills automatically)")}
|
|
16048
16057
|
`
|
|
16049
16058
|
).hook("preAction", async () => {
|
|
16050
16059
|
await checkAndEnforceUpdate();
|
|
@@ -16097,7 +16106,7 @@ program.command("feedback").description("send feedback and coins to a teammate")
|
|
|
16097
16106
|
program.command("coins").description("check your coin balance or the team leaderboard").option("--leaderboard", "show the team leaderboard").action(async (options) => {
|
|
16098
16107
|
await coinsCommand(options);
|
|
16099
16108
|
});
|
|
16100
|
-
var audit = program.command("audit").description("submit and list audits").addHelpText(
|
|
16109
|
+
var audit = program.command("audit", { hidden: true }).description("submit and list audits").addHelpText(
|
|
16101
16110
|
"after",
|
|
16102
16111
|
`
|
|
16103
16112
|
${chalk16.dim("Related skills (run in your AI coding tool):")}
|
|
@@ -16115,7 +16124,7 @@ audit.command("list").description("list submitted audits (Team Managers only)").
|
|
|
16115
16124
|
audit.command("view").description("view a submitted audit by ID (Team Managers only)").argument("<id>", "audit ID").option("-o, --output <file>", "save to file instead of printing").action(async (id, options) => {
|
|
16116
16125
|
await auditViewCommand(id, options);
|
|
16117
16126
|
});
|
|
16118
|
-
var plan = program.command("plan").description("submit and list plans").addHelpText(
|
|
16127
|
+
var plan = program.command("plan", { hidden: true }).description("submit and list plans").addHelpText(
|
|
16119
16128
|
"after",
|
|
16120
16129
|
`
|
|
16121
16130
|
${chalk16.dim("Related skill (run in your AI coding tool):")}
|
|
@@ -16128,7 +16137,7 @@ plan.command("submit").description("submit or update a plan from a markdown file
|
|
|
16128
16137
|
plan.command("list").description("list submitted plans (Team Managers only)").option("--repository <repo>", "filter by repository (owner/repo)").option("--author <email>", "filter by author email").option("--limit <n>", "max results (default 50, max 200)").action(async (options) => {
|
|
16129
16138
|
await planListCommand(options);
|
|
16130
16139
|
});
|
|
16131
|
-
var event = program.command("event").description("manage analytics events");
|
|
16140
|
+
var event = program.command("event", { hidden: true }).description("manage analytics events");
|
|
16132
16141
|
event.command("track").description("track a skill usage event").requiredOption("--skill <name>", "skill name (e.g. plan, audit, review)").action(async (options) => {
|
|
16133
16142
|
await eventTrackCommand(options);
|
|
16134
16143
|
});
|
package/package.json
CHANGED