Customer Website
Quickstart, auth, endpoint examples, and the CDF import/read workflow.
platform3 / nweamap / 1edtech / skill_pack
Install this instructions-only pack when an agent has NWEAMap 1EdTech credentials and needs to import a MAP Growth CDF bundle, read the import receipt, ask for the test of record, or audit all sittings. The pack proves itself against the live surface and carries none of the norms, dedupe, growth-window, term parsing, or calculator logic the platform owns.
The folder is installable for Claude Code, Codex CLI, OpenAI-compatible agents, and Perplexity Computer. It follows the Agent Skills benchmark shape: versioned SKILL.md, references loaded only when needed, and host metadata.
export PACK_URL="https://platform3-andymontgomery-9773s-projects.vercel.app/nweamap/1edtech/skill_pack"
export CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
export CODEX_SKILL_DIR="$CODEX_HOME/skills/timeback-nweamap-1edtech"
mkdir -p "$CODEX_SKILL_DIR/references" "$CODEX_SKILL_DIR/agents"
curl -fsS "$PACK_URL/pack/SKILL.md" -o "$CODEX_SKILL_DIR/SKILL.md"
curl -fsS "$PACK_URL/pack/references/worked-example.md" -o "$CODEX_SKILL_DIR/references/worked-example.md"
curl -fsS "$PACK_URL/pack/references/runnable-check.md" -o "$CODEX_SKILL_DIR/references/runnable-check.md"
curl -fsS "$PACK_URL/pack/references/source-contract.md" -o "$CODEX_SKILL_DIR/references/source-contract.md"
curl -fsS "$PACK_URL/pack/references/leak-check.md" -o "$CODEX_SKILL_DIR/references/leak-check.md"
curl -fsS "$PACK_URL/pack/agents/openai.yaml" -o "$CODEX_SKILL_DIR/agents/openai.yaml"
curl -fsS "$PACK_URL/pack/agents/codex.yaml" -o "$CODEX_SKILL_DIR/agents/codex.yaml"
The skill points agents back to the approved hosted docs instead of embedding a second copy of surface behavior.
Quickstart, auth, endpoint examples, and the CDF import/read workflow.
Raw CDF mirror tables, platform sidecars, sitting-scope rules, and query guardrails.
GAP-1 through GAP-6 plus the NITD-018 boundary that keeps Alpha reports out of this pack.
The worked example mints a demo token, downloads the five CDF files, posts a multipart CDF import, reads the import detail, and asks the surface for the test-of-record row. It performs no client-side row selection.
{
"student_id": "stu-12345",
"subject": "Math",
"test_rit_score": 211,
"test_id": "1110000001",
"is_test_of_record": true,
"test_of_record_reason": "highest_rit",
"norms_reference_data": "2025",
"growth_measure_yn": "Y"
}
The runnable check follows the pack's instructions and asserts the platform's own answers. It verifies descriptor, demo mint, the 143-column AssessmentResults file, import row counts, test-of-record read-back, and all-sittings audit rows.
| Check | Platform Answer | Owned By |
|---|---|---|
| Demo token mint | token_type=Bearer, tenant_id=demo | Implementation API |
| AssessmentResults header | 143 columns | NWEA CDF contract |
| Import row counts | 1 / 3 / 1 / 0 / 1 | Surface import evidence |
| Test of record | stu-12345, Math, RIT 211, highest_rit | sittingScope=test_of_record |
| All sittings | Math rows RIT 211 and 204 | sittingScope=all&includeDeleted=true |
The pack asks the platform for data. It does not compute or clean the data itself.
Exact MAP Quadrants report regeneration routes to Alpha under NITD-018. This 1EdTech pack stays on CDF import/read/sync/audit and calls the NWEAMAP-owned /nweamap/v1/r90* surface for PowerPath RIT-to-grade lookup when needed.
Every link below is root-absolute so it resolves from the canonical URL without a trailing slash.