원클릭으로
adaptivetest
Adaptive testing engine with IRT/CAT, AI question generation, and personalized learning recommendations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Adaptive testing engine with IRT/CAT, AI question generation, and personalized learning recommendations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Bloom Mission Discovery — find missions matched to your taste, submit content, and track rewards. Powered by Bloom Protocol.
DESCRIPTION of what this skill does. Include specific trigger keywords and scenarios. Use when: scenario1, scenario2, scenario3.
Find and complete paid tasks on the 0xWork decentralized marketplace (Base chain, USDC escrow). Use when: the agent wants to earn money/USDC by doing work, discover available tasks, claim a bounty, submit deliverables, check earnings or wallet balance, or set up as a 0xWork worker. Task categories: Writing, Research, Social, Creative, Code, Data. NOT for: posting tasks (use the website), managing the 0xWork platform, or frontend development.
HSM-backed secret management for AI agents — store, retrieve, rotate, and share secrets via the 1Claw vault without exposing them in context.
1Password UI tab for OpenClaw dashboard. Manage secrets, credential mappings, and auth state from the Control UI.
One-step Safe rebalancer using on-chain 31Third policies.
| name | adaptivetest |
| description | Adaptive testing engine with IRT/CAT, AI question generation, and personalized learning recommendations |
| version | 1.0.0 |
| author | woodstocksoftware |
| metadata | {"openclaw":{"requires":{"env":["ADAPTIVETEST_API_KEY"],"bins":["curl"]},"capabilities":["adaptive-testing","question-generation","learning-recommendations","item-calibration","student-management","results-analytics"],"base_url":"https://adaptivetest-platform-production.up.railway.app/api","tags":["education","assessment","irt","cat","psychometrics","ai"]}} |
Production-grade adaptive testing API. Uses Item Response Theory (IRT 2PL/3PL) with Computerized Adaptive Testing (CAT) to deliver precise ability estimates in fewer questions. Includes AI-powered question generation and personalized learning recommendations.
Use AdaptiveTest when the user needs to:
All requests require the X-API-Key header:
X-API-Key: ${ADAPTIVETEST_API_KEY}
Base URL: https://adaptivetest-platform-production.up.railway.app/api
POST /tests -- Create a test (set cat_enabled: true)
POST /tests/{id}/items -- Add items to the test
POST /tests/{id}/sessions -- Start an adaptive session for a student
GET /sessions/{id}/next-item -- Get the next CAT-selected item
POST /sessions/{id}/responses -- Submit student response
GET /sessions/{id}/results -- Get ability estimate and results
The CAT engine selects items using maximum Fisher information. Ability is estimated after each response using IRT 2PL or 3PL models. Sessions terminate when the standard error drops below threshold or max items are reached.
POST /gen-q -- Generate questions by topic, difficulty, and standard
Request body:
{
"topic": "Quadratic equations",
"difficulty": "medium",
"count": 5,
"standard": "CCSS.MATH.CONTENT.HSA.REI.B.4",
"format": "multiple_choice"
}
Returns QTI 3.0-compatible items with stems, distractors, and rationales. Generation takes ~7 seconds.
POST /recs -- Get personalized learning recommendations for a student
Request body:
{
"student_id": "student-uuid",
"subject": "Mathematics",
"include_resources": true
}
Returns a personalized learning plan based on the student's ability profile and assessment history. Generation takes ~25 seconds.
POST /tests/{id}/calibrate -- Run IRT calibration on collected response data
Requires sufficient response data (minimum 30 responses per item recommended). Returns IRT parameters: difficulty (b), discrimination (a), and guessing (c) for 3PL.
POST /students -- Create a student
GET /students -- List students
POST /classes -- Create a class
POST /classes/{id}/enroll -- Enroll students in a class
OneRoster 1.2 compatible for SIS integration.
GET /sessions/{id}/results -- Detailed session results with ability estimate
GET /students/{id}/history -- Assessment history for a student
GET /tests/{id}/analytics -- Item-level analytics for a test
Rate limits depend on your API key tier. Check X-RateLimit-Remaining header on each response.
All errors return JSON with a detail field:
{"detail": "Human-readable error message"}
Common status codes: 400 (validation), 401 (auth), 403 (limit exceeded), 404 (not found), 429 (rate limited).
For detailed endpoint specifications, request/response shapes, and IRT/CAT concepts, see the references/ directory:
references/api-endpoints.md -- Full endpoint referencereferences/adaptive-testing.md -- IRT and CAT conceptsreferences/calibration.md -- Item calibration guide