Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Access the Dropbox Business API with managed OAuth authentication. Manage team administration including members, groups, team folders, devices, linked apps, and audit logs.
.claude/skills/dropbox-business/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | — | — |
| case-07 | ✗→✓ | ▲ Improved | — | — |
| case-03 | ✗→✓ | ▲ Improved | — | — |
| case-18 | ✗→✓ | ▲ Improved | — | — |
| case-12 | ✗→✓ | ▲ Improved | — | — |
Access the Dropbox Business API with managed OAuth authentication. Manage team administration including members, groups, team folders, devices, linked apps, and audit logs.
bash# Get team info python3 <<'EOF' import urllib.request, os, json req = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/team/get_info', data=b'null', method='POST') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('Content-Type', 'application/json') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
https://gateway.maton.ai/dropbox-business/2/{endpoint-path}Replace {endpoint-path} with the actual Dropbox Business API endpoint path. The gateway proxies requests to api.dropboxapi.com and automatically injects your OAuth token.
IMPORTANT: Dropbox Business API uses POST for almost all endpoints, including read operations. Request bodies should be JSON (use null for endpoints with no parameters).
All requests require the Maton API key in the Authorization header:
Authorization: Bearer $MATON_API_KEYEnvironment Variable: Set your API key as MATON_API_KEY:
bashexport MATON_API_KEY="YOUR_API_KEY"
Manage your Dropbox Business OAuth connections at https://ctrl.maton.ai.
bashpython3 <<'EOF' import urllib.request, os, json req = urllib.request.Request('https://ctrl.maton.ai/connections?app=dropbox-business&status=ACTIVE') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
bashpython3 <<'EOF' import urllib.request, os, json data = json.dumps({'app': 'dropbox-business'}).encode() req = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('Content-Type', 'application/json') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
Response:
json{ "connection_id": "09062f57-98a9-49f2-9e63-b2a7e03a9d7a", "status": "PENDING", "url": "https://connect.maton.ai/?session_token=...", "app": "dropbox-business" }
Open the returned url in a browser to complete OAuth authorization.
bashpython3 <<'EOF' import urllib.request, os, json req = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') urllib.request.urlopen(req) print("Deleted") EOF
If you have multiple Dropbox Business connections, specify which one to use with the Maton-Connection header:
pythonreq.add_header('Maton-Connection', '{connection_id}')
If omitted, the gateway uses the default (oldest) active connection.
Retrieves information about the team including license usage and policies.
bashPOST /dropbox-business/2/team/get_info Content-Type: application/json null
Response:
json{ "name": "My Company", "team_id": "dbtid:AAC...", "num_licensed_users": 10, "num_provisioned_users": 5, "num_used_licenses": 5, "policies": { "sharing": {...}, "emm_state": {".tag": "disabled"}, "office_addin": {".tag": "enabled"} } }
Query team feature availability.
bashPOST /dropbox-business/2/team/features/get_values Content-Type: application/json { "features": [ {".tag": "upload_api_rate_limit"}, {".tag": "has_team_shared_dropbox"}, {".tag": "has_team_file_events"}, {".tag": "has_team_selective_sync"} ] }
Response:
json{ "values": [ {".tag": "upload_api_rate_limit", "upload_api_rate_limit": {".tag": "limit", "limit": 1000000000}}, {".tag": "has_team_shared_dropbox", "has_team_shared_dropbox": {".tag": "has_team_shared_dropbox", "has_team_shared_dropbox": false}}, {".tag": "has_team_file_events", "has_team_file_events": {".tag": "enabled", "enabled": true}}, {".tag": "has_team_selective_sync", "has_team_selective_sync": {".tag": "has_team_selective_sync", "has_team_selective_sync": true}} ] }
Get info about the currently authenticated admin.
bashPOST /dropbox-business/2/team/token/get_authenticated_admin Content-Type: application/json null
Response:
json{ "admin_profile": { "team_member_id": "dbmid:AAA...", "account_id": "dbid:AAC...", "email": "admin@company.com", "email_verified": true, "status": {".tag": "active"}, "name": {"given_name": "Admin", "surname": "User", "display_name": "Admin User"}, "membership_type": {".tag": "full"}, "joined_on": "2026-02-15T08:27:35Z" } }
bashPOST /dropbox-business/2/team/members/list Content-Type: application/json { "limit": 100 }
Returns members with roles information (recommended).
bashPOST /dropbox-business/2/team/members/list_v2 Content-Type: application/json { "limit": 100, "include_removed": false }
Response:
json{ "members": [ { "profile": { "team_member_id": "dbmid:AAA...", "account_id": "dbid:AAC...", "email": "user@company.com", "email_verified": true, "secondary_emails": [], "status": {".tag": "active"}, "name": { "given_name": "John", "surname": "Doe", "familiar_name": "John", "display_name": "John Doe", "abbreviated_name": "JD" }, "membership_type": {".tag": "full"}, "joined_on": "2026-01-15T10:00:00Z", "groups": ["g:1d31f47b..."], "member_folder_id": "13646219987", "root_folder_id": "13650024947" }, "roles": [ { "role_id": "pid_dbtmr:...", "name": "Team", "description": "Manage everything and access all permissions" } ] } ], "cursor": "AAQ...", "has_more": false }
bashPOST /dropbox-business/2/team/members/list/continue Content-Type: application/json { "cursor": "AAQ..." }
bashPOST /dropbox-business/2/team/members/get_info Content-Type: application/json { "members": [{".tag": "email", "email": "user@company.com"}] }
Returns member with roles information (recommended).
bashPOST /dropbox-business/2/team/members/get_info_v2 Content-Type: application/json { "members": [{".tag": "email", "email": "user@company.com"}] }
Response:
json{ "members_info": [ { ".tag": "member_info", "profile": { "team_member_id": "dbmid:AAA...", "email": "user@company.com", "secondary_emails": [], "status": {".tag": "active"}, "name": {...}, "groups": ["g:..."] }, "roles": [ {"role_id": "...", "name": "Team", "description": "..."} ] } ] }
Member Selectors:
{".tag": "email", "email": "user@company.com"}{".tag": "team_member_id", "team_member_id": "dbmid:AAA..."}{".tag": "external_id", "external_id": "..."}bashPOST /dropbox-business/2/team/members/add Content-Type: application/json { "new_members": [ { "member_email": "newuser@company.com", "member_given_name": "Jane", "member_surname": "Smith", "send_welcome_email": true, "role": {".tag": "member_only"} } ] }
bashPOST /dropbox-business/2/team/members/suspend Content-Type: application/json { "user": {".tag": "email", "email": "user@company.com"}, "wipe_data": false }
bashPOST /dropbox-business/2/team/members/unsuspend Content-Type: application/json { "user": {".tag": "email", "email": "user@company.com"} }
bashPOST /dropbox-business/2/team/members/remove Content-Type: application/json { "user": {".tag": "email", "email": "user@company.com"}, "wipe_data": true, "transfer_dest_id": {".tag": "email", "email": "admin@company.com"}, "transfer_admin_id": {".tag": "email", "email": "admin@company.com"}, "keep_account": false }
bashPOST /dropbox-business/2/team/members/remove/job_status/get Content-Type: application/json { "async_job_id": "dbjid:..." }
Send or resend welcome email to pending members.
bashPOST /dropbox-business/2/team/members/send_welcome_email Content-Type: application/json {".tag": "email", "email": "pending@company.com"}
Update member profile information.
bashPOST /dropbox-business/2/team/members/set_profile_v2 Content-Type: application/json { "user": {".tag": "team_member_id", "team_member_id": "dbmid:AAA..."}, "new_given_name": "John", "new_surname": "Smith", "new_external_id": "emp-123" }
bashPOST /dropbox-business/2/team/members/delete_profile_photo_v2 Content-Type: application/json { "user": {".tag": "team_member_id", "team_member_id": "dbmid:AAA..."} }
bashPOST /dropbox-business/2/team/members/set_profile_photo_v2 Content-Type: application/json { "user": {".tag": "team_member_id", "team_member_id": "dbmid:AAA..."}, "photo": {".tag": "base64_data", "base64_data": "<base64-encoded-image>"} }
Change a member's admin role.
bashPOST /dropbox-business/2/team/members/set_admin_permissions_v2 Content-Type: application/json { "user": {".tag": "email", "email": "user@company.com"}, "new_roles": ["pid_dbtmr:..."] }
bashPOST /dropbox-business/2/team/members/secondary_emails/add Content-Type: application/json { "new_secondary_emails": [ { "user": {".tag": "email", "email": "user@company.com"}, "secondary_emails": ["alias@company.com"] } ] }
bashPOST /dropbox-business/2/team/members/secondary_emails/delete Content-Type: application/json { "emails_to_delete": [ { "user": {".tag": "email", "email": "user@company.com"}, "secondary_emails": ["alias@company.com"] } ] }
bashPOST /dropbox-business/2/team/members/secondary_emails/resend_verification_emails Content-Type: application/json { "emails_to_resend": [ { "user": {".tag": "email", "email": "user@company.com"}, "secondary_emails": ["alias@company.com"] } ] }
bashPOST /dropbox-business/2/team/groups/list Content-Type: application/json { "limit": 100 }
Response:
json{ "groups": [ { "group_name": "Engineering", "group_id": "g:1d31f47b...", "member_count": 5, "group_management_type": {".tag": "company_managed"} } ], "cursor": "AAZ...", "has_more": false }
bashPOST /dropbox-business/2/team/groups/get_info Content-Type: application/json { ".tag": "group_ids", "group_ids": ["g:1d31f47b..."] }
bashPOST /dropbox-business/2/team/groups/create Content-Type: application/json { "group_name": "Marketing Team", "group_management_type": {".tag": "company_managed"} }
bashPOST /dropbox-business/2/team/groups/members/add Content-Type: application/json { "group": {".tag": "group_id", "group_id": "g:1d31f47b..."}, "members": [ { "user": {".tag": "email", "email": "user@company.com"}, "access_type": {".tag": "member"} } ], "return_members": true }
bashPOST /dropbox-business/2/team/groups/members/remove Content-Type: application/json { "group": {".tag": "group_id", "group_id": "g:1d31f47b..."}, "users": [{".tag": "email", "email": "user@company.com"}], "return_members": true }
bashPOST /dropbox-business/2/team/groups/members/list Content-Type: application/json { "group": {".tag": "group_id", "group_id": "g:1d31f47b..."}, "limit": 100 }
Response:
json{ "members": [ { "profile": { "team_member_id": "dbmid:AAA...", "email": "user@company.com", "status": {".tag": "active"}, "name": {...} }, "access_type": {".tag": "member"} } ], "cursor": "...", "has_more": false }
bashPOST /dropbox-business/2/team/groups/update Content-Type: application/json { "group": {".tag": "group_id", "group_id": "g:1d31f47b..."}, "new_group_name": "Updated Name", "new_group_external_id": "ext-123" }
Note: System-managed groups (like "Everyone at...") cannot be updated.
bashPOST /dropbox-business/2/team/groups/delete Content-Type: application/json { ".tag": "group_id", "group_id": "g:1d31f47b..." }
For async group operations.
bashPOST /dropbox-business/2/team/groups/job_status/get Content-Type: application/json { "async_job_id": "dbjid:..." }
bashPOST /dropbox-business/2/team/team_folder/list Content-Type: application/json { "limit": 100 }
Response:
json{ "team_folders": [ { "team_folder_id": "13646676387", "name": "Company Documents", "status": {".tag": "active"}, "is_team_shared_dropbox": false, "sync_setting": {".tag": "default"} } ], "cursor": "AAb...", "has_more": false }
bashPOST /dropbox-business/2/team/team_folder/get_info Content-Type: application/json { "team_folder_ids": ["13646676387"] }
bashPOST /dropbox-business/2/team/team_folder/create Content-Type: application/json { "name": "New Team Folder", "sync_setting": {".tag": "default"} }
bashPOST /dropbox-business/2/team/team_folder/rename Content-Type: application/json { "team_folder_id": "13646676387", "name": "Renamed Folder" }
bashPOST /dropbox-business/2/team/team_folder/archive Content-Type: application/json { "team_folder_id": "13646676387", "force_async_off": false }
bashPOST /dropbox-business/2/team/team_folder/permanently_delete Content-Type: application/json { "team_folder_id": "13646676387" }
Activate an archived team folder.
bashPOST /dropbox-business/2/team/team_folder/activate Content-Type: application/json { "team_folder_id": "13646676387" }
bashPOST /dropbox-business/2/team/team_folder/update_sync_settings Content-Type: application/json { "team_folder_id": "13646676387", "sync_setting": {".tag": "default"} }
Response:
json{ "team_folder_id": "13646676387", "name": "Team Folder", "status": {".tag": "active"}, "is_team_shared_dropbox": false, "sync_setting": {".tag": "default"}, "content_sync_settings": [] }
bashPOST /dropbox-business/2/team/namespaces/list Content-Type: application/json { "limit": 100 }
Response:
json{ "namespaces": [ { "name": "Team Folder", "namespace_id": "13646676387", "namespace_type": {".tag": "team_folder"} }, { "name": "Root", "namespace_id": "13646219987", "namespace_type": {".tag": "team_member_folder"}, "team_member_id": "dbmid:AAA..." } ], "cursor": "AAY...", "has_more": false }
bashPOST /dropbox-business/2/team/devices/list_members_devices Content-Type: application/json {}
Response:
json{ "devices": [ { "team_member_id": "dbmid:AAA...", "web_sessions": [ { "session_id": "dbwsid:...", "ip_address": "192.168.1.1", "country": "United States", "created": "2026-02-15T08:26:33Z", "user_agent": "Mozilla/5.0...", "os": "Mac OS X", "browser": "Chrome" } ], "desktop_clients": [], "mobile_clients": [] } ], "has_more": false }
bashPOST /dropbox-business/2/team/devices/list_member_devices Content-Type: application/json { "team_member_id": "dbmid:AAA..." }
bashPOST /dropbox-business/2/team/devices/revoke_device_session Content-Type: application/json { ".tag": "web_session", "session_id": "dbwsid:...", "team_member_id": "dbmid:AAA..." }
bashPOST /dropbox-business/2/team/devices/revoke_device_session_batch Content-Type: application/json { "revoke_devices": [ {".tag": "web_session", "session_id": "dbwsid:...", "team_member_id": "dbmid:AAA..."} ] }
bashPOST /dropbox-business/2/team/linked_apps/list_members_linked_apps Content-Type: application/json {}
Response:
json{ "apps": [ { "team_member_id": "dbmid:AAA...", "linked_api_apps": [ { "app_id": "...", "app_name": "Third Party App", "linked": "2026-01-15T10:00:00Z" } ] } ], "has_more": false }
bashPOST /dropbox-business/2/team/linked_apps/list_team_linked_apps Content-Type: application/json {}
bashPOST /dropbox-business/2/team/linked_apps/revoke_linked_app Content-Type: application/json { "app_id": "...", "team_member_id": "dbmid:AAA..." }
bashPOST /dropbox-business/2/team/member_space_limits/get_custom_quota Content-Type: application/json { "users": [{".tag": "email", "email": "user@company.com"}] }
bashPOST /dropbox-business/2/team/member_space_limits/set_custom_quota Content-Type: application/json { "users_and_quotas": [ { "user": {".tag": "email", "email": "user@company.com"}, "quota_gb": 100 } ] }
List users excluded from automatic backup.
bashPOST /dropbox-business/2/team/member_space_limits/excluded_users/list Content-Type: application/json {}
bashPOST /dropbox-business/2/team/sharing_allowlist/list Content-Type: application/json {}
Response:
json{ "domains": [], "emails": [], "cursor": "...", "has_more": false }
bashPOST /dropbox-business/2/team/sharing_allowlist/add Content-Type: application/json { "domains": ["partner.com"], "emails": ["external@client.com"] }
bashPOST /dropbox-business/2/team/sharing_allowlist/list/continue Content-Type: application/json { "cursor": "..." }
bashPOST /dropbox-business/2/team_log/get_events Content-Type: application/json { "limit": 100, "category": {".tag": "members"} }
Response:
json{ "events": [ { "timestamp": "2026-02-15T08:27:36Z", "event_category": {".tag": "members"}, "actor": { ".tag": "admin", "admin": { "account_id": "dbid:AAC...", "display_name": "Admin User", "email": "admin@company.com" } }, "event_type": { ".tag": "member_add_name", "description": "Added team member name" }, "details": {...} } ], "cursor": "...", "has_more": false }
Event Categories:
apps - Third-party app eventscomments - Comment eventsdevices - Device eventsdomains - Domain eventsfile_operations - File and folder eventsfile_requests - File request eventsgroups - Group eventslogins - Login eventsmembers - Member eventspaper - Paper eventspasswords - Password eventsreports - Report eventssharing - Sharing eventsshowcase - Showcase eventssso - SSO eventsteam_folders - Team folder eventsteam_policies - Policy eventsteam_profile - Team profile eventstfa - Two-factor auth eventsbashPOST /dropbox-business/2/team_log/get_events/continue Content-Type: application/json { "cursor": "..." }
To access files on behalf of a team member, use the Dropbox-API-Select-User header with the member's team_member_id. This allows admin applications to access member files, shared folders, and file requests.
bashpython3 <<'EOF' import urllib.request, os, json data = json.dumps({"path": ""}).encode() req = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/files/list_folder', data=data, method='POST') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('Content-Type', 'application/json') req.add_header('Dropbox-API-Select-User', 'dbmid:AAA...') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
bashpython3 <<'EOF' import urllib.request, os, json data = json.dumps({}).encode() req = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/sharing/list_folders', data=data, method='POST') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('Content-Type', 'application/json') req.add_header('Dropbox-API-Select-User', 'dbmid:AAA...') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
bashpython3 <<'EOF' import urllib.request, os, json data = json.dumps({}).encode() req = urllib.request.Request('https://gateway.maton.ai/dropbox-business/2/file_requests/list_v2', data=data, method='POST') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('Content-Type', 'application/json') req.add_header('Dropbox-API-Select-User', 'dbmid:AAA...') print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2)) EOF
Note: The Dropbox-API-Select-User header requires the team_data.member scope. Use this to operate on user-level endpoints (files, sharing, etc.) on behalf of team members.
Dropbox Business uses cursor-based pagination. List endpoints return a cursor and has_more field.
Initial Request:
bashPOST /dropbox-business/2/team/members/list Content-Type: application/json { "limit": 100 }
Response:
json{ "members": [...], "cursor": "AAQ...", "has_more": true }
Continue with cursor:
bashPOST /dropbox-business/2/team/members/list/continue Content-Type: application/json { "cursor": "AAQ..." }
javascriptasync function listTeamMembers() { const response = await fetch( 'https://gateway.maton.ai/dropbox-business/2/team/members/list', { method: 'POST', headers: { 'Authorization': `Bearer ${process.env.MATON_API_KEY}`, 'Content-Type': 'application/json' }, body: JSON.stringify({ limit: 100 }) } ); return await response.json(); }
pythonimport os import json import urllib.request def list_team_members(): url = 'https://gateway.maton.ai/dropbox-business/2/team/members/list' data = json.dumps({'limit': 100}).encode() req = urllib.request.Request(url, data=data, method='POST') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('Content-Type', 'application/json') return json.load(urllib.request.urlopen(req)) def get_team_info(): url = 'https://gateway.maton.ai/dropbox-business/2/team/get_info' req = urllib.request.Request(url, data=b'null', method='POST') req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}') req.add_header('Content-Type', 'application/json') return json.load(urllib.request.urlopen(req))
null as the request body.tag to indicate the type (e.g., {".tag": "email", "email": "..."}).tag with email, team_member_id, or external_id to identify membersDropbox-API-Select-User with team_member_id to access user-level endpoints (files, sharing) on behalf of membersmembers/list_v2, members/get_info_v2) for enhanced responses with roles informationteam/reports/get_activity, get_devices, get_membership, get_storage) are deprecatedjq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments| Status | Meaning | |--------|---------| | 400 | Bad request or invalid parameters | | 401 | Invalid API key or expired token | | 403 | Permission denied (requires team admin) | | 404 | Resource not found | | 409 | Conflict (e.g., member already exists) | | 429 | Rate limited | | 4xx/5xx | Passthrough error from Dropbox API |
json{ "error_summary": "member_not_found/...", "error": { ".tag": "member_not_found" } }
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-20 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-07 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-03 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-18 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-04 | pass→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-12 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-05 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-22 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-24 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-16 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-06 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-02 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-21 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-08 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-13 | pass→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-14 | pass→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-15 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-11 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-09 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-10 | pass→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-17 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-19 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-23 | pass→pass | — | — | — | — | — | — | — | — | — | — | — | — |
case-25 | fail→fail | — | — | — | — | — | — | — | — | — | — | — | — |
case-26 | fail→pass | — | — | — | — | — | — | — | — | — | — | — | — |
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. 26 cases were attempted. The headline lift of +58 percentage points is the difference between those two pass rates over the 26 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
The per-case answers from this run were removed by the retention sweep, so the case table below shows the verdicts without the text either arm produced. The counts above were recorded at the time and are unaffected. Answers are now kept for 180 days.
Other measured skills in the registry, with their headline benchmark lift.