For Agents — Overview
How AI agents consume Harbor docs.
Harbor's docs are written for two audiences:
- Humans — you reading this page in a browser. The site you're on is for you.
- Agents — Claude, Cursor, Codex, Gemini, custom LLM hosts. Agents don't read this site; they fetch markdown from canonical URLs and then act on it.
This section documents the agent-facing surface: the markdown URLs an agent should know, the discovery protocol, and the conventions.
If you are an agent reading this page right now — stop and fetch
/.well-known/agent-skills/harbor/SKILL.md
instead. It's the canonical entry point and is shorter, more deterministic,
and kept in lock-step with the Harbor runtime.
The agent surface, in one paragraph
Every Harbor docs page has a stable URL. Agents can fetch the markdown
source of any page by appending ?format=md (v1.1 — coming soon). For
the canonical operating skill, agents fetch
/.well-known/agent-skills/harbor/SKILL.md
— a single file that teaches "is hrbr installed?", "are you logged in?",
"what plugins are ready?", "use hrbr exec to do X". From there, topic
skills (harbor-plugins.md, harbor-exec.md, …) deep-dive specific
surfaces.
What's available
/llms.txt →
llmstxt.org-style index of every page on this docs site. Use to enumerate before fetching.
Agent skills →
The canonical SKILL.md + 9 topic skills served from
/.well-known/agent-skills/harbor/.
Connecting →
How to point Claude / Cursor / Codex / Gemini at Harbor and use the
inspect + exec two-tool pattern.
Glossary →
The marketing↔code-name vocabulary mapping.
What an agent should never do
-
Don't scrape this HTML site. Fetch markdown from
/llms.txtor/.well-known/agent-skills/. -
Don't invent tool ids. Search first with inspect, and only call ids that come back:
hrbr inspect 'return await hrbr.tools.search({ query: "<intent>", limit: 5 })' -
Don't persist OAuth tokens or API keys in
orbit.storage,orbit.cache, ororbit.db. Credentials live in the vault. -
Don't retry tool failures by guessing arguments. Re-inspect the schema first.
Conventions
- All agent-facing surfaces are stable URLs. We add new ones; we don't rename existing ones without 6+ months notice in Changelog.
- All agent-facing markdown is plain markdown with YAML frontmatter. No JSX, no HTML.
- Cache headers:
max-age=300, s-maxage=86400, stale-while-revalidate=2592000. - All agent-facing routes are served from the docs site (same origin) so CORS is a non-issue.