margin-cost
Your invoice shows the bill. It rarely shows which vendor earned it.
margin-cost divides spend by outcomes, per vendor, from a file on your disk.
No account, no signup, no backend. Nothing leaves the machine.
Why cost per outcome
Cost per token tells you what you spent. It says nothing about what the spend bought. Two agents can burn the same tokens and resolve very different numbers of tickets. The question a budget owner actually has is "which of my vendors is worth its invoice?", and the honest denominator for that is the outcome, not the token.
That number works even on vendors that expose nothing. Glean bills per seat and you will never see its tokens, but you know what it produced, so you can still divide its invoice by the outcomes it delivered.
Install
pip install margin-cost
Or run it straight from a clone, since it has no dependencies:
python -m margin_cost estate.json
Use
Write a corpus file describing your vendors, then point the tool at it:
margin-cost estate.json
margin-cost estate.json --json # machine-readable
margin-cost --example # print a sample corpus to edit
Output:
COST PER OUTCOME · measured locally, nothing sent anywhere
vendor tier cost/outcome spend passed retry cache
--------------------------------------------------------------------------------------------
support-agent (self-hosted) measured $0.0182 $0.04 2 32.7% 14.0%
Glean allocated $4.0323 $5,000.00 1240 — —
Zapier uncovered NOT MEASURED $300.00 0 — —
COVERAGE · a vendor is only 'measured' if you gave it the calls
measured $0.04 real tokens, real per-call cost
allocated $5,000.00 invoice ÷ outcomes
uncovered $300.00 spend seen, no outcomes — NOT priced
------------------------
total $5,300.04 94.3% of spend has a cost per outcome
The three tiers, and why the tool will not overstate them
Spend cannot always be measured to the same depth. The tool names the depth it had rather than pretending to more:
- measured — you gave it the per-call rows, so it sees real tokens and real per-call cost. Full metrics: cost per outcome, retry tax, cache efficiency, token yield.
- allocated — you gave it an invoice total and an outcome count, so it divides. A real cost per outcome, coarser than metered, and the only per-token rates it can honestly show are none.
- uncovered — you gave it spend and no outcomes. It reports the money and says the per-outcome cost is not measured.
The tier is derived from the evidence in your file. You cannot mark a vendor
measured by writing it in the JSON; only per-call rows earn that. A cost per
outcome with no data behind it prints NOT MEASURED, never a flattering zero.
What it does not do
It measures. It does not act. There is no routing, no model swapping, no "we will cut this for you." That line is deliberate: measuring your spend is something you should be able to do yourself, for free, without trusting anyone.
Corpus format
A JSON object with a vendors list. Each vendor is one of three shapes:
{
"vendors": [
{
"name": "support-agent (self-hosted)",
"calls": [
{"cost_usd": 0.0121, "input_tokens": 820, "output_tokens": 190,
"cache_read_tokens": 400, "is_retry": false, "outcome": "pass"}
]
},
{
"name": "Glean",
"invoice_usd": 5000.0,
"outcomes": {"passed": 1240, "total": 1500}
},
{
"name": "Zapier",
"invoice_usd": 300.0
}
]
}
- A vendor with
callsis measured. Each call needscost_usd; tokens, the retry flag, and thepass/failoutcome are optional. An outcome that is neitherpassnorfailis refused, not guessed. - A vendor with
invoice_usdand a positiveoutcomes.passedis allocated. - A vendor with
invoice_usdand no outcome count is uncovered.
Invoices as CSV
Invoices usually arrive as a spreadsheet export, so a CSV works directly:
margin-cost invoices.csv
vendor,invoice_usd,passed,total
Glean,5000.00,1240,1500
Siena,2200.00,860,900
Zapier,300.00,,
Headers are matched loosely (vendor/name/service, invoice_usd/spend/cost,
passed/resolved, total). A $ and thousands commas in the spend column are
fine. A CSV is the invoice path, so every row is allocated or uncovered; the
measured tier needs per-call rows, which are JSON.
License
MIT.
Release files for margin-cost 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| margin_cost-0.1.0.tar.gz | 15.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| margin_cost-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 27.6 kB
Release files / margin_cost-0.1.0.tar.gz
| Download URL | margin_cost-0.1.0.tar.gz |
|---|---|
| Size | 15.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d56b641c617761b019fdb00c56361a8fbcc4de18c29f726fa7b5443ed18724c7
|
|
BLAKE2b-256 checksum How to use checksums |
928cd2de563863b415ae489819ece049d551868259d9cfa2bd802bfeab807513
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.11.0
|
Release files / margin_cost-0.1.0-py3-none-any.whl
| Download URL | margin_cost-0.1.0-py3-none-any.whl |
|---|---|
| Size | 12.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
733dcf79847587cf04a5dc673b74faeaf09e48e13a0854d561bde133679c63e1
|
|
BLAKE2b-256 checksum How to use checksums |
e2ed0750dcef7870ebeaeeece2aab626a7d5cbf23285c34e4656ef38e61871b7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.11.0
|