getculpa 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.
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # Culpa
2
+
3
+ **LLM spend forensics and forecasting, local-first.**
4
+
5
+ ## Coming soon
6
+
7
+ This package reserves the name. It prints a notice and does nothing else —
8
+ no network calls, no files written.
9
+
10
+ ```bash
11
+ npx getculpa
12
+ ```
13
+
14
+ Culpa answers where your LLM spend actually went: which feature, which
15
+ customer, which conversation — priced from a versioned price book rather than
16
+ from provider-reported totals, with the money kept in exact decimals.
17
+
18
+ More at **[getculpa.com](https://getculpa.com)**.
package/bin/culpa.js ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ // Name-claim placeholder. It prints one message and exits 0 — deliberately
3
+ // no flags, no network, no files touched. The real CLI (culpa/cli) replaces
4
+ // this package's contents at its own release; until then anyone who runs
5
+ // `npx getculpa` gets an honest answer instead of a 404.
6
+
7
+ console.log("Culpa — LLM spend forensics and forecasting, local-first.");
8
+ console.log("");
9
+ console.log(" Coming soon.");
10
+ console.log("");
11
+ console.log(" https://getculpa.com");
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // Placeholder entry point, so `require("getculpa")` resolves instead of
2
+ // throwing MODULE_NOT_FOUND. The real API is not published yet.
3
+ module.exports = { comingSoon: true };
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "getculpa",
3
+ "version": "0.0.1",
4
+ "description": "Culpa — LLM spend forensics and forecasting, local-first. Placeholder: the CLI is coming soon.",
5
+ "bin": {
6
+ "culpa": "bin/culpa.js"
7
+ },
8
+ "main": "index.js",
9
+ "type": "commonjs",
10
+ "files": [
11
+ "bin/culpa.js",
12
+ "index.js",
13
+ "README.md"
14
+ ],
15
+ "keywords": [
16
+ "llm",
17
+ "cost",
18
+ "spend",
19
+ "forecasting",
20
+ "openai",
21
+ "anthropic",
22
+ "observability"
23
+ ],
24
+ "homepage": "https://getculpa.com",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/MyaigiDev/culpa.git"
28
+ },
29
+ "license": "UNLICENSED",
30
+ "engines": {
31
+ "node": ">=20"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ }
36
+ }