LLM
Tiger OpenAPI provides a standard llms.txt file, allowing AI coding tools (Claude, Cursor, Copilot, etc.) to directly read the complete API documentation for more accurate code generation.
URL
https://docs.itigerup.com/llms.txt
What is llms.txt
llms.txt is an open standard that places a /llms.txt file at the root of a website, listing all documentation links in Markdown format for LLMs to quickly index. After an AI tool reads this file, it can fetch the full content of any sub-page on demand — without relying on web crawlers or training data.
Usage
In Claude
Reference the documentation link directly in your conversation:
Please read https://docs.itigerup.com/llms.txt, then help me query AAPL K-line data using the Python SDK.
Claude will automatically fetch the relevant documentation pages (e.g., quote-common.md) and generate accurate code.
In Cursor / Windsurf
Add the documentation source in Docs settings:
- Open Settings → Docs (or the
@Docscommand) - Add
https://docs.itigerup.com/llms.txt - AI can then reference the complete Tiger OpenAPI documentation in completions and conversations
In other llms.txt-compatible tools
Any AI tool that follows the llms.txt standard can use this URL directly — no additional configuration needed.
llms.txt vs. AI Skill
| llms.txt | AI Skill | |
|---|---|---|
| Target users | All AI tools supporting llms.txt | Coding AIs like Claude Code, Cursor, Kiro |
| Content source | Fetches the latest docs in real time | Pre-built structured domain knowledge |
| Code generation quality | Depends on the tool's fetching and comprehension ability | Optimized code templates and best practices |
| Setup | Paste URL and go | npx skills add tigerfintech/tigeropen-skill |
The two can be used together: use llms.txt to get the latest API reference, and AI Skill for more accurate code templates.
