Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Generate and retrieve usage reports for billing, analytics, and reconciliation. This skill provides JavaScript SDK examples.
.claude/skills/team-telnyx-telnyx-account-reports-javascript/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 327% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 358% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 241% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 445% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 681% | 0% |
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
bashnpm install telnyx@6.74.2
javascriptimport Telnyx from 'telnyx'; const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted });
All examples below assume client is already initialized as shown above.
All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:
javascripttry { const result = await client.messages.send({ to: '+13125550001', from: '+13125550002', text: 'Hello' }); } catch (err) { if (err instanceof Telnyx.APIConnectionError) { console.error('Network error — check connectivity and retry'); } else if (err instanceof Telnyx.RateLimitError) { // 429: rate limited — wait and retry with exponential backoff const retryAfter = err.headers?.['retry-after'] || 1; await new Promise(r => setTimeout(r, retryAfter * 1000)); } else if (err instanceof Telnyx.APIError) { console.error(`API error ${err.status}: ${err.message}`); if (err.status === 422) { console.error('Validation error — check required fields and formats'); } } }
Common error codes: 401 invalid API key, 403 insufficient permissions, 404 resource not found, 422 validation error (check field formats), 429 rate limited (retry with exponential backoff).
for await (const item of result) { ... } to iterate through all pages automatically.Filters call events by given filter parameters. Events are ordered by occurred_at. If filter for leg_id or application_session_id is not present, it only filters events from the last 24 hours.
GET /call_events
javascript// Automatically fetches more pages as needed. for await (const callEventListResponse of client.callEvents.list()) { console.log(callEventListResponse.call_leg_id); }
Returns: call_leg_id (string), call_session_id (string), event_timestamp (string), metadata (object), name (string), record_type (enum: call_event), type (enum: command, webhook)
POST /ledger_billing_group_reports
Optional: month (integer), year (integer)
javascriptconst ledgerBillingGroupReport = await client.ledgerBillingGroupReports.create({ month: 10, year: 2019, }); console.log(ledgerBillingGroupReport.data);
Returns: created_at (date-time), id (uuid), organization_id (uuid), record_type (enum: ledger_billing_group_report), report_url (uri), status (enum: pending, complete, failed, deleted), updated_at (date-time)
GET /ledger_billing_group_reports/{id}
javascriptconst ledgerBillingGroupReport = await client.ledgerBillingGroupReports.retrieve( 'f5586561-8ff0-4291-a0ac-84fe544797bd', ); console.log(ledgerBillingGroupReport.data);
Returns: created_at (date-time), id (uuid), organization_id (uuid), record_type (enum: ledger_billing_group_report), report_url (uri), status (enum: pending, complete, failed, deleted), updated_at (date-time)
Retrieves all MDR detailed report requests for the authenticated user
GET /legacy/reporting/batch_detail_records/messaging
javascriptconst messagings = await client.legacy.reporting.batchDetailRecords.messaging.list(); console.log(messagings.data);
Returns: connections (arrayinteger]), created_at (date-time), directions (arraystring]), end_date (date-time), filters (arrayobject]), id (uuid), profiles (arraystring]), record_type (string), record_types (arraystring]), report_name (string), report_url (string), start_date (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
Creates a new MDR detailed report request with the specified filters
POST /legacy/reporting/batch_detail_records/messaging — Required: start_time, end_time
Optional: connections (arrayinteger]), directions (arrayinteger]), filters (arrayobject]), include_message_body (boolean), managed_accounts (arraystring]), profiles (arraystring]), record_types (arrayinteger]), report_name (string), select_all_managed_accounts (boolean), timezone (string)
javascriptconst messaging = await client.legacy.reporting.batchDetailRecords.messaging.create({ end_time: '2024-02-12T23:59:59Z', start_time: '2024-02-01T00:00:00Z', }); console.log(messaging.data);
Returns: connections (arrayinteger]), created_at (date-time), directions (arraystring]), end_date (date-time), filters (arrayobject]), id (uuid), profiles (arraystring]), record_type (string), record_types (arraystring]), report_name (string), report_url (string), start_date (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
Retrieves a specific MDR detailed report request by ID
GET /legacy/reporting/batch_detail_records/messaging/{id}
javascriptconst messaging = await client.legacy.reporting.batchDetailRecords.messaging.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(messaging.data);
Returns: connections (arrayinteger]), created_at (date-time), directions (arraystring]), end_date (date-time), filters (arrayobject]), id (uuid), profiles (arraystring]), record_type (string), record_types (arraystring]), report_name (string), report_url (string), start_date (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
Deletes a specific MDR detailed report request by ID
DELETE /legacy/reporting/batch_detail_records/messaging/{id}
javascriptconst messaging = await client.legacy.reporting.batchDetailRecords.messaging.delete( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(messaging.data);
Returns: connections (arrayinteger]), created_at (date-time), directions (arraystring]), end_date (date-time), filters (arrayobject]), id (uuid), profiles (arraystring]), record_type (string), record_types (arraystring]), report_name (string), report_url (string), start_date (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
Retrieves all CDR report requests for the authenticated user
GET /legacy/reporting/batch_detail_records/voice
javascriptconst voices = await client.legacy.reporting.batchDetailRecords.voice.list(); console.log(voices.data);
Returns: call_types (arrayinteger]), connections (arrayinteger]), created_at (string), end_time (string), filters (arrayobject]), id (string), managed_accounts (arraystring]), record_type (string), record_types (arrayinteger]), report_name (string), report_url (string), retry (int32), source (string), start_time (string), status (int32), timezone (string), updated_at (string)
Creates a new CDR report request with the specified filters
POST /legacy/reporting/batch_detail_records/voice — Required: start_time, end_time
Optional: call_types (arrayinteger]), connections (arrayinteger]), fields (arraystring]), filters (arrayobject]), include_all_metadata (boolean), managed_accounts (arraystring]), record_types (arrayinteger]), report_name (string), select_all_managed_accounts (boolean), source (string), timezone (string)
javascriptconst voice = await client.legacy.reporting.batchDetailRecords.voice.create({ end_time: '2024-02-12T23:59:59Z', start_time: '2024-02-01T00:00:00Z', }); console.log(voice.data);
Returns: call_types (arrayinteger]), connections (arrayinteger]), created_at (string), end_time (string), filters (arrayobject]), id (string), managed_accounts (arraystring]), record_type (string), record_types (arrayinteger]), report_name (string), report_url (string), retry (int32), source (string), start_time (string), status (int32), timezone (string), updated_at (string)
Retrieves all available fields that can be used in CDR reports
GET /legacy/reporting/batch_detail_records/voice/fields
javascriptconst response = await client.legacy.reporting.batchDetailRecords.voice.retrieveFields(); console.log(response.Billing);
Returns: Billing (arraystring]), Interaction Data (arraystring]), Number Information (arraystring]), Telephony Data (arraystring])
Retrieves a specific CDR report request by ID
GET /legacy/reporting/batch_detail_records/voice/{id}
javascriptconst voice = await client.legacy.reporting.batchDetailRecords.voice.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(voice.data);
Returns: call_types (arrayinteger]), connections (arrayinteger]), created_at (string), end_time (string), filters (arrayobject]), id (string), managed_accounts (arraystring]), record_type (string), record_types (arrayinteger]), report_name (string), report_url (string), retry (int32), source (string), start_time (string), status (int32), timezone (string), updated_at (string)
Deletes a specific CDR report request by ID
DELETE /legacy/reporting/batch_detail_records/voice/{id}
javascriptconst voice = await client.legacy.reporting.batchDetailRecords.voice.delete( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(voice.data);
Returns: call_types (arrayinteger]), connections (arrayinteger]), created_at (string), end_time (string), filters (arrayobject]), id (string), managed_accounts (arraystring]), record_type (string), record_types (arrayinteger]), report_name (string), report_url (string), retry (int32), source (string), start_time (string), status (int32), timezone (string), updated_at (string)
Fetch all previous requests for MDR usage reports.
GET /legacy/reporting/usage_reports/messaging
javascript// Automatically fetches more pages as needed. for await (const mdrUsageReportResponseLegacy of client.legacy.reporting.usageReports.messaging.list()) { console.log(mdrUsageReportResponseLegacy.id); }
Returns: aggregation_type (int32), connections (arraystring]), created_at (date-time), end_time (date-time), id (uuid), profiles (arraystring]), record_type (string), report_url (string), result (object), start_time (date-time), status (int32), updated_at (date-time)
Creates a new legacy usage V2 MDR report request with the specified filters
POST /legacy/reporting/usage_reports/messaging
javascriptconst messaging = await client.legacy.reporting.usageReports.messaging.create({ aggregation_type: 0, }); console.log(messaging.data);
Returns: aggregation_type (int32), connections (arraystring]), created_at (date-time), end_time (date-time), id (uuid), profiles (arraystring]), record_type (string), report_url (string), result (object), start_time (date-time), status (int32), updated_at (date-time)
Fetch single MDR usage report by id.
GET /legacy/reporting/usage_reports/messaging/{id}
javascriptconst messaging = await client.legacy.reporting.usageReports.messaging.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(messaging.data);
Returns: aggregation_type (int32), connections (arraystring]), created_at (date-time), end_time (date-time), id (uuid), profiles (arraystring]), record_type (string), report_url (string), result (object), start_time (date-time), status (int32), updated_at (date-time)
Deletes a specific V2 legacy usage MDR report request by ID
DELETE /legacy/reporting/usage_reports/messaging/{id}
javascriptconst messaging = await client.legacy.reporting.usageReports.messaging.delete( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(messaging.data);
Returns: aggregation_type (int32), connections (arraystring]), created_at (date-time), end_time (date-time), id (uuid), profiles (arraystring]), record_type (string), report_url (string), result (object), start_time (date-time), status (int32), updated_at (date-time)
Retrieve a paginated list of telco data usage reports
GET /legacy/reporting/usage_reports/number_lookup
javascriptconst numberLookups = await client.legacy.reporting.usageReports.numberLookup.list(); console.log(numberLookups.data);
Returns: aggregation_type (string), created_at (date-time), end_date (date), id (uuid), managed_accounts (arraystring]), record_type (string), report_url (string), result (arrayobject]), start_date (date), status (string), updated_at (date-time)
Submit a new telco data usage report
POST /legacy/reporting/usage_reports/number_lookup
javascriptconst numberLookup = await client.legacy.reporting.usageReports.numberLookup.create(); console.log(numberLookup.data);
Returns: aggregation_type (string), created_at (date-time), end_date (date), id (uuid), managed_accounts (arraystring]), record_type (string), report_url (string), result (arrayobject]), start_date (date), status (string), updated_at (date-time)
Retrieve a specific telco data usage report by its ID
GET /legacy/reporting/usage_reports/number_lookup/{id}
javascriptconst numberLookup = await client.legacy.reporting.usageReports.numberLookup.retrieve('550e8400-e29b-41d4-a716-446655440000'); console.log(numberLookup.data);
Returns: aggregation_type (string), created_at (date-time), end_date (date), id (uuid), managed_accounts (arraystring]), record_type (string), report_url (string), result (arrayobject]), start_date (date), status (string), updated_at (date-time)
Delete a specific telco data usage report by its ID
DELETE /legacy/reporting/usage_reports/number_lookup/{id}
javascriptawait client.legacy.reporting.usageReports.numberLookup.delete('550e8400-e29b-41d4-a716-446655440000');
Fetch all previous requests for cdr usage reports.
GET /legacy/reporting/usage_reports/voice
javascript// Automatically fetches more pages as needed. for await (const cdrUsageReportResponseLegacy of client.legacy.reporting.usageReports.voice.list()) { console.log(cdrUsageReportResponseLegacy.id); }
Returns: aggregation_type (int32), connections (arraystring]), created_at (date-time), end_time (date-time), id (uuid), product_breakdown (int32), record_type (string), report_url (string), result (object), start_time (date-time), status (int32), updated_at (date-time)
Creates a new legacy usage V2 CDR report request with the specified filters
POST /legacy/reporting/usage_reports/voice
javascriptconst voice = await client.legacy.reporting.usageReports.voice.create({ end_time: '2024-02-01T00:00:00Z', start_time: '2024-02-01T00:00:00Z', }); console.log(voice.data);
Returns: aggregation_type (int32), connections (arraystring]), created_at (date-time), end_time (date-time), id (uuid), product_breakdown (int32), record_type (string), report_url (string), result (object), start_time (date-time), status (int32), updated_at (date-time)
Fetch single cdr usage report by id.
GET /legacy/reporting/usage_reports/voice/{id}
javascriptconst voice = await client.legacy.reporting.usageReports.voice.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(voice.data);
Returns: aggregation_type (int32), connections (arraystring]), created_at (date-time), end_time (date-time), id (uuid), product_breakdown (int32), record_type (string), report_url (string), result (object), start_time (date-time), status (int32), updated_at (date-time)
Deletes a specific V2 legacy usage CDR report request by ID
DELETE /legacy/reporting/usage_reports/voice/{id}
javascriptconst voice = await client.legacy.reporting.usageReports.voice.delete( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(voice.data);
Returns: aggregation_type (int32), connections (arraystring]), created_at (date-time), end_time (date-time), id (uuid), product_breakdown (int32), record_type (string), report_url (string), result (object), start_time (date-time), status (int32), updated_at (date-time)
GET /phone_numbers/csv_downloads
javascript// Automatically fetches more pages as needed. for await (const csvDownload of client.phoneNumbers.csvDownloads.list()) { console.log(csvDownload.id); }
Returns: id (string), record_type (string), status (enum: pending, complete, failed, expired), url (string)
POST /phone_numbers/csv_downloads
javascriptconst csvDownload = await client.phoneNumbers.csvDownloads.create(); console.log(csvDownload.data);
Returns: id (string), record_type (string), status (enum: pending, complete, failed, expired), url (string)
GET /phone_numbers/csv_downloads/{id}
javascriptconst csvDownload = await client.phoneNumbers.csvDownloads.retrieve('550e8400-e29b-41d4-a716-446655440000'); console.log(csvDownload.data);
Returns: id (string), record_type (string), status (enum: pending, complete, failed, expired), url (string)
Generate and fetch voice usage report synchronously. This endpoint will both generate and fetch the voice report over a specified time period. No polling is necessary but the response may take up to a couple of minutes.
GET /reports/cdr_usage_reports/sync
javascriptconst response = await client.reports.cdrUsageReports.fetchSync({ aggregation_type: 'NO_AGGREGATION', product_breakdown: 'NO_BREAKDOWN', }); console.log(response.data);
Returns: aggregation_type (enum: NO_AGGREGATION, CONNECTION, TAG, BILLING_GROUP), connections (arrayinteger]), created_at (date-time), end_time (date-time), id (uuid), product_breakdown (enum: NO_BREAKDOWN, DID_VS_TOLL_FREE, COUNTRY, DID_VS_TOLL_FREE_PER_COUNTRY), record_type (string), report_url (string), result (object), start_time (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
Fetch all messaging usage reports. Usage reports are aggregated messaging data for specified time period and breakdown
GET /reports/mdr_usage_reports
javascript// Automatically fetches more pages as needed. for await (const mdrUsageReport of client.reports.mdrUsageReports.list()) { console.log(mdrUsageReport.id); }
Returns: aggregation_type (enum: NO_AGGREGATION, PROFILE, TAGS), connections (arrayinteger]), created_at (date-time), end_date (date-time), id (uuid), profiles (string), record_type (string), report_url (string), result (arrayobject]), start_date (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
Submit request for new new messaging usage report. This endpoint will pull and aggregate messaging data in specified time period.
POST /reports/mdr_usage_reports
javascriptconst mdrUsageReport = await client.reports.mdrUsageReports.create({ aggregation_type: 'NO_AGGREGATION', end_date: '2020-07-01T00:00:00-06:00', start_date: '2020-07-01T00:00:00-06:00', }); console.log(mdrUsageReport.data);
Returns: aggregation_type (enum: NO_AGGREGATION, PROFILE, TAGS), connections (arrayinteger]), created_at (date-time), end_date (date-time), id (uuid), profiles (string), record_type (string), report_url (string), result (arrayobject]), start_date (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
Generate and fetch messaging usage report synchronously. This endpoint will both generate and fetch the messaging report over a specified time period. No polling is necessary but the response may take up to a couple of minutes.
GET /reports/mdr_usage_reports/sync
javascriptconst response = await client.reports.mdrUsageReports.fetchSync({ aggregation_type: 'PROFILE' }); console.log(response.data);
Returns: aggregation_type (enum: NO_AGGREGATION, PROFILE, TAGS), connections (arrayinteger]), created_at (date-time), end_date (date-time), id (uuid), profiles (string), record_type (string), report_url (string), result (arrayobject]), start_date (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
Fetch a single messaging usage report by id
GET /reports/mdr_usage_reports/{id}
javascriptconst mdrUsageReport = await client.reports.mdrUsageReports.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(mdrUsageReport.data);
Returns: aggregation_type (enum: NO_AGGREGATION, PROFILE, TAGS), connections (arrayinteger]), created_at (date-time), end_date (date-time), id (uuid), profiles (string), record_type (string), report_url (string), result (arrayobject]), start_date (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
Delete messaging usage report by id
DELETE /reports/mdr_usage_reports/{id}
javascriptconst mdrUsageReport = await client.reports.mdrUsageReports.delete( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', ); console.log(mdrUsageReport.data);
Returns: aggregation_type (enum: NO_AGGREGATION, PROFILE, TAGS), connections (arrayinteger]), created_at (date-time), end_date (date-time), id (uuid), profiles (string), record_type (string), report_url (string), result (arrayobject]), start_date (date-time), status (enum: PENDING, COMPLETE, FAILED, EXPIRED), updated_at (date-time)
GET /reports/mdrs
javascriptconst response = await client.reports.listMdrs(); console.log(response.data);
Returns: cld (string), cli (string), cost (string), created_at (date-time), currency (enum: AUD, CAD, EUR, GBP, USD), direction (string), id (string), message_type (enum: SMS, MMS), parts (number), profile_name (string), rate (string), record_type (string), status (enum: GW_TIMEOUT, DELIVERED, DLR_UNCONFIRMED, DLR_TIMEOUT, RECEIVED, GW_REJECT, FAILED)
Fetch all Wdr records
GET /reports/wdrs
javascript// Automatically fetches more pages as needed. for await (const reportListWdrsResponse of client.reports.listWdrs()) { console.log(reportListWdrsResponse.id); }
Returns: cost (object), created_at (date-time), downlink_data (object), duration_seconds (number), id (string), imsi (string), mcc (string), mnc (string), phone_number (string), rate (object), record_type (string), sim_card_id (string), sim_group_id (string), sim_group_name (string), uplink_data (object)
Returns all available record types and supported query parameters for session analysis.
GET /session_analysis/metadata
javascriptconst metadata = await client.sessionAnalysis.metadata.retrieve(); console.log(metadata.meta);
Returns: meta (object), query_parameters (object), record_types (arrayobject])
Returns detailed metadata for a specific record type, including relationships and examples.
GET /session_analysis/metadata/{record_type}
javascriptconst response = await client.sessionAnalysis.metadata.retrieveRecordType('record_type'); console.log(response.aliases);
Returns: aliases (arraystring]), child_relationships (arrayobject]), event (string), examples (object), meta (object), parent_relationships (arrayobject]), product (string), record_type (string)
Retrieves a full session analysis tree for a given event, including costs, child events, and product linkages.
GET /session_analysis/{record_type}/{event_id}
javascriptconst sessionAnalysis = await client.sessionAnalysis.retrieve( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', { record_type: 'record_type' }, ); console.log(sessionAnalysis.session_id);
Returns: cost (object), meta (object), root (object), session_id (string)
Get Telnyx usage data by product, broken out by the specified dimensions
GET /usage_reports
javascript// Automatically fetches more pages as needed. for await (const usageReportListResponse of client.usageReports.list({ dimensions: ['string'], metrics: ['string'], product: 'wireless', })) { console.log(usageReportListResponse); }
Returns: data (arrayobject]), meta (object)
Get the Usage Reports options for querying usage, including the products available and their respective metrics and dimensions
GET /usage_reports/options
javascriptconst response = await client.usageReports.getOptions(); console.log(response.data);
Returns: product (string), product_dimensions (arraystring]), product_metrics (arraystring]), record_types (arrayobject])
Returns the WDR Reports that match the given parameters.
GET /wireless/detail_records_reports
javascriptconst detailRecordsReports = await client.wireless.detailRecordsReports.list(); console.log(detailRecordsReports.data);
Returns: created_at (string), end_time (string), id (uuid), record_type (string), report_url (string), start_time (string), status (enum: pending, complete, failed, deleted), updated_at (string)
Asynchronously create a report containing Wireless Detail Records (WDRs) for the SIM cards that consumed wireless data in the given time period.
POST /wireless/detail_records_reports
Optional: end_time (string), start_time (string)
javascriptconst detailRecordsReport = await client.wireless.detailRecordsReports.create(); console.log(detailRecordsReport.data);
Returns: created_at (string), end_time (string), id (uuid), record_type (string), report_url (string), start_time (string), status (enum: pending, complete, failed, deleted), updated_at (string)
Returns one specific WDR report
GET /wireless/detail_records_reports/{id}
javascriptconst detailRecordsReport = await client.wireless.detailRecordsReports.retrieve( '6a09cdc3-8948-47f0-aa62-74ac943d6c58', ); console.log(detailRecordsReport.data);
Returns: created_at (string), end_time (string), id (uuid), record_type (string), report_url (string), start_time (string), status (enum: pending, complete, failed, deleted), updated_at (string)
Deletes one specific WDR report.
DELETE /wireless/detail_records_reports/{id}
javascriptconst detailRecordsReport = await client.wireless.detailRecordsReports.delete( '6a09cdc3-8948-47f0-aa62-74ac943d6c58', ); console.log(detailRecordsReport.data);
Returns: created_at (string), end_time (string), id (uuid), record_type (string), report_url (string), start_time (string), status (enum: pending, complete, failed, deleted), updated_at (string)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 12,673 | 6,073 | -52% | 1 | 1 | 0% | 2,391 | 10,217 | +327% | 0 | 0 | — |
case-02 | fail→pass | 11,948 | 6,857 | -43% | 1 | 1 | 0% | 2,276 | 10,418 | +358% | 0 | 0 | — |
case-03 | fail→pass | 15,819 | 7,408 | -53% | 1 | 1 | 0% | 3,098 | 10,559 | +241% | 0 | 0 | — |
case-04 | fail→pass | 10,709 | 4,441 | -59% | 1 | 1 | 0% | 1,788 | 9,737 | +445% | 0 | 0 | — |
case-05 | pass→pass | 7,064 | 3,164 | -55% | 1 | 1 | 0% | 1,235 | 9,463 | +666% | 0 | 0 | — |
case-06 | pass→pass | 5,288 | 2,971 | -44% | 1 | 1 | 0% | 1,018 | 9,523 | +835% | 0 | 0 | — |
case-07 | fail→pass | 6,659 | 2,017 | -70% | 1 | 1 | 0% | 1,184 | 9,251 | +681% | 0 | 0 | — |
case-08 | fail→pass | 11,979 | 3,509 | -71% | 1 | 1 | 0% | 2,304 | 9,595 | +316% | 0 | 0 | — |
case-09 | fail→pass | 6,152 | 2,751 | -55% | 1 | 1 | 0% | 1,200 | 9,487 | +691% | 0 | 0 | — |
case-10 | fail→pass | 11,183 | 3,519 | -69% | 1 | 1 | 0% | 2,052 | 9,598 | +368% | 0 | 0 | — |
case-11 | fail→pass | 6,748 | 2,210 | -67% | 1 | 1 | 0% | 1,189 | 9,316 | +684% | 0 | 0 | — |
case-12 | fail→pass | 9,364 | 3,550 | -62% | 1 | 1 | 0% | 1,829 | 9,523 | +421% | 0 | 0 | — |
case-13 | fail→pass | 7,717 | 3,884 | -50% | 1 | 1 | 0% | 1,622 | 9,737 | +500% | 0 | 0 | — |
case-14 | fail→pass | 10,826 | 6,316 | -42% | 1 | 1 | 0% | 2,070 | 10,138 | +390% | 0 | 0 | — |
case-15 | fail→pass | 6,727 | 2,828 | -58% | 1 | 1 | 0% | 1,341 | 9,458 | +605% | 0 | 0 | — |
case-16 | fail→pass | 9,180 | 2,618 | -71% | 1 | 1 | 0% | 1,667 | 9,392 | +463% | 0 | 0 | — |
case-17 | fail→pass | 12,633 | 3,968 | -69% | 1 | 1 | 0% | 2,274 | 9,679 | +326% | 0 | 0 | — |
case-18 | fail→pass | 7,922 | 5,329 | -33% | 1 | 1 | 0% | 1,477 | 10,044 | +580% | 0 | 0 | — |
case-19 | fail→pass | 6,177 | 2,092 | -66% | 1 | 1 | 0% | 1,115 | 9,241 | +729% | 0 | 0 | — |
case-20 | fail→pass | 10,462 | 3,272 | -69% | 1 | 1 | 0% | 1,876 | 9,473 | +405% | 0 | 0 | — |
case-21 | pass→pass | 12,793 | 3,776 | -70% | 1 | 1 | 0% | 2,341 | 9,560 | +308% | 0 | 0 | — |
case-22 | fail→pass | 5,245 | 5,193 | -1% | 1 | 1 | 0% | 1,044 | 10,073 | +865% | 0 | 0 | — |
case-23 | pass→pass | 5,649 | 12,368 | +119% | 1 | 1 | 0% | 1,140 | 9,865 | +765% | 0 | 0 | — |
case-24 | pass→pass | 7,823 | 5,839 | -25% | 1 | 1 | 0% | 1,558 | 10,078 | +547% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 24 cases were attempted. The headline lift of +79 percentage points is the difference between those two pass rates over the 24 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.