docs(platform-ops): rename model-caps endpoint to cap.json#3
Merged
Conversation
The public model catalogue endpoint was renamed model-caps.json -> cap.json (usezombie/usezombie#373); the old path now 404s. Update the self-managed handoff reference URL and the SKILL anti-pattern row to the new name. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
The public model catalogue endpoint was renamed
model-caps.json→cap.jsonin usezombie/usezombie#373 (old path now404s, no alias). This corrects the two stale references in theusezombie-install-platform-opsskill:references/self-managed-handoff.md— the example URL and "model-caps endpoint" prose.SKILL.md— the "Calling the model-caps endpoint directly" anti-pattern row.Prose-only; runtime is unaffected (the skill resolves provider values from
doctor, not this endpoint).Note
The
chore/agent-terminologybranch carries the same prose and will pick this up when it reconciles withmain.🤖 Generated with Claude Code
Greptile Summary
Renames the stale
model-caps.jsonendpoint reference tocap.jsonacross two documentation files following the upstream API rename in usezombie/usezombie#373.SKILL.md: Updates the "Common Mistakes" anti-pattern row label from "Calling the model-caps endpoint directly" to "Calling the cap.json endpoint directly."references/self-managed-handoff.md: Corrects the example URL (model-caps.json→cap.json) and the surrounding prose to match.Confidence Score: 5/5
Safe to merge — purely documentation updates with no runtime impact.
Both changes are prose-only: the endpoint name and URL are corrected in exactly the two places cited in the PR description, and a repo-wide search confirms no remaining model-caps references exist.
No files require special attention.
Important Files Changed
model-caps.jsontocap.jsonand aligns the surrounding prose to match. No logic changes.Sequence Diagram
sequenceDiagram participant Agent as AI Agent / Skill participant Doctor as zombiectl doctor participant API as api.usezombie.com Agent->>Doctor: Run doctor (readiness check) Doctor-->>Agent: tenant_provider block (resolved model + cap) Note over Agent,Doctor: Values already resolved — no extra network call needed alt "Anti-pattern (documented mistake #6)" Agent->>API: GET /_um/.../cap.json API-->>Agent: Model list with context caps Note over Agent,API: Redundant — doctor already provided these values endReviews (1): Last reviewed commit: "docs(platform-ops): rename model-caps en..." | Re-trigger Greptile