Clearstreet borrow check
Skill clear-street/clearstreet-skills/skills/clearstreet-borrow-check
Check the borrow / short-sale / margin status of a US stock or ETF — easy-to-borrow flag, threshold-security and short-prohibited flags, long and short margin rates, PTP (publicly-traded partnership) flag, liquidation-only status, and average daily volume — and explain each flag in plain English. Use when the user asks "is X hard to borrow", "can I short X", "what's the margin rate on X", "is X on the threshold list", or "is X a PTP".From its SKILL.md
npx -y skills add clear-street/clearstreet-skills --skill clearstreet-borrow-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.0 KB, 412 tokens by cl100k_base, as published. Nobody here has run it
Borrow Check
Translate the borrow, margin, and short-sale flags on a US instrument into a plain-English verdict. Useful for short-sellers, options structurers, and margin traders.
Prerequisites
- Python 3.9+ (standard library only)
CLEARSTREET_API_KEYset in the environment — see the repo README
Quick start
python3 scripts/borrow.py NVDA
python3 scripts/borrow.py GME AAPL TSLA # multiple tickers
Usage
borrow.py SYMBOL [SYMBOL ...] [--json]
Examples
| Ask | Command |
|---|---|
| "Is GME hard to borrow?" | borrow.py GME |
| "Can I short TSLA?" | borrow.py TSLA |
| "What's the margin rate on NVDA?" | borrow.py NVDA |
| "Is BX a PTP?" | borrow.py BX |
| "Borrow status for NVDA, AMD, AVGO" | borrow.py NVDA AMD AVGO |
Output
Per symbol: a one-line verdict, a flag table, and plain-English notes on each non-default flag.
Workflow
- Run
python3 scripts/borrow.py <SYMBOL>.... - Present the output as-is — it's already explanatory. Don't add an instrument-identity table with option-only fields (expiry / strike) or the internal instrument id.
- For company context, chain to
clearstreet-fundamentals-deep-diveorclearstreet-omni-research.
See reference.md for the full field list and what each flag means.
Safety
Read-only. Does not place trades or recommend positions — it reports the operational and regulatory state of an instrument. Flags can change intraday. Output is informational, not investment advice.
What ships with it: 3 files
11.9 KB alongside SKILL.md, 2 of them executable
scripts/
- borrow.pyruns6.0 KB
- clearstreet_client.pyruns3.8 KB
- reference.md2.1 KB
Gives 0 of the 12 instructions most quality gates skills give in 412 tokens
Counted across 1,524 of the 2,830 authors here whose files we hold, read 2026-09-06
- Read full output and check exit codein 45 of 1524, across 40 files
- Verify output confirms the claimin 44 of 1524, across 39 files
- Identify the command that proves the claimin 43 of 1524, across 39 files
- Execute the full verification commandin 36 of 1524, across 30 files
- Produce a verification reportin 34 of 1524, across 18 files
- Review git diff changesin 30 of 1524, across 16 files
- Fix build failures immediatelyin 29 of 1524, across 9 files
- Group findings by severityin 28 of 1524
- State claim only with evidencein 27 of 1524, across 22 files
- Verify regression tests with red-green cyclein 26 of 1524, across 22 files
- Run the full test suitein 26 of 1524, across 25 files
- Run test suite with coveragein 25 of 1524, across 10 files
Said here and by no other author read
- Run the borrow script with ticker symbols
- Present the script output as is
- Chain to fundamentals or research for company context
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.