codeusage-cli 0.1.16 → 0.1.17
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.cjs +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -30282,7 +30282,7 @@ function calculateDelta(current, previous) {
|
|
|
30282
30282
|
}
|
|
30283
30283
|
|
|
30284
30284
|
// src/hooks/stop.ts
|
|
30285
|
-
var CLI_VERSION = "0.1.
|
|
30285
|
+
var CLI_VERSION = "0.1.17";
|
|
30286
30286
|
var hookStopCommand = new Command("stop").description("Handle AI coding tool stop hook (internal)").option("--dry-run", "Parse session but don't send to API").option("--provider <provider>", "Provider ID (claude_code or codex)").action(async (options) => {
|
|
30287
30287
|
if (!isConfigured()) {
|
|
30288
30288
|
return;
|
|
@@ -30452,7 +30452,7 @@ var hookNotificationCommand = new Command("notification").description("Handle AI
|
|
|
30452
30452
|
|
|
30453
30453
|
// src/index.ts
|
|
30454
30454
|
var program2 = new Command;
|
|
30455
|
-
program2.name("codeusage").description("CLI for Codeusage - AI coding tool intelligence platform").version("0.1.
|
|
30455
|
+
program2.name("codeusage").description("CLI for Codeusage - AI coding tool intelligence platform").version("0.1.17");
|
|
30456
30456
|
program2.addCommand(initCommand);
|
|
30457
30457
|
program2.addCommand(statusCommand);
|
|
30458
30458
|
program2.addCommand(projectCommand);
|