Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Manage call recordings, media storage, Dialogflow integration, and external connections for SIP trunking. This skill provides Ruby SDK examples.
.claude/skills/team-telnyx-telnyx-sip-integrations-ruby/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 202% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 243% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 329% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 312% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 262% | 0% |
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
bashgem install telnyx
rubyrequire "telnyx" client = Telnyx::Client.new( api_key: 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:
rubybegin result = client.messages.send_(to: "+13125550001", from: "+13125550002", text: "Hello") rescue Telnyx::Errors::APIConnectionError puts "Network error — check connectivity and retry" rescue Telnyx::Errors::RateLimitError # 429: rate limited — wait and retry with exponential backoff sleep(1) # Check Retry-After header for actual delay rescue Telnyx::Errors::APIStatusError => e puts "API error #{e.status}: #{e.message}" if e.status == 422 puts "Validation error — check required fields and formats" end end
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).
.auto_paging_each for automatic iteration: page.auto_paging_each { |item| puts item.id }.Returns the information about custom storage credentials.
GET /custom_storage_credentials/{connection_id}
rubycustom_storage_credential = client.custom_storage_credentials.retrieve("connection_id") puts(custom_storage_credential)
Returns: backend (enum: gcs, s3, azure), configuration (object)
Creates a custom storage credentials configuration.
POST /custom_storage_credentials/{connection_id}
rubycustom_storage_credential = client.custom_storage_credentials.create("connection_id", backend: :gcs, configuration: {backend: :gcs}) puts(custom_storage_credential)
Returns: backend (enum: gcs, s3, azure), configuration (object)
Updates a stored custom credentials configuration.
PUT /custom_storage_credentials/{connection_id}
rubycustom_storage_credential = client.custom_storage_credentials.update("connection_id", backend: :gcs, configuration: {backend: :gcs}) puts(custom_storage_credential)
Returns: backend (enum: gcs, s3, azure), configuration (object)
Deletes a stored custom credentials configuration.
DELETE /custom_storage_credentials/{connection_id}
rubyresult = client.custom_storage_credentials.delete("connection_id") puts(result)
Return details of the Dialogflow connection associated with the given CallControl connection.
GET /dialogflow_connections/{connection_id}
rubydialogflow_connection = client.dialogflow_connections.retrieve("connection_id") puts(dialogflow_connection)
Returns: connection_id (string), conversation_profile_id (string), environment (string), record_type (string), service_account (string)
Save Dialogflow Credentiails to Telnyx, so it can be used with other Telnyx services.
POST /dialogflow_connections/{connection_id}
rubydialogflow_connection = client.dialogflow_connections.create( "connection_id", service_account: { type: "bar", project_id: "bar", private_key_id: "bar", private_key: "bar", client_email: "bar", client_id: "bar", auth_uri: "bar", token_uri: "bar", auth_provider_x509_cert_url: "bar", client_x509_cert_url: "bar" } ) puts(dialogflow_connection)
Returns: connection_id (string), conversation_profile_id (string), environment (string), record_type (string), service_account (string)
Updates a stored Dialogflow Connection.
PUT /dialogflow_connections/{connection_id}
rubydialogflow_connection = client.dialogflow_connections.update( "connection_id", service_account: { type: "bar", project_id: "bar", private_key_id: "bar", private_key: "bar", client_email: "bar", client_id: "bar", auth_uri: "bar", token_uri: "bar", auth_provider_x509_cert_url: "bar", client_x509_cert_url: "bar" } ) puts(dialogflow_connection)
Returns: connection_id (string), conversation_profile_id (string), environment (string), record_type (string), service_account (string)
Deletes a stored Dialogflow Connection.
DELETE /dialogflow_connections/{connection_id}
rubyresult = client.dialogflow_connections.delete("connection_id") puts(result)
This endpoint returns a list of your External Connections inside the 'data' attribute of the response. External Connections are used by Telnyx customers to seamless configure SIP trunking integrations with Telnyx Partners, through External Voice Integrations in Mission Control Portal.
GET /external_connections
rubypage = client.external_connections.list puts(page)
Returns: active (boolean), created_at (string), credential_active (boolean), external_sip_connection (enum: zoom, operator_connect), id (string), inbound (object), outbound (object), record_type (string), tags (arraystring]), updated_at (string), webhook_api_version (enum: 1, 2), webhook_event_failover_url (uri), webhook_event_url (uri), webhook_timeout_secs (integer | null)
Creates a new External Connection based on the parameters sent in the request. The external_sip_connection and outbound voice profile id are required. Once created, you can assign phone numbers to your application using the /phone_numbers endpoint.
POST /external_connections — Required: external_sip_connection, outbound
Optional: active (boolean), inbound (object), tags (arraystring]), webhook_event_failover_url (uri), webhook_event_url (uri), webhook_timeout_secs (integer | null)
rubyexternal_connection = client.external_connections.create(external_sip_connection: :zoom, outbound: {}) puts(external_connection)
Returns: active (boolean), created_at (string), credential_active (boolean), external_sip_connection (enum: zoom, operator_connect), id (string), inbound (object), outbound (object), record_type (string), tags (arraystring]), updated_at (string), webhook_api_version (enum: 1, 2), webhook_event_failover_url (uri), webhook_event_url (uri), webhook_timeout_secs (integer | null)
Retrieve a list of log messages for all external connections associated with your account.
GET /external_connections/log_messages
rubypage = client.external_connections.log_messages.list puts(page)
Returns: log_messages (arrayobject]), meta (object)
Retrieve a log message for an external connection associated with your account.
GET /external_connections/log_messages/{id}
rubylog_message = client.external_connections.log_messages.retrieve("1293384261075731499") puts(log_message)
Returns: log_messages (arrayobject])
Dismiss a log message for an external connection associated with your account.
DELETE /external_connections/log_messages/{id}
rubyresponse = client.external_connections.log_messages.dismiss("1293384261075731499") puts(response)
Returns: success (boolean)
Return the details of an existing External Connection inside the 'data' attribute of the response.
GET /external_connections/{id}
rubyexternal_connection = client.external_connections.retrieve("1293384261075731499") puts(external_connection)
Returns: active (boolean), created_at (string), credential_active (boolean), external_sip_connection (enum: zoom, operator_connect), id (string), inbound (object), outbound (object), record_type (string), tags (arraystring]), updated_at (string), webhook_api_version (enum: 1, 2), webhook_event_failover_url (uri), webhook_event_url (uri), webhook_timeout_secs (integer | null)
Updates settings of an existing External Connection based on the parameters of the request.
PATCH /external_connections/{id} — Required: outbound
Optional: active (boolean), inbound (object), tags (arraystring]), webhook_event_failover_url (uri), webhook_event_url (uri), webhook_timeout_secs (integer | null)
rubyexternal_connection = client.external_connections.update( "1293384261075731499", outbound: {outbound_voice_profile_id: "1911630617284445511"} ) puts(external_connection)
Returns: active (boolean), created_at (string), credential_active (boolean), external_sip_connection (enum: zoom, operator_connect), id (string), inbound (object), outbound (object), record_type (string), tags (arraystring]), updated_at (string), webhook_api_version (enum: 1, 2), webhook_event_failover_url (uri), webhook_event_url (uri), webhook_timeout_secs (integer | null)
Permanently deletes an External Connection. Deletion may be prevented if the application is in use by phone numbers, is active, or if it is an Operator Connect connection. To remove an Operator Connect integration please contact Telnyx support.
DELETE /external_connections/{id}
rubyexternal_connection = client.external_connections.delete("1293384261075731499") puts(external_connection)
Returns: active (boolean), created_at (string), credential_active (boolean), external_sip_connection (enum: zoom, operator_connect), id (string), inbound (object), outbound (object), record_type (string), tags (arraystring]), updated_at (string), webhook_api_version (enum: 1, 2), webhook_event_failover_url (uri), webhook_event_url (uri), webhook_timeout_secs (integer | null)
Returns the civic addresses and locations from Microsoft Teams.
GET /external_connections/{id}/civic_addresses
rubycivic_addresses = client.external_connections.civic_addresses.list("1293384261075731499") puts(civic_addresses)
Returns: city_or_town (string), city_or_town_alias (string), company_name (string), country (string), country_or_district (string), default_location_id (uuid), description (string), house_number (string), house_number_suffix (string), id (uuid), locations (arrayobject]), postal_or_zip_code (string), record_type (string), state_or_province (string), street_name (string), street_suffix (string)
Return the details of an existing Civic Address with its Locations inside the 'data' attribute of the response.
GET /external_connections/{id}/civic_addresses/{address_id}
rubycivic_address = client.external_connections.civic_addresses.retrieve( "318fb664-d341-44d2-8405-e6bfb9ced6d9", id: "1293384261075731499" ) puts(civic_address)
Returns: city_or_town (string), city_or_town_alias (string), company_name (string), country (string), country_or_district (string), default_location_id (uuid), description (string), house_number (string), house_number_suffix (string), id (uuid), locations (arrayobject]), postal_or_zip_code (string), record_type (string), state_or_province (string), street_name (string), street_suffix (string)
PATCH /external_connections/{id}/locations/{location_id} — Required: static_emergency_address_id
rubyresponse = client.external_connections.update_location( "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", id: "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", static_emergency_address_id: "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ) puts(response)
Returns: accepted_address_suggestions (boolean), location_id (uuid), static_emergency_address_id (uuid)
Returns a list of all active phone numbers associated with the given external connection.
GET /external_connections/{id}/phone_numbers
rubypage = client.external_connections.phone_numbers.list("1293384261075731499") puts(page)
Returns: acquired_capabilities (arraystring]), civic_address_id (uuid), displayed_country_code (string), location_id (uuid), number_id (string), telephone_number (string), ticket_id (uuid)
Return the details of a phone number associated with the given external connection.
GET /external_connections/{id}/phone_numbers/{phone_number_id}
rubyphone_number = client.external_connections.phone_numbers.retrieve("1234567889", id: "1293384261075731499") puts(phone_number)
Returns: acquired_capabilities (arraystring]), civic_address_id (uuid), displayed_country_code (string), location_id (uuid), number_id (string), telephone_number (string), ticket_id (uuid)
Asynchronously update settings of the phone number associated with the given external connection.
PATCH /external_connections/{id}/phone_numbers/{phone_number_id}
Optional: location_id (uuid)
rubyphone_number = client.external_connections.phone_numbers.update("1234567889", id: "1293384261075731499") puts(phone_number)
Returns: acquired_capabilities (arraystring]), civic_address_id (uuid), displayed_country_code (string), location_id (uuid), number_id (string), telephone_number (string), ticket_id (uuid)
Returns a list of your Releases for the given external connection. These are automatically created when you change the connection_id of a phone number that is currently on Microsoft Teams.
GET /external_connections/{id}/releases
rubypage = client.external_connections.releases.list("1293384261075731499") puts(page)
Returns: created_at (string), error_message (string), status (enum: pending_upload, pending, in_progress, complete, failed, expired, unknown), telephone_numbers (arrayobject]), tenant_id (uuid), ticket_id (uuid)
Return the details of a Release request and its phone numbers.
GET /external_connections/{id}/releases/{release_id}
rubyrelease = client.external_connections.releases.retrieve( "7b6a6449-b055-45a6-81f6-f6f0dffa4cc6", id: "1293384261075731499" ) puts(release)
Returns: created_at (string), error_message (string), status (enum: pending_upload, pending, in_progress, complete, failed, expired, unknown), telephone_numbers (arrayobject]), tenant_id (uuid), ticket_id (uuid)
Returns a list of your Upload requests for the given external connection.
GET /external_connections/{id}/uploads
rubypage = client.external_connections.uploads.list("1293384261075731499") puts(page)
Returns: available_usages (arraystring]), error_code (string), error_message (string), location_id (uuid), status (enum: pending_upload, pending, in_progress, partial_success, success, error), tenant_id (uuid), ticket_id (uuid), tn_upload_entries (arrayobject])
Creates a new Upload request to Microsoft teams with the included phone numbers. Only one of civic_address_id or location_id must be provided, not both. The maximum allowed phone numbers for the numbers_ids array is 1000.
POST /external_connections/{id}/uploads — Required: number_ids
Optional: additional_usages (arraystring]), civic_address_id (uuid), location_id (uuid), usage (enum: calling_user_assignment, first_party_app_assignment)
rubyupload = client.external_connections.uploads.create( "1293384261075731499", number_ids: ["3920457616934164700", "3920457616934164701", "3920457616934164702", "3920457616934164703"] ) puts(upload)
Returns: success (boolean), ticket_id (uuid)
Forces a recheck of the status of all pending Upload requests for the given external connection in the background.
POST /external_connections/{id}/uploads/refresh
rubyresponse = client.external_connections.uploads.refresh_status("1293384261075731499") puts(response)
Returns: success (boolean)
Returns the count of all pending upload requests for the given external connection.
GET /external_connections/{id}/uploads/status
rubyresponse = client.external_connections.uploads.pending_count("1293384261075731499") puts(response)
Returns: pending_numbers_count (integer), pending_orders_count (integer)
Return the details of an Upload request and its phone numbers.
GET /external_connections/{id}/uploads/{ticket_id}
rubyupload = client.external_connections.uploads.retrieve( "7b6a6449-b055-45a6-81f6-f6f0dffa4cc6", id: "1293384261075731499" ) puts(upload)
Returns: available_usages (arraystring]), error_code (string), error_message (string), location_id (uuid), status (enum: pending_upload, pending, in_progress, partial_success, success, error), tenant_id (uuid), ticket_id (uuid), tn_upload_entries (arrayobject])
If there were any errors during the upload process, this endpoint will retry the upload request. In some cases this will reattempt the existing upload request, in other cases it may create a new upload request. Please check the ticket_id in the response to determine if a new upload request was created.
POST /external_connections/{id}/uploads/{ticket_id}/retry
rubyresponse = client.external_connections.uploads.retry_( "7b6a6449-b055-45a6-81f6-f6f0dffa4cc6", id: "1293384261075731499" ) puts(response)
Returns: available_usages (arraystring]), error_code (string), error_message (string), location_id (uuid), status (enum: pending_upload, pending, in_progress, partial_success, success, error), tenant_id (uuid), ticket_id (uuid), tn_upload_entries (arrayobject])
Returns a list of stored media files.
GET /media
rubymedia = client.media.list puts(media)
Returns: content_type (string), created_at (string), expires_at (string), media_name (string), updated_at (string)
Upload media file to Telnyx so it can be used with other Telnyx services
POST /media — Required: media_url
Optional: media_name (string), ttl_secs (integer)
rubyresponse = client.media.upload(media_url: "http://www.example.com/audio.mp3") puts(response)
Returns: content_type (string), created_at (string), expires_at (string), media_name (string), updated_at (string)
Returns the information about a stored media file.
GET /media/{media_name}
rubymedia = client.media.retrieve("media_name") puts(media)
Returns: content_type (string), created_at (string), expires_at (string), media_name (string), updated_at (string)
Updates a stored media file.
PUT /media/{media_name}
Optional: media_url (string), ttl_secs (integer)
rubymedia = client.media.update("media_name") puts(media)
Returns: content_type (string), created_at (string), expires_at (string), media_name (string), updated_at (string)
Deletes a stored media file.
DELETE /media/{media_name}
rubyresult = client.media.delete("media_name") puts(result)
Downloads a stored media file.
GET /media/{media_name}/download
rubyresponse = client.media.download("media_name") puts(response)
This endpoint will make an asynchronous request to refresh the Operator Connect integration with Microsoft Teams for the current user. This will create new external connections on the user's account if needed, and/or report the integration results as log messages.
POST /operator_connect/actions/refresh
rubyresponse = client.operator_connect.actions.refresh puts(response)
Returns: message (string), success (boolean)
Returns a list of your recording transcriptions.
GET /recording_transcriptions
rubypage = client.recording_transcriptions.list puts(page)
Returns: created_at (string), duration_millis (int32), id (string), record_type (enum: recording_transcription), recording_id (string), status (enum: in-progress, completed), transcription_text (string), updated_at (string)
Retrieves the details of an existing recording transcription.
GET /recording_transcriptions/{recording_transcription_id}
rubyrecording_transcription = client.recording_transcriptions.retrieve("6a09cdc3-8948-47f0-aa62-74ac943d6c58") puts(recording_transcription)
Returns: created_at (string), duration_millis (int32), id (string), record_type (enum: recording_transcription), recording_id (string), status (enum: in-progress, completed), transcription_text (string), updated_at (string)
Permanently deletes a recording transcription.
DELETE /recording_transcriptions/{recording_transcription_id}
rubyrecording_transcription = client.recording_transcriptions.delete("6a09cdc3-8948-47f0-aa62-74ac943d6c58") puts(recording_transcription)
Returns: created_at (string), duration_millis (int32), id (string), record_type (enum: recording_transcription), recording_id (string), status (enum: in-progress, completed), transcription_text (string), updated_at (string)
Returns a list of your call recordings.
GET /recordings
rubypage = client.recordings.list puts(page)
Returns: call_control_id (string), call_leg_id (string), call_session_id (string), channels (enum: single, dual), conference_id (string), connection_id (string), created_at (string), download_urls (object), duration_millis (int32), from (string), id (string), initiated_by (string), record_type (enum: recording), recording_ended_at (string), recording_started_at (string), source (enum: conference, call), status (enum: completed), to (string), updated_at (string)
Permanently deletes a list of call recordings.
POST /recordings/actions/delete
rubyaction = client.recordings.actions.delete( ids: ["428c31b6-7af4-4bcb-b7f5-5013ef9657c1", "428c31b6-7af4-4bcb-b7f5-5013ef9657c2"] ) puts(action)
Returns: status (enum: ok)
Retrieves the details of an existing call recording.
GET /recordings/{recording_id}
rubyrecording = client.recordings.retrieve("recording_id") puts(recording)
Returns: call_control_id (string), call_leg_id (string), call_session_id (string), channels (enum: single, dual), conference_id (string), connection_id (string), created_at (string), download_urls (object), duration_millis (int32), from (string), id (string), initiated_by (string), record_type (enum: recording), recording_ended_at (string), recording_started_at (string), source (enum: conference, call), status (enum: completed), to (string), updated_at (string)
Permanently deletes a call recording.
DELETE /recordings/{recording_id}
rubyrecording = client.recordings.delete("recording_id") puts(recording)
Returns: call_control_id (string), call_leg_id (string), call_session_id (string), channels (enum: single, dual), conference_id (string), connection_id (string), created_at (string), download_urls (object), duration_millis (int32), from (string), id (string), initiated_by (string), record_type (enum: recording), recording_ended_at (string), recording_started_at (string), source (enum: conference, call), status (enum: completed), to (string), updated_at (string)
Creates a new SIPREC connector configuration.
POST /siprec_connectors
rubysiprec_connector = client.siprec_connectors.create(host: "siprec.client.com", name: "my-siprec-connector", port: 5060) puts(siprec_connector)
Returns: app_subdomain (string), created_at (string), host (string), name (string), port (integer), record_type (string), updated_at (string)
Returns details of a stored SIPREC connector.
GET /siprec_connectors/{connector_name}
rubysiprec_connector = client.siprec_connectors.retrieve("connector_name") puts(siprec_connector)
Returns: app_subdomain (string), created_at (string), host (string), name (string), port (integer), record_type (string), updated_at (string)
Updates a stored SIPREC connector configuration.
PUT /siprec_connectors/{connector_name}
rubysiprec_connector = client.siprec_connectors.update( "connector_name", host: "siprec.client.com", name: "my-siprec-connector", port: 5060 ) puts(siprec_connector)
Returns: app_subdomain (string), created_at (string), host (string), name (string), port (integer), record_type (string), updated_at (string)
Deletes a stored SIPREC connector.
DELETE /siprec_connectors/{connector_name}
rubyresult = client.siprec_connectors.delete("connector_name") puts(result)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 16,437 | 6,786 | -59% | 1 | 1 | 0% | 3,166 | 9,564 | +202% | 0 | 0 | — |
case-02 | fail→pass | 12,859 | 5,347 | -58% | 1 | 1 | 0% | 2,700 | 9,253 | +243% | 0 | 0 | — |
case-03 | fail→pass | 10,497 | 4,213 | -60% | 1 | 1 | 0% | 2,101 | 9,004 | +329% | 0 | 0 | — |
case-04 | pass→pass | 2,648 | 2,702 | +2% | 1 | 1 | 0% | 533 | 8,575 | +1509% | 0 | 0 | — |
case-05 | pass→pass | 14,242 | 6,579 | -54% | 1 | 1 | 0% | 2,818 | 9,279 | +229% | 0 | 0 | — |
case-06 | pass→pass | 6,783 | 5,863 | -14% | 1 | 1 | 0% | 1,392 | 9,147 | +557% | 0 | 0 | — |
case-07 | fail→pass | 10,164 | 4,467 | -56% | 1 | 1 | 0% | 2,177 | 8,973 | +312% | 0 | 0 | — |
case-08 | fail→pass | 13,425 | 4,367 | -67% | 1 | 1 | 0% | 2,436 | 8,824 | +262% | 0 | 0 | — |
case-09 | fail→pass | 9,587 | 3,173 | -67% | 1 | 1 | 0% | 1,813 | 8,591 | +374% | 0 | 0 | — |
case-10 | pass→pass | 11,175 | 2,340 | -79% | 1 | 1 | 0% | 2,162 | 8,412 | +289% | 0 | 0 | — |
case-11 | fail→pass | 10,921 | 3,304 | -70% | 1 | 1 | 0% | 1,892 | 8,591 | +354% | 0 | 0 | — |
case-12 | fail→pass | 9,158 | 3,950 | -57% | 1 | 1 | 0% | 1,663 | 8,742 | +426% | 0 | 0 | — |
case-13 | fail→pass | 6,518 | 3,065 | -53% | 1 | 1 | 0% | 1,240 | 8,585 | +592% | 0 | 0 | — |
case-14 | fail→pass | 4,767 | 2,682 | -44% | 1 | 1 | 0% | 915 | 8,496 | +829% | 0 | 0 | — |
case-15 | fail→pass | 11,918 | 2,835 | -76% | 1 | 1 | 0% | 2,137 | 8,484 | +297% | 0 | 0 | — |
case-16 | fail→pass | 13,735 | 2,356 | -83% | 1 | 1 | 0% | 2,328 | 8,424 | +262% | 0 | 0 | — |
case-17 | fail→pass | 13,684 | 3,143 | -77% | 1 | 1 | 0% | 2,773 | 8,582 | +209% | 0 | 0 | — |
case-18 | fail→pass | 12,020 | 3,858 | -68% | 1 | 1 | 0% | 2,268 | 8,795 | +288% | 0 | 0 | — |
case-19 | fail→pass | 5,213 | 5,900 | +13% | 1 | 1 | 0% | 1,013 | 9,299 | +818% | 0 | 0 | — |
case-20 | fail→pass | 11,769 | 3,152 | -73% | 1 | 1 | 0% | 2,170 | 8,566 | +295% | 0 | 0 | — |
case-21 | fail→pass | 10,872 | 2,810 | -74% | 1 | 1 | 0% | 2,118 | 8,536 | +303% | 0 | 0 | — |
case-22 | fail→pass | 10,103 | 3,097 | -69% | 1 | 1 | 0% | 2,031 | 8,681 | +327% | 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. 22 cases were attempted. The headline lift of +82 percentage points is the difference between those two pass rates over the 22 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.