codeusage-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/README.md +14 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,19 +1,29 @@
|
|
|
1
|
-
#
|
|
1
|
+
# CodeUsage CLI
|
|
2
2
|
|
|
3
3
|
Track your team's AI coding tool usage with zero friction.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g
|
|
8
|
+
npm install -g codeusage-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Setup
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
codeusage init
|
|
9
15
|
```
|
|
10
16
|
|
|
11
17
|
## Uninstall
|
|
12
18
|
|
|
13
19
|
```bash
|
|
14
|
-
npm uninstall -g
|
|
20
|
+
npm uninstall -g codeusage-cli
|
|
15
21
|
```
|
|
16
22
|
|
|
23
|
+
## Documentation
|
|
24
|
+
|
|
25
|
+
For full documentation, visit [https://codeusage.dev/docs](https://codeusage.dev/docs)
|
|
26
|
+
|
|
17
27
|
## License
|
|
18
28
|
|
|
19
29
|
MIT
|