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 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 https://costlayers.com/agentspend-cli-0.8.0.tgz start --email you@example.com
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.0";
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 https://costlayers.com/agentspend-cli-${VERSION}.tgz start -- codex\n`);
687
- process.stdout.write(` View savings: npx -y https://costlayers.com/agentspend-cli-${VERSION}.tgz gateway report\n`);
688
- process.stdout.write(` Dashboard: npx -y https://costlayers.com/agentspend-cli-${VERSION}.tgz dashboard\n`);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "costlayers",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "CostLayers cost control for AI coding agents. Build compact repo context packs, gateway reports, and savings dashboards.",
5
5
  "bin": {
6
6
  "agentspend": "bin/agentspend.js",