costlayers 0.8.0 → 0.8.1
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 +1 -1
- package/bin/agentspend.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ CostLayers helps teams reduce wasted AI coding-agent spend by creating a compact
|
|
|
7
7
|
Preview from the live server:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npx -y
|
|
10
|
+
npx -y costlayers start --email you@example.com
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
After npm publish, the intended short command is:
|
package/bin/agentspend.js
CHANGED
|
@@ -8,7 +8,7 @@ const http = require("http");
|
|
|
8
8
|
const https = require("https");
|
|
9
9
|
const { spawnSync } = require("child_process");
|
|
10
10
|
|
|
11
|
-
const VERSION = "0.8.
|
|
11
|
+
const VERSION = "0.8.1";
|
|
12
12
|
const DEFAULT_EXCLUDES = new Set([
|
|
13
13
|
".git",
|
|
14
14
|
".hg",
|
|
@@ -683,9 +683,9 @@ async function start(repo, args, argv) {
|
|
|
683
683
|
}
|
|
684
684
|
process.stdout.write(`\nNext options:\n`);
|
|
685
685
|
process.stdout.write(` Use gateway URL in your model client: ${result.base_url}\n`);
|
|
686
|
-
process.stdout.write(` Or run an agent: npx -y
|
|
687
|
-
process.stdout.write(` View savings: npx -y
|
|
688
|
-
process.stdout.write(` Dashboard: npx -y
|
|
686
|
+
process.stdout.write(` Or run an agent: npx -y costlayers start -- codex\n`);
|
|
687
|
+
process.stdout.write(` View savings: npx -y costlayers gateway report\n`);
|
|
688
|
+
process.stdout.write(` Dashboard: npx -y costlayers dashboard\n`);
|
|
689
689
|
}
|
|
690
690
|
|
|
691
691
|
function doctor() {
|
package/package.json
CHANGED