codeusage-cli 0.1.12 → 0.1.14

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.
Files changed (2) hide show
  1. package/dist/index.cjs +4 -4
  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.9";
30274
+ var CLI_VERSION = "0.1.14";
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;
@@ -30434,14 +30434,14 @@ var hookStopCommand = new Command("stop").description("Handle AI coding tool sto
30434
30434
  });
30435
30435
 
30436
30436
  // src/hooks/post-tool-use.ts
30437
- var hookPostToolUseCommand = new Command("post-tool-use").description("Handle Claude Code post-tool-use hook (internal)").action(async () => {});
30437
+ var hookPostToolUseCommand = new Command("post-tool-use").description("Handle AI coding tool post-tool-use hook (internal)").option("--provider <provider>", "Provider ID (claude_code or codex)").action(async () => {});
30438
30438
 
30439
30439
  // src/hooks/notification.ts
30440
- var hookNotificationCommand = new Command("notification").description("Handle Claude Code notification hook (internal)").action(async () => {});
30440
+ var hookNotificationCommand = new Command("notification").description("Handle AI coding tool notification hook (internal)").option("--provider <provider>", "Provider ID (claude_code or codex)").action(async () => {});
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.8");
30444
+ program2.name("codeusage").description("CLI for Codeusage - AI coding tool intelligence platform").version("0.1.13");
30445
30445
  program2.addCommand(initCommand);
30446
30446
  program2.addCommand(statusCommand);
30447
30447
  program2.addCommand(projectCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeusage-cli",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "CLI for Codeusage - AI coding tool intelligence platform",
5
5
  "author": "Hashim",
6
6
  "license": "MIT",