@xerg/cli 0.0.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +21 -0
  3. package/bin/xerg.js +12 -0
  4. package/package.json +20 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Xerg
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # ⚡ xerg
2
+
3
+ **Unit economics engine for AI agents. Know what your AI is worth.**
4
+
5
+ Xerg answers the question no existing tool answers well: *"What is the cost per outcome of my AI agents, and how do I improve it?"*
6
+
7
+ ## Coming Soon
8
+
9
+ - `xerg audit` — Waste intelligence report from your AI agent logs
10
+ - `xerg track` — Tag outcomes to compute cost per outcome
11
+ - SDK wrapper for OpenAI, Anthropic, Google, and more
12
+ - Team dashboard at xerg.ai
13
+
14
+ ## Links
15
+
16
+ - Website: [xerg.ai](https://xerg.ai)
17
+ - GitHub: [github.com/xerg/xerg](https://github.com/xerg/xerg)
18
+
19
+ ## License
20
+
21
+ MIT
package/bin/xerg.js ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log(`
4
+ ⚡ xerg v0.0.1
5
+
6
+ Unit economics engine for AI agents.
7
+ Know what your AI is worth.
8
+
9
+ Coming soon: xerg audit, xerg track, and more.
10
+
11
+ https://xerg.ai
12
+ `);
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@xerg/cli",
3
+ "version": "0.0.1",
4
+ "description": "Unit economics engine for AI agents. Know what your AI is worth.",
5
+ "keywords": ["ai", "llm", "cost", "unit-economics", "agents", "finops", "opentelemetry"],
6
+ "homepage": "https://xerg.ai",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/xerg/xerg"
10
+ },
11
+ "license": "MIT",
12
+ "author": "Xerg <jason@xerg.ai>",
13
+ "bin": {
14
+ "xerg": "./bin/xerg.js"
15
+ },
16
+ "files": ["bin", "README.md", "LICENSE"],
17
+ "engines": {
18
+ "node": ">=18"
19
+ }
20
+ }