{
  "schemaVersion": "1.0",
  "item": {
    "slug": "canvas-lms",
    "name": "Canvas LMS",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/pranavkarthik10/canvas-lms",
    "canonicalUrl": "https://clawhub.ai/pranavkarthik10/canvas-lms",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/canvas-lms",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=canvas-lms",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/canvas-lms"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/canvas-lms",
    "agentPageUrl": "https://openagent3.xyz/skills/canvas-lms/agent",
    "manifestUrl": "https://openagent3.xyz/skills/canvas-lms/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/canvas-lms/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Canvas LMS Skill",
        "body": "Access Canvas LMS data via the REST API."
      },
      {
        "title": "Setup",
        "body": "Generate an API token in Canvas: Account → Settings → New Access Token\nStore token in environment or .env file:\nexport CANVAS_TOKEN=\"your_token_here\"\nexport CANVAS_URL=\"https://your-school.instructure.com\"  # or canvas.yourschool.edu"
      },
      {
        "title": "Authentication",
        "body": "Include token in all requests:\n\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/...\""
      },
      {
        "title": "Courses & Profile",
        "body": "# User profile\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/profile\"\n\n# Active courses\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses?enrollment_state=active&per_page=50\"\n\n# Dashboard cards (quick overview)\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/dashboard/dashboard_cards\""
      },
      {
        "title": "Assignments & Due Dates",
        "body": "# To-do items (upcoming work)\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/todo\"\n\n# Upcoming events\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/upcoming_events\"\n\n# Missing/overdue submissions\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/missing_submissions\"\n\n# Course assignments\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/assignments?per_page=50\"\n\n# Assignment details\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/assignments/{id}\"\n\n# Submission status\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/assignments/{id}/submissions/self\""
      },
      {
        "title": "Grades",
        "body": "# Enrollments with scores\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/enrollments?include[]=current_grading_period_scores&per_page=50\"\n\nExtract grade: .grades.current_score"
      },
      {
        "title": "Course Content",
        "body": "# Announcements\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/announcements?context_codes[]=course_{course_id}&per_page=20\"\n\n# Modules\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/modules?include[]=items&per_page=50\"\n\n# Files\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/files?per_page=50\"\n\n# Discussion topics\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/discussion_topics?per_page=50\"\n\n# Inbox\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/conversations?per_page=20\""
      },
      {
        "title": "Response Handling",
        "body": "List endpoints return arrays\nPagination: check Link header for rel=\"next\"\nDates are ISO 8601 (UTC)\nUse --max-time 30 for slow endpoints\n\nParse with jq:\n\ncurl -s ... | jq '.[] | {name: .name, due: .due_at}'\n\nOr Python if jq unavailable:\n\ncurl -s ... | python3 -c \"import sys,json; data=json.load(sys.stdin); print(json.dumps(data, indent=2))\""
      },
      {
        "title": "Tips",
        "body": "Course IDs appear in todo/assignment responses\nFile download URLs are in the url field of file objects\nAlways include per_page=50 to get more results (default is often 10)"
      }
    ],
    "body": "Canvas LMS Skill\n\nAccess Canvas LMS data via the REST API.\n\nSetup\nGenerate an API token in Canvas: Account → Settings → New Access Token\nStore token in environment or .env file:\nexport CANVAS_TOKEN=\"your_token_here\"\nexport CANVAS_URL=\"https://your-school.instructure.com\"  # or canvas.yourschool.edu\n\nAuthentication\n\nInclude token in all requests:\n\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/...\"\n\nCommon Endpoints\nCourses & Profile\n# User profile\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/profile\"\n\n# Active courses\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses?enrollment_state=active&per_page=50\"\n\n# Dashboard cards (quick overview)\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/dashboard/dashboard_cards\"\n\nAssignments & Due Dates\n# To-do items (upcoming work)\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/todo\"\n\n# Upcoming events\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/upcoming_events\"\n\n# Missing/overdue submissions\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/missing_submissions\"\n\n# Course assignments\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/assignments?per_page=50\"\n\n# Assignment details\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/assignments/{id}\"\n\n# Submission status\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/assignments/{id}/submissions/self\"\n\nGrades\n# Enrollments with scores\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/users/self/enrollments?include[]=current_grading_period_scores&per_page=50\"\n\n\nExtract grade: .grades.current_score\n\nCourse Content\n# Announcements\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/announcements?context_codes[]=course_{course_id}&per_page=20\"\n\n# Modules\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/modules?include[]=items&per_page=50\"\n\n# Files\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/files?per_page=50\"\n\n# Discussion topics\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/courses/{course_id}/discussion_topics?per_page=50\"\n\n# Inbox\ncurl -s -H \"Authorization: Bearer $CANVAS_TOKEN\" \"$CANVAS_URL/api/v1/conversations?per_page=20\"\n\nResponse Handling\nList endpoints return arrays\nPagination: check Link header for rel=\"next\"\nDates are ISO 8601 (UTC)\nUse --max-time 30 for slow endpoints\n\nParse with jq:\n\ncurl -s ... | jq '.[] | {name: .name, due: .due_at}'\n\n\nOr Python if jq unavailable:\n\ncurl -s ... | python3 -c \"import sys,json; data=json.load(sys.stdin); print(json.dumps(data, indent=2))\"\n\nTips\nCourse IDs appear in todo/assignment responses\nFile download URLs are in the url field of file objects\nAlways include per_page=50 to get more results (default is often 10)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/pranavkarthik10/canvas-lms",
    "publisherUrl": "https://clawhub.ai/pranavkarthik10/canvas-lms",
    "owner": "pranavkarthik10",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/canvas-lms",
    "downloadUrl": "https://openagent3.xyz/downloads/canvas-lms",
    "agentUrl": "https://openagent3.xyz/skills/canvas-lms/agent",
    "manifestUrl": "https://openagent3.xyz/skills/canvas-lms/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/canvas-lms/agent.md"
  }
}