Rewrite manage-apis skill from verified platform behavior, #6 - #13
Open
edipsopa wants to merge 1 commit into
Open
Rewrite manage-apis skill from verified platform behavior, #6#13edipsopa wants to merge 1 commit into
edipsopa wants to merge 1 commit into
Conversation
Updated the skill description and added details about managing Neptune DXP API artifacts, including tools and common patterns.
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.
Closes #6
Full rewrite of the manage-apis skill based on the current MCP server implementation in planet9, with every claim verified against the source and live-tested on an internal DXP instance (clearly-named probe artifacts, all deleted afterwards).
Headline changes vs the previous skill:
apiTypeis settable at creation (the old "read-only over MCP" section was stale) and is now documented as never changed after creation —save_apiwon't stop a flip (verified live: it persists silently and produces an unsupported artifact), so the skill hard-forbids it and gives a recreate-and-migrate path instead.property.reference,parent,isParent, andparameter.typeare dropped without any error (verified live) — the root cause of the reported "couldn't fix the request/response types" failure. The skill prescribes the shapes that provably store and export correctly: flat definitions, content-level references, inline nesting only incontent[].items.nullarray = wiped, present array = replaced wholesale — so minimal payloads are the safe default and a get→save round-trip of imported definitions is a destructive operation the skill warns against.rolebut the entity relation isroles; verified live) — routed to the Cockpit; the previousrole:write recipe never worked.delete_apireports success for nonexistent ids, no endpoint protocol validation, and Script Editor hides MCP-created APIs (enableScriptEditoris not settable over MCP).restrictAccessapplies only when the role check doesn't run;enableProxyis a consumer-side switch (App Designer / generated-client routing), not a proxy-route gate; table-API runtime access is gated by the table's own roles, not the API artifact's.A detailed verification log (each claim mapped to a source location or a live experiment) is available and can be attached as a PR comment on request.
Also noticed while verifying: the 24.15 docs page
mcp-server/apis.htmlstill has an intro paragraph saying APIs are exposed read-only over MCP, while the same page documentssave_api/delete_api— worth a docs fix.