skills/cpt-codes/SKILL.md
CPT procedure code search, lookup, cost/RVU data, and ICD-10 linking. Activates when tasks involve procedure codes, surgical codes, RVU values, Medicare fee schedules, or medical billing.
npx skillsauth add sequoia-port/codes cpt-codesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search, lookup, and get cost data for CPT procedure codes via the @sequoiaport/codes package.
First check if SEQUOIA_CODES_API_KEY is already set in the environment. If it is, skip key generation entirely and proceed to usage. Only if no key exists, see AGENT_PROMPT.md for how your agent can obtain one via the agent auth flow.
Once you have an API key, you can set up the MCP server for direct tool access from Claude Code, Cursor, or VS Code. See MCP_SETUP.md.
import { SequoiaCodesClient } from "@sequoiaport/codes";
const client = new SequoiaCodesClient({
apiKey: process.env.SEQUOIA_CODES_API_KEY!,
});
client.cpt.searchCode({ query, limit? })Hybrid search for CPT codes by procedure description.
const results = await client.cpt.searchCode({
query: "knee replacement surgery",
limit: 10,
});
// results.results → [{ code, short_description, long_description, category, specialty, similarity, ... }]
client.cpt.identifyCode({ code })Look up a specific CPT code.
const result = await client.cpt.identifyCode({ code: "27447" });
// result.result → { code: "27447", short_description: "Total knee arthroplasty", ... }
client.cpt.getCost({ code })Get RVU and cost data for a CPT code.
const cost = await client.cpt.getCost({ code: "99213" });
// cost.cost → { code, rvu_work, rvu_pe, rvu_mp, rvu_total, conversion_factor, fee_schedule }
client.cpt.linkIcd10({ code })Get ICD-10 linking/search terms for a CPT code.
const linking = await client.cpt.linkIcd10({ code: "45378" });
// linking → { code, code_type, short_description, indications, search_terms }
# Search CPT codes
curl -X GET "https://api.sequoiacodes.com/v1/cpt/searchCode?query=knee%20arthroscopy&limit=10" \
-H "Authorization: Bearer $SEQUOIA_CODES_API_KEY"
# Lookup specific code
curl -X GET "https://api.sequoiacodes.com/v1/cpt/identifyCode?code=99213" \
-H "Authorization: Bearer $SEQUOIA_CODES_API_KEY"
# Get RVU/cost data
curl -X GET "https://api.sequoiacodes.com/v1/cpt/getCost?code=99213" \
-H "Authorization: Bearer $SEQUOIA_CODES_API_KEY"
# Get ICD-10 linking terms
curl -X GET "https://api.sequoiacodes.com/v1/cpt/linkIcd10?code=29881" \
-H "Authorization: Bearer $SEQUOIA_CODES_API_KEY"
Each CPT code result includes:
code - The CPT code (e.g., "99213")code_type - "CPT" or "HCPCS"short_description / long_description - Descriptionsindications - Clinical indicationscategory / specialty - Classificationsimilarity - Search relevance score (0-1)rvu_work / rvu_pe / rvu_mp - RVU components (when available)development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.