feat(observatory): add agent discovery surfaces and CTEF conformance routes#28
Draft
vdineshk wants to merge 1 commit into
Draft
feat(observatory): add agent discovery surfaces and CTEF conformance routes#28vdineshk wants to merge 1 commit into
vdineshk wants to merge 1 commit into
Conversation
…routes Adds 8 new routes to Observatory worker: - /.cursorrules (MCP trust gate cursor rule) - /docs/cursor-rule.md (markdown documentation) - /install (SDK and API install instructions) - /agent-onboarding/SKILL.md (agent onboarding with frontmatter) - /.well-known/agent-card.json (A2A agent card spec) - /.well-known/mcp/server-card.json (MCP server card) - /.well-known/ctef-conformance (CTEF v0.3.2 §4.5 self-attestation) - /api/ctef/validate (sync live endpoint to source) Also adds Apex AI user-agent content negotiation at root. Deployed: version d087dc9e-f457-48db-9552-cb468cb5dd60
7 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/.cursorrules— MCP trust gate cursor rule (text/plain)/docs/cursor-rule.md— markdown documentation/install— SDK + API install instructions/agent-onboarding/SKILL.md— agent onboarding with frontmatter (name: dominion-observatory)/.well-known/agent-card.json— A2A agent card spec (schemaVersion 1.0, 4 skills, ctef_conformance ref)/.well-known/mcp/server-card.json— MCP server card/(redirects to SKILL.md)/.well-known/ctef-conformance— CTEF v0.3.2 §4.5 self-attestation URI (first empire claim)/api/ctef/validate— synced live production code to source (prevents regression on future deploy)Deploy status
Already deployed: version
d087dc9e-f457-48db-9552-cb468cb5dd60All 8 routes verified HTTP 200 + correct content shape. All 6 spec-cited endpoints regression-free.
Why this matters
/.well-known/ctef-conformanceis a novel primitive — first CTEF v0.3.2 §4.5 conformance self-attestation URI pattern in the ecosystem (CTEF publishes 2026-05-19)Test plan
curl -o /dev/null -w "%{http_code}" https://dominion-observatory.sgdata.workers.dev/.cursorrules→ 200curl -o /dev/null -w "%{http_code}" https://dominion-observatory.sgdata.workers.dev/agent-onboarding/SKILL.md→ 200curl -o /dev/null -w "%{http_code}" https://dominion-observatory.sgdata.workers.dev/.well-known/agent-card.json→ 200curl -o /dev/null -w "%{http_code}" https://dominion-observatory.sgdata.workers.dev/.well-known/ctef-conformance→ 200Generated by Claude Code