Farming Labs Docs Website Skill
Use this skill when reading or implementing from the hosted Farming Labs docs website.
Start Here
- Fetch
/.well-known/agent.jsonfirst. - Use
/.well-known/api-catalogfor RFC 9727 API discovery. - Use
/.well-known/agent-skills/index.jsonto discover all published skills and choose by name and description. - Verify each index digest against the exact artifact bytes. Skills with companion files are indexed as deterministic archives; their
SKILL.md,references/,scripts/, andassets/files also remain directly readable. - Use
/.well-known/skills/index.jsononly when a client requires the legacy discovery shape. - Fetch
/AGENTS.mdfor coding-agent operating instructions. - Read
/docs.mdfor the root docs page. - Read
/docs/{slug}.mdfor page-specific markdown. - On Next.js docs routes, you can also read
/docs/{slug}withSignature-Agentfor the same markdown. - Search with
/api/docs?query={query}when the right page is unknown. - Use
/llms.txtfor a compact index and/llms-full.txtfor full markdown context. - Use
/api/docs?format=openapifor the machine-readable API schema when API routes matter. - Use
/mcpor/.well-known/mcpwhen MCP is available. Published skill files are resources atdocs://skills/{name}/{path}; text files return text and binary assets return base64 blobs. Preferlist_docsto inspect sections,search_docsto find a topic,get_contextfor token-budgeted retrieval,read_pageto fetch a known page or heading,get_code_examplesto extract runnable snippets, andget_config_schemabefore editingdocs.config.ts.