Pack Files
Fetch every file below into one case-1edtech-standards-browser/ folder. The pack is instructions-only; it contains no CASE schema parser, standards catalog, graph repair, or app-owned persistence.
export CASE_SKILL_PACK_URL="https://platform3-andymontgomery-9773s-projects.vercel.app/case/1edtech/skill_pack"
mkdir -p case-1edtech-standards-browser/agents case-1edtech-standards-browser/references case-1edtech-standards-browser/checks
curl -fsSL "$CASE_SKILL_PACK_URL/pack/SKILL.md" \
-o case-1edtech-standards-browser/SKILL.md
curl -fsSL "$CASE_SKILL_PACK_URL/pack/agents/openai.yaml" \
-o case-1edtech-standards-browser/agents/openai.yaml
for file in worked-example app-build-protocol auth-and-headers leak-check; do
curl -fsSL "$CASE_SKILL_PACK_URL/pack/references/$file.md" \
-o "case-1edtech-standards-browser/references/$file.md"
done
curl -fsSL "$CASE_SKILL_PACK_URL/pack/checks/case_surface_check.sh" \
-o case-1edtech-standards-browser/checks/case_surface_check.sh
chmod +x case-1edtech-standards-browser/checks/case_surface_check.sh
- SKILL.mdManifest, trigger guidance, source-of-truth links, credential flow, endpoint list, and agent workflow.
- agents/openai.yamlAgent-facing UI metadata for Codex-style skill discovery; metadata only, no surface logic.
- references/worked-example.mdRunnable mint/read/write/verify sequence against the live demo tenant.
- references/app-build-protocol.mdInstructions for standards-browser apps that persist CASE-shaped data through the surface only.
- references/auth-and-headers.mdAuthorization, demo mint, real-tenant token, idempotency, pagination, error, and ETag guidance.
- references/leak-check.mdBinary stop checklist and routing table for surface-owned logic leaks.
- checks/case_surface_check.shRunnable API-only proof that the browser recipe reproduces the platform package-export answer key.