- Use
llms.txtwhen your tool can load a URL as context. - Use the Code Storage skill when your tool supports skill files or local instruction bundles.
Option 1: Add llms.txt
Give your LLM or agent this URL as context:
llms.txt is a compact, model-readable version of the documentation. It is the simplest option
when your tool has a field for URLs, external context, or project instructions.
Use it when you want the model to answer questions like:
- Which SDK method creates a repository?
- What parameters does
createCommitaccept? - How should I authenticate HTTP API requests?
- How do Git remotes, branches, commits, and archives work in Code Storage?
Option 2: Install the Code Storage skill
Install the Code Storage skill from the SDK repository:- Choose between the SDK, HTTP API, and Git protocol for a task.
- Generate implementation code using the right method names and options.
- Follow Code Storage conventions while creating repos, branches, commits, and files.
- Reuse the same Code Storage guidance across multiple prompts or projects.
Choosing an option
Usellms.txt for quick setup and one-off sessions. Use the skill when your tool supports local
skills and you want the Code Storage instructions to travel with the agent.
You can also use both. Add llms.txt as live documentation context, then install the skill so the
agent has stable task instructions for how to apply those docs.