1Password developer documentation is optimized for consumption by large language models (LLMs). Whether you’re using an AI coding assistant, building an agent, or working with a chatbot, you can point it to our documentation for accurate, up-to-date context about 1Password developer tools.Documentation Index
Fetch the complete documentation index at: https://www.1password.dev/llms.txt
Use this file to discover all available pages before exploring further.
Quick start
Give your LLM one of these URLs depending on what you need:| What you need | URL |
|---|---|
| Full index of all docs with descriptions | /llms.txt |
| All documentation in a single file | /llms-full.txt |
| Any single page as Markdown | Append .md to the URL of any article |
How it works
llms.txt
The/llms.txt file follows the llms.txt standard , providing a structured index of all documentation pages with titles, URLs, and descriptions. This is the best place to start for any LLM. It can scan the index to find relevant pages, then retrieve individual pages as needed.
Full documentation in one file
If your LLM has a large enough context window,/llms-full.txt contains the complete 1Password developer documentation in a single file — useful when you want full context in one request rather than fetching pages individually.
Individual pages as Markdown
Every documentation page is available as clean Markdown by appending.md to its URL. For example:
This is useful for retrieval-augmented generation (RAG) workflows or when you only need context about a specific topic.
You can also use the Copy page as Markdown button at the top of any page to copy the Markdown content directly to your clipboard and paste it into your LLM conversation.
Using 1Password docs with AI tools
Cursor, Windsurf, and other AI IDEs
Most AI coding assistants let you attach documentation context. To use 1Password developer documentation, do one of the following:- Paste
https://www.1password.dev/llms-full.txtwhen prompted for context, or include it in your prompt. - In Cursor , use the
@Docsfeature to addhttps://www.1password.dev/llms.txtas a documentation source.
ChatGPT, Claude, and other chatbots
When asking an LLM about 1Password developer tools, do one of the following:- Share the
/llms.txtor/llms-full.txtURL and ask the LLM to read it. - Use the Copy page as Markdown button on any docs page to copy its content, then paste it into your conversation for precise context.
AI agents and automation
If you’re building an agent that needs to interact with 1Password:- Use
/llms.txtas the entry point for your agent to discover available documentation. - Fetch individual pages as Markdown by appending
.mdto any URL for RAG (retrieval-augmented generation) workflows. - Use
/llms-full.txtwhen you need full context in a single request.
What’s included
The LLM-friendly files cover all 1Password developer documentation:- 1Password CLI: Command reference, guides for secrets management, shell plugins, and scripting.
- 1Password SDKs: Python, JavaScript, and Go SDK guides for programmatic secrets access.
- SSH & Git: SSH key management, Git commit signing, and SSH agent configuration.
- Secrets Automation: Service accounts, Connect server, CI/CD integrations (GitHub Actions, CircleCI, Jenkins), and Kubernetes operator.
- Environments: 1Password Environments for managing environment variables.
- Events API: Events reporting API reference and integration guides.
- Partnership API: API for provisioning and managing 1Password accounts programmatically.
About the llms.txt standard
Thellms.txt standard is an open specification for making website content accessible to LLMs. It provides a structured, machine-readable Markdown index at a well-known URL (/llms.txt), making it easy for AI systems to discover and consume documentation without parsing complex HTML.