codeusage-cli 0.1.14 → 0.1.15
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
|
@@ -30271,7 +30271,7 @@ function calculateDelta(current, previous) {
|
|
|
30271
30271
|
}
|
|
30272
30272
|
|
|
30273
30273
|
// src/hooks/stop.ts
|
|
30274
|
-
var CLI_VERSION = "0.1.
|
|
30274
|
+
var CLI_VERSION = "0.1.15";
|
|
30275
30275
|
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) => {
|
|
30276
30276
|
if (!isConfigured()) {
|
|
30277
30277
|
return;
|
|
@@ -30441,7 +30441,7 @@ var hookNotificationCommand = new Command("notification").description("Handle AI
|
|
|
30441
30441
|
|
|
30442
30442
|
// src/index.ts
|
|
30443
30443
|
var program2 = new Command;
|
|
30444
|
-
program2.name("codeusage").description("CLI for Codeusage - AI coding tool intelligence platform").version("0.1.
|
|
30444
|
+
program2.name("codeusage").description("CLI for Codeusage - AI coding tool intelligence platform").version("0.1.15");
|
|
30445
30445
|
program2.addCommand(initCommand);
|
|
30446
30446
|
program2.addCommand(statusCommand);
|
|
30447
30447
|
program2.addCommand(projectCommand);
|