@inteeka/task-cli 0.1.9 → 0.1.10
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/cli.js +7 -2
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2208,7 +2208,12 @@ var FIX_PROMPT_JSON_SCHEMA = {
|
|
|
2208
2208
|
}
|
|
2209
2209
|
},
|
|
2210
2210
|
risk_notes: { type: "string", maxLength: 2e3 },
|
|
2211
|
-
confidence: { type: "string", enum: ["low", "medium", "high"] }
|
|
2211
|
+
confidence: { type: "string", enum: ["low", "medium", "high"] },
|
|
2212
|
+
// Phase 3 — explicit reasoning for the confidence rating. Required at
|
|
2213
|
+
// ≥20 chars for low/medium ratings; the dashboard's Zod refine() rejects
|
|
2214
|
+
// anything shorter on `/submit`. Optional on `high` so the model can
|
|
2215
|
+
// omit it when the evidence is overwhelming.
|
|
2216
|
+
confidence_reason: { type: "string", maxLength: 1500 }
|
|
2212
2217
|
}
|
|
2213
2218
|
};
|
|
2214
2219
|
var LlmGenerationError = class extends Error {
|
|
@@ -3762,7 +3767,7 @@ function checkBinary(name, command) {
|
|
|
3762
3767
|
}
|
|
3763
3768
|
|
|
3764
3769
|
// src/commands/version.ts
|
|
3765
|
-
var CLI_VERSION = true ? "0.1.
|
|
3770
|
+
var CLI_VERSION = true ? "0.1.10" : "0.0.0-dev";
|
|
3766
3771
|
function registerVersion(program2) {
|
|
3767
3772
|
program2.command("version").description("Print the CLI version").action(() => {
|
|
3768
3773
|
process.stdout.write(CLI_VERSION + "\n");
|