relayburn 0.34.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/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+
3
+ All notable changes to `relayburn` will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ### Added
11
+
12
+ - Initial release. Thin wrapper around [`@relayburn/cli`](https://www.npmjs.com/package/@relayburn/cli) — installing `relayburn` globally exposes the same `burn` command. Lets users `npm i -g relayburn` without needing to know the scoped package name.
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # relayburn
2
+
3
+ Install the [`burn`](https://github.com/AgentWorkforce/burn) CLI globally:
4
+
5
+ ```sh
6
+ npm i -g relayburn
7
+ ```
8
+
9
+ This is a thin wrapper that depends on [`@relayburn/cli`](https://www.npmjs.com/package/@relayburn/cli) and exposes the `burn` command. Both names produce the same binary; pick whichever you find easier to type.
10
+
11
+ ```sh
12
+ burn --help
13
+ burn summary --since 7d
14
+ burn limits --watch
15
+ ```
16
+
17
+ See the project [README](https://github.com/AgentWorkforce/burn#readme) for full documentation.
package/bin/burn.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import '@relayburn/cli/dist/cli.js';
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "relayburn",
3
+ "version": "0.34.0",
4
+ "description": "Token usage & cost attribution for agent CLIs (installs the `burn` command)",
5
+ "type": "module",
6
+ "bin": {
7
+ "burn": "./bin/burn.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md",
12
+ "CHANGELOG.md",
13
+ "package.json"
14
+ ],
15
+ "engines": {
16
+ "node": ">=22"
17
+ },
18
+ "dependencies": {
19
+ "@relayburn/cli": "0.34.0"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/AgentWorkforce/burn",
24
+ "directory": "packages/relayburn"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "scripts": {
30
+ "build": "chmod +x bin/burn.js"
31
+ }
32
+ }