From ramp-pack
Implements Ramp API patterns with OAuth2 for corporate card management, expense tracking, and cost tuning in Python. Useful for accounting sync workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ramp-pack:ramp-cost-tuningThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Implementation patterns for Ramp cost tuning using the Developer API with OAuth2 authentication.
Implementation patterns for Ramp cost tuning using the Developer API with OAuth2 authentication.
ramp-install-auth setupimport os, requests
# Obtain token
token_resp = requests.post(f"{os.environ['RAMP_BASE_URL'].replace('/v1','')}/v1/token", data={
"grant_type": "client_credentials",
"client_id": os.environ["RAMP_CLIENT_ID"],
"client_secret": os.environ["RAMP_CLIENT_SECRET"],
})
access_token = token_resp.json()["access_token"]
headers = {"Authorization": f"Bearer {access_token}"}
cards = requests.get(f"{os.environ['RAMP_BASE_URL']}/cards", headers=headers)
print(f"Cards: {len(cards.json()['data'])}")
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Expired token | Re-authenticate |
| 429 Rate Limited | Too many requests | Implement backoff |
| 403 Forbidden | Insufficient permissions | Check API app permissions |
See related Ramp skills for more workflows.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin ramp-packImplements Ramp Developer API patterns in Python with OAuth2 for corporate card management, expenses, and performance tuning. Covers token auth, API calls, and error handling.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.