@agent-finops/core 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/dist/activitySnapshot.d.ts +49 -49
- package/dist/agentEconomicsReceipt.d.ts +44 -44
- package/dist/analyze.js +3 -1
- package/dist/cutList.js +1 -1
- package/dist/glance.d.ts +3 -1
- package/dist/glance.js +114 -72
- package/dist/insights.js +3 -1
- package/dist/modelPricing.d.ts +1 -1
- package/dist/modelPricing.js +4 -1
- package/dist/planMath.js +12 -7
- package/dist/providerConnectors.js +17 -1
- package/dist/sourceRegistry.js +90 -52
- package/package.json +1 -1
package/dist/sourceRegistry.js
CHANGED
|
@@ -13,9 +13,9 @@ export const ingestionLanes = [
|
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
15
|
id: "browser_account_ui",
|
|
16
|
-
label: "Browser Account UI",
|
|
16
|
+
label: "Browser Account UI (schema scaffold; ingestion unavailable)",
|
|
17
17
|
sourceTypes: ["browser_account"],
|
|
18
|
-
defaultFinancialEvidence: "
|
|
18
|
+
defaultFinancialEvidence: "missing"
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
id: "local_cli_tool_detection",
|
|
@@ -31,58 +31,79 @@ export const ingestionLanes = [
|
|
|
31
31
|
}
|
|
32
32
|
];
|
|
33
33
|
export const supportedSourceTypes = ingestionLanes.flatMap((lane) => lane.sourceTypes);
|
|
34
|
+
const browserAccountScaffoldMissingField = "browser-account ingestion is a schema scaffold and is not implemented";
|
|
34
35
|
export const providerCatalog = [
|
|
35
36
|
{
|
|
36
37
|
id: "openai",
|
|
37
38
|
label: "OpenAI / Codex account usage",
|
|
38
39
|
preferredSourceType: "provider_api",
|
|
39
40
|
preferredAccessMethod: "api",
|
|
40
|
-
verifiedFields: ["organization costs", "
|
|
41
|
-
missingFields: [
|
|
41
|
+
verifiedFields: ["organization costs", "completions usage by project, user, model, API key, and service tier"],
|
|
42
|
+
missingFields: [
|
|
43
|
+
"OpenAI Admin API key reference",
|
|
44
|
+
"non-completions usage families",
|
|
45
|
+
"ChatGPT/Codex workspace seats, credits, and final invoice settlement"
|
|
46
|
+
]
|
|
42
47
|
},
|
|
43
48
|
{
|
|
44
49
|
id: "anthropic",
|
|
45
50
|
label: "Anthropic / Claude / Claude Code",
|
|
46
51
|
preferredSourceType: "provider_api",
|
|
47
52
|
preferredAccessMethod: "api",
|
|
48
|
-
verifiedFields: ["organization cost report", "Claude Code
|
|
49
|
-
missingFields: [
|
|
50
|
-
|
|
53
|
+
verifiedFields: ["organization cost report", "Claude Code analytics by workspace and user"],
|
|
54
|
+
missingFields: [
|
|
55
|
+
"Anthropic Admin API key reference",
|
|
56
|
+
"Messages Usage API detail",
|
|
57
|
+
"Claude Enterprise Analytics and final invoice settlement"
|
|
58
|
+
]
|
|
51
59
|
},
|
|
52
60
|
{
|
|
53
61
|
id: "github-copilot",
|
|
54
62
|
label: "GitHub Copilot",
|
|
55
63
|
preferredSourceType: "provider_api",
|
|
56
64
|
preferredAccessMethod: "api",
|
|
57
|
-
verifiedFields: ["Copilot usage metrics", "seat
|
|
58
|
-
missingFields: [
|
|
59
|
-
|
|
65
|
+
verifiedFields: ["Copilot usage metrics", "seat assignments and reported plan types"],
|
|
66
|
+
missingFields: [
|
|
67
|
+
"GitHub admin token reference and organization or enterprise slug",
|
|
68
|
+
"AI-credit gross, discount, and net billing",
|
|
69
|
+
"license invoice settlement"
|
|
70
|
+
]
|
|
60
71
|
},
|
|
61
72
|
{
|
|
62
73
|
id: "codex",
|
|
63
74
|
label: "Codex / OpenAI coding tools",
|
|
64
75
|
preferredSourceType: "provider_api",
|
|
65
76
|
preferredAccessMethod: "api",
|
|
66
|
-
verifiedFields: ["OpenAI
|
|
67
|
-
missingFields: [
|
|
68
|
-
|
|
77
|
+
verifiedFields: ["OpenAI organization costs", "OpenAI completions usage"],
|
|
78
|
+
missingFields: [
|
|
79
|
+
"OpenAI Admin API key reference",
|
|
80
|
+
"ChatGPT/Codex workspace seats, credits, and subscription billing",
|
|
81
|
+
"workspace-to-local-project mapping"
|
|
82
|
+
]
|
|
69
83
|
},
|
|
70
84
|
{
|
|
71
85
|
id: "cursor",
|
|
72
86
|
label: "Cursor",
|
|
73
87
|
preferredSourceType: "provider_api",
|
|
74
88
|
preferredAccessMethod: "api",
|
|
75
|
-
verifiedFields: ["Cursor Admin API
|
|
76
|
-
missingFields: [
|
|
77
|
-
|
|
89
|
+
verifiedFields: ["Cursor Admin API team-member spend aggregate"],
|
|
90
|
+
missingFields: [
|
|
91
|
+
"Cursor team Admin API key reference",
|
|
92
|
+
"filtered usage-event detail and aggregate reconciliation",
|
|
93
|
+
"seat contract and final invoice settlement"
|
|
94
|
+
]
|
|
78
95
|
},
|
|
79
96
|
{
|
|
80
97
|
id: "gemini",
|
|
81
98
|
label: "Google Gemini",
|
|
82
99
|
preferredSourceType: "provider_api",
|
|
83
100
|
preferredAccessMethod: "api",
|
|
84
|
-
verifiedFields: [
|
|
85
|
-
missingFields: [
|
|
101
|
+
verifiedFields: [],
|
|
102
|
+
missingFields: [
|
|
103
|
+
"Google Cloud Billing export or approved billing API source",
|
|
104
|
+
"Gemini CLI authentication and billing mode",
|
|
105
|
+
"provider-reported billed money"
|
|
106
|
+
]
|
|
86
107
|
},
|
|
87
108
|
{
|
|
88
109
|
id: "langfuse",
|
|
@@ -136,35 +157,35 @@ export const providerCatalog = [
|
|
|
136
157
|
export const providerConnectorCatalog = [
|
|
137
158
|
{
|
|
138
159
|
provider: "openai",
|
|
139
|
-
preferredAuthMode: "
|
|
140
|
-
fallbackAuthModes: [
|
|
141
|
-
scopes: ["
|
|
160
|
+
preferredAuthMode: "api_token_ref",
|
|
161
|
+
fallbackAuthModes: [],
|
|
162
|
+
scopes: ["Organization Admin API usage read", "Organization Admin API costs read"],
|
|
142
163
|
tokenStorage: "local_reference_only",
|
|
143
|
-
setupHint: "
|
|
164
|
+
setupHint: "Use a local env reference to an OpenAI Organization Admin API key with usage and costs access; raw keys are never accepted on the command line."
|
|
144
165
|
},
|
|
145
166
|
{
|
|
146
167
|
provider: "anthropic",
|
|
147
|
-
preferredAuthMode: "
|
|
148
|
-
fallbackAuthModes: [
|
|
149
|
-
scopes: ["
|
|
168
|
+
preferredAuthMode: "api_token_ref",
|
|
169
|
+
fallbackAuthModes: [],
|
|
170
|
+
scopes: ["Claude Console Admin cost report read", "Claude Code analytics read"],
|
|
150
171
|
tokenStorage: "local_reference_only",
|
|
151
|
-
setupHint: "
|
|
172
|
+
setupHint: "Use a local env reference to a Claude Console organization Admin API key; Claude Enterprise Analytics requires a different key and is not implemented."
|
|
152
173
|
},
|
|
153
174
|
{
|
|
154
175
|
provider: "github-copilot",
|
|
155
|
-
preferredAuthMode: "
|
|
156
|
-
fallbackAuthModes: [
|
|
157
|
-
scopes: ["
|
|
176
|
+
preferredAuthMode: "api_token_ref",
|
|
177
|
+
fallbackAuthModes: [],
|
|
178
|
+
scopes: ["fine-grained Administration: read", "organization or enterprise billing access"],
|
|
158
179
|
tokenStorage: "local_reference_only",
|
|
159
|
-
setupHint: "
|
|
180
|
+
setupHint: "Use a local env reference to a GitHub token with read-only organization or enterprise Copilot metrics and seat access; AI-credit billing is not implemented."
|
|
160
181
|
},
|
|
161
182
|
{
|
|
162
183
|
provider: "cursor",
|
|
163
184
|
preferredAuthMode: "api_token_ref",
|
|
164
|
-
fallbackAuthModes: [
|
|
165
|
-
scopes: ["
|
|
185
|
+
fallbackAuthModes: [],
|
|
186
|
+
scopes: ["Cursor team Admin API spend read"],
|
|
166
187
|
tokenStorage: "local_reference_only",
|
|
167
|
-
setupHint: "Use Cursor Admin API key
|
|
188
|
+
setupHint: "Use a local env reference to a Cursor team Admin API key for the team spend aggregate; filtered usage-event and invoice reconciliation are not implemented."
|
|
168
189
|
}
|
|
169
190
|
];
|
|
170
191
|
export const defaultDeniedGlobs = [
|
|
@@ -215,6 +236,7 @@ export function addApprovedSource(registry, source, now = new Date()) {
|
|
|
215
236
|
if (source.readOnly === false) {
|
|
216
237
|
throw new Error("Approved source boundaries must remain read-only.");
|
|
217
238
|
}
|
|
239
|
+
const browserScaffold = source.type === "browser_account";
|
|
218
240
|
const nextSource = {
|
|
219
241
|
id: source.id,
|
|
220
242
|
type: source.type,
|
|
@@ -223,15 +245,17 @@ export function addApprovedSource(registry, source, now = new Date()) {
|
|
|
223
245
|
...(source.provider ? { provider: source.provider } : {}),
|
|
224
246
|
readOnly: true,
|
|
225
247
|
approvedAt: timestamp,
|
|
226
|
-
scope: source.scope ?? defaultScopeForSource(source.type),
|
|
248
|
+
scope: browserScaffold ? defaultScopeForSource(source.type) : (source.scope ?? defaultScopeForSource(source.type)),
|
|
227
249
|
lane: source.lane ?? laneForSourceType(source.type),
|
|
228
250
|
accessMethod: source.accessMethod ?? accessMethodForSourceType(source.type),
|
|
229
251
|
boundaryApproval: source.boundaryApproval ?? "approved",
|
|
230
|
-
validationCoverage: source.validationCoverage ?? "untested",
|
|
231
|
-
financialEvidence: source.type === "local_folder" ? "missing" : (source.financialEvidence ?? "missing"),
|
|
232
|
-
fieldsVerified: source.fieldsVerified ?? [],
|
|
233
|
-
fieldsEstimated: source.fieldsEstimated ?? [],
|
|
234
|
-
fieldsMissing:
|
|
252
|
+
validationCoverage: browserScaffold ? "untested" : (source.validationCoverage ?? "untested"),
|
|
253
|
+
financialEvidence: source.type === "local_folder" || browserScaffold ? "missing" : (source.financialEvidence ?? "missing"),
|
|
254
|
+
fieldsVerified: browserScaffold ? [] : (source.fieldsVerified ?? []),
|
|
255
|
+
fieldsEstimated: browserScaffold ? [] : (source.fieldsEstimated ?? []),
|
|
256
|
+
fieldsMissing: browserScaffold
|
|
257
|
+
? Array.from(new Set([...(source.fieldsMissing ?? []), browserAccountScaffoldMissingField]))
|
|
258
|
+
: (source.fieldsMissing ?? []),
|
|
235
259
|
authMode: source.authMode,
|
|
236
260
|
authScopes: source.authScopes,
|
|
237
261
|
tokenStorage: source.tokenStorage,
|
|
@@ -250,6 +274,7 @@ export function createProviderConnectorStub(provider, type = providerCatalog.fin
|
|
|
250
274
|
const catalogEntry = providerCatalog.find((entry) => entry.id === provider);
|
|
251
275
|
const connectorEntry = providerConnectorCatalog.find((entry) => entry.provider === provider);
|
|
252
276
|
const id = slugifySourceId(`${provider}-${type}`);
|
|
277
|
+
const browserScaffold = type === "browser_account";
|
|
253
278
|
return {
|
|
254
279
|
id,
|
|
255
280
|
type,
|
|
@@ -265,9 +290,14 @@ export function createProviderConnectorStub(provider, type = providerCatalog.fin
|
|
|
265
290
|
// A successful provider result promotes this axis explicitly.
|
|
266
291
|
validationCoverage: "untested",
|
|
267
292
|
financialEvidence: "missing",
|
|
268
|
-
fieldsVerified: catalogEntry?.verifiedFields ?? [],
|
|
293
|
+
fieldsVerified: browserScaffold ? [] : (catalogEntry?.verifiedFields ?? []),
|
|
269
294
|
fieldsEstimated: [],
|
|
270
|
-
fieldsMissing:
|
|
295
|
+
fieldsMissing: browserScaffold
|
|
296
|
+
? Array.from(new Set([
|
|
297
|
+
...(catalogEntry?.missingFields ?? []),
|
|
298
|
+
browserAccountScaffoldMissingField
|
|
299
|
+
]))
|
|
300
|
+
: (catalogEntry?.missingFields ?? ["approved account/API/export source"]),
|
|
271
301
|
authMode: authModeForConnectorType(type, connectorEntry),
|
|
272
302
|
authScopes: connectorEntry?.scopes ?? [],
|
|
273
303
|
tokenStorage: tokenStorageForConnectorType(type, connectorEntry)
|
|
@@ -377,6 +407,7 @@ function normalizeApprovedSource(value) {
|
|
|
377
407
|
: isFinancialEvidence(value.verification)
|
|
378
408
|
? value.verification
|
|
379
409
|
: "missing";
|
|
410
|
+
const browserScaffold = value.type === "browser_account";
|
|
380
411
|
return {
|
|
381
412
|
id: value.id,
|
|
382
413
|
type: value.type,
|
|
@@ -385,17 +416,21 @@ function normalizeApprovedSource(value) {
|
|
|
385
416
|
...(provider ? { provider } : {}),
|
|
386
417
|
readOnly: true,
|
|
387
418
|
approvedAt: value.approvedAt,
|
|
388
|
-
scope: value.scope,
|
|
419
|
+
scope: browserScaffold ? defaultScopeForSource(value.type) : value.scope,
|
|
389
420
|
lane: value.lane,
|
|
390
421
|
accessMethod: value.accessMethod,
|
|
391
422
|
boundaryApproval: "approved",
|
|
392
|
-
validationCoverage:
|
|
393
|
-
?
|
|
394
|
-
:
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
423
|
+
validationCoverage: browserScaffold
|
|
424
|
+
? "untested"
|
|
425
|
+
: isValidationCoverage(value.validationCoverage)
|
|
426
|
+
? value.validationCoverage
|
|
427
|
+
: "untested",
|
|
428
|
+
financialEvidence: value.type === "local_folder" || browserScaffold ? "missing" : migratedEvidence,
|
|
429
|
+
fieldsVerified: browserScaffold ? [] : [...value.fieldsVerified],
|
|
430
|
+
fieldsEstimated: browserScaffold ? [] : [...value.fieldsEstimated],
|
|
431
|
+
fieldsMissing: browserScaffold
|
|
432
|
+
? Array.from(new Set([...value.fieldsMissing, browserAccountScaffoldMissingField]))
|
|
433
|
+
: [...value.fieldsMissing],
|
|
399
434
|
...(authMode ? { authMode } : {}),
|
|
400
435
|
...(value.authScopes ? { authScopes: [...value.authScopes] } : {}),
|
|
401
436
|
...(tokenStorage ? { tokenStorage } : {}),
|
|
@@ -443,7 +478,7 @@ export function buildMissingSourcePrompts(signals, registry) {
|
|
|
443
478
|
prompts.push({
|
|
444
479
|
provider,
|
|
445
480
|
status: "detected_unverified",
|
|
446
|
-
reason: `${provider} was detected locally, but no approved
|
|
481
|
+
reason: `${provider} was detected locally, but no approved implemented source has current financial evidence. Connector validation is reported separately.`,
|
|
447
482
|
detectedEvidence: detectedSignals.map((signal) => signal.evidence),
|
|
448
483
|
suggestedConnector: `connect ${provider} --type ${preferredType}`,
|
|
449
484
|
suggestedSourceTypes
|
|
@@ -490,7 +525,10 @@ function hasCurrentProviderFinancialEvidence(registry, provider) {
|
|
|
490
525
|
return source.boundaryApproval === "approved" &&
|
|
491
526
|
source.validationCoverage !== "failed" &&
|
|
492
527
|
source.financialEvidence !== "missing" &&
|
|
493
|
-
source.type !== "local_tool_detection"
|
|
528
|
+
source.type !== "local_tool_detection" &&
|
|
529
|
+
// browser_account is reserved in the schema but has no ingestion
|
|
530
|
+
// implementation. Repository state cannot promote the scaffold.
|
|
531
|
+
source.type !== "browser_account";
|
|
494
532
|
});
|
|
495
533
|
}
|
|
496
534
|
function validationCoverageForSource(provider, type) {
|
|
@@ -523,7 +561,7 @@ function defaultScopeForSource(type) {
|
|
|
523
561
|
return "Read-only provider API/account usage source. Store token references only; no raw secrets. No billing changes. No cloud upload.";
|
|
524
562
|
}
|
|
525
563
|
if (type === "browser_account") {
|
|
526
|
-
return "
|
|
564
|
+
return "Schema scaffold only. Browser-account ingestion is not implemented and cannot produce financial evidence or satisfy a missing-source prompt.";
|
|
527
565
|
}
|
|
528
566
|
if (type === "local_tool_detection") {
|
|
529
567
|
return "Read-only local CLI/tool detection path. Detection is not official provider-reported cost; connect an account API or export to add that evidence.";
|