codeusage-cli 0.1.19 → 0.1.21
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 +3 -2
package/dist/index.cjs
CHANGED
|
@@ -30288,7 +30288,7 @@ function calculateDelta(current, previous) {
|
|
|
30288
30288
|
}
|
|
30289
30289
|
|
|
30290
30290
|
// src/hooks/stop.ts
|
|
30291
|
-
var CLI_VERSION = "0.1.
|
|
30291
|
+
var CLI_VERSION = "0.1.21";
|
|
30292
30292
|
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) => {
|
|
30293
30293
|
if (!isConfigured()) {
|
|
30294
30294
|
return;
|
|
@@ -30458,7 +30458,7 @@ var hookNotificationCommand = new Command("notification").description("Handle AI
|
|
|
30458
30458
|
|
|
30459
30459
|
// src/index.ts
|
|
30460
30460
|
var program2 = new Command;
|
|
30461
|
-
program2.name("codeusage").description("CLI for Codeusage - AI coding tool intelligence platform").version("0.1.
|
|
30461
|
+
program2.name("codeusage").description("CLI for Codeusage - AI coding tool intelligence platform").version("0.1.21");
|
|
30462
30462
|
program2.addCommand(initCommand);
|
|
30463
30463
|
program2.addCommand(statusCommand);
|
|
30464
30464
|
program2.addCommand(projectCommand);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeusage-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.21",
|
|
4
4
|
"description": "CLI for Codeusage - AI coding tool intelligence platform",
|
|
5
5
|
"author": "Hashim",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
},
|
|
11
11
|
"main": "./dist/index.cjs",
|
|
12
12
|
"files": [
|
|
13
|
-
"dist"
|
|
13
|
+
"dist",
|
|
14
|
+
"README.md"
|
|
14
15
|
],
|
|
15
16
|
"scripts": {
|
|
16
17
|
"dev": "tsx watch src/index.ts",
|