Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .agents/skills/jacobian-math/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ stable built-in contracts; replace examples but preserve JSON types:

For other outcomes or unfamiliar payloads, use `math.find` with a specific
plain-language outcome and implied domain or mode; no capability ID is required.
Use low `limit` values. Inspect `CONTRACT` only when the typed schema is needed.
A card's `invocation_example`, or required top-level fields, may be enough.
Use low `limit` values. For a selected operation's schema, call
`math.find({"capability_id":"<exact-id>","view":"CONTRACT"})`; never send
`mode: "CONTRACT"` to `math.run` or put `CONTRACT` in a query. A card's
`invocation_example`, or required top-level fields, may be enough.

Do not add a discovery domain filter unless its exact installed spelling is
known. When discovery exposes recovery paths, follow those fields (for example,
Expand Down
6 changes: 4 additions & 2 deletions npm/skills/jacobian-math/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ stable built-in contracts; replace examples but preserve JSON types:

For other outcomes or unfamiliar payloads, use `math.find` with a specific
plain-language outcome and implied domain or mode; no capability ID is required.
Use low `limit` values. Inspect `CONTRACT` only when the typed schema is needed.
A card's `invocation_example`, or required top-level fields, may be enough.
Use low `limit` values. For a selected operation's schema, call
`math.find({"capability_id":"<exact-id>","view":"CONTRACT"})`; never send
`mode: "CONTRACT"` to `math.run` or put `CONTRACT` in a query. A card's
`invocation_example`, or required top-level fields, may be enough.

Do not add a discovery domain filter unless its exact installed spelling is
known. When discovery exposes recovery paths, follow those fields (for example,
Expand Down
2 changes: 2 additions & 0 deletions tests/unit/tooling/test_codex_visibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ def test_codex_skill_routes_exact_outcomes_without_catalog_projection() -> None:
skill_flat = re.sub(r"\s+", " ", skill)
assert "Do not enumerate, filter, or print `ALL_TOOLS`" in skill_flat
assert "text(r.structuredContent ?? r)" in skill
assert 'math.find({"capability_id":"<exact-id>","view":"CONTRACT"})' in skill
assert 'never send `mode: "CONTRACT"` to `math.run`' in skill_flat
assert "never reconstruct or paraphrase such a record" in skill_flat
assert "required task authorization and bindings are preserved" in skill_flat
for guidance in (
Expand Down
Loading