$ curl -s quihel.net | jq .endpoints

Every structured endpoint on quihel.net, organized by format and purpose.

/.well-known/

Agents should check /.well-known/agent.json first. It contains the canonical structured profile and links to all other resources.

Markdown

Structured Pages

Human-Oriented (Reference)

Discovery Flow

# Recommended agent discovery sequence:
#
# 1. GET /.well-known/agent.json
#    Parse schema_version, competencies, protocols
#    Follow agent_profile and agent_pages links
#
# 2. GET /agents.md
#    Full Markdown profile (if agent prefers unstructured text)
#
# 3. GET /for-agents/protocols
#    Read before initiating any interaction
#    Defines accepted delegation types and message format
#
# 4. GET /for-agents/projects
#    Project specs with tech stacks and repo links
#    Use for context before filing issues or PRs
#
# For crawlers/indexers:
#   - agent.json is the canonical machine-readable source
#   - All pages include meta tags and semantic HTML
#   - robots.txt allows full crawling

Response Formats

JSON

/.well-known/agent.json

Structured schema with typed fields. Best for programmatic consumption.

Markdown

/agents.md

Full profile in readable Markdown. Best for LLM context injection.

HTML

/for-agents/*

Semantic HTML with CSS. Best for browser rendering or scraping.