llm-usage-metrics 0.5.2 → 0.6.0
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 +8 -0
- package/dist/index.js +459 -107
- package/dist/index.js.map +1 -1
- package/package.json +24 -18
package/README.md
CHANGED
|
@@ -98,6 +98,8 @@ llm-usage monthly --per-model-columns
|
|
|
98
98
|
llm-usage monthly --share
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
+
Usage tables rank per-period model breakdowns by total tokens so the dominant models appear first in terminal and Markdown output.
|
|
102
|
+
|
|
101
103
|
### Trends
|
|
102
104
|
|
|
103
105
|
```bash
|
|
@@ -346,9 +348,15 @@ pnpm cli daily
|
|
|
346
348
|
- **[Optimize](https://ayagmar.github.io/llm-usage-metrics/optimize/)** — Counterfactual candidate-model pricing semantics
|
|
347
349
|
- **[Data Sources](https://ayagmar.github.io/llm-usage-metrics/sources/)** — Source configuration
|
|
348
350
|
- **[Configuration](https://ayagmar.github.io/llm-usage-metrics/configuration/)** — Environment variables
|
|
351
|
+
- **[Security](https://ayagmar.github.io/llm-usage-metrics/security/)** — Current security controls, dependency hygiene, and contributor steps
|
|
349
352
|
- **[Benchmarks](https://ayagmar.github.io/llm-usage-metrics/benchmarks/)** — Production benchmark methodology and results
|
|
350
353
|
- **[Architecture](https://ayagmar.github.io/llm-usage-metrics/architecture/)** — Technical overview
|
|
351
354
|
|
|
355
|
+
## 🔐 Security
|
|
356
|
+
|
|
357
|
+
Current repo protections include exact direct dependency pins, frozen-lockfile installs in CI, committed lockfile integrity hashes, SHA-pinned GitHub Actions, Dependabot for dependency and workflow updates, dedicated security workflows (`pnpm audit`, Dependency Review, and CodeQL), and OIDC-based npm trusted publishing.
|
|
358
|
+
See the full security guide: **[Security](https://ayagmar.github.io/llm-usage-metrics/security/)**.
|
|
359
|
+
|
|
352
360
|
## 🤝 Contributing
|
|
353
361
|
|
|
354
362
|
Contributions are welcome! See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.
|