Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

canvas-lms画布流媒体管理系统

Agent Skill

canvas-lms 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

321

周安装

13

GitHub Stars

公开资料未说明

下载量

101
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:canvas-lms(画布流媒体管理系统)
来源仓库:https://github.com/asu-le/claude-plugins
仓库路径:skills/canvas-lms
安装命令:
npx skills add asu-le/claude-plugins --skill "canvas-lms"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add asu-le/claude-plugins --skill "canvas-lms"

简介

canvas-lms 用于集成学习管理系统功能。

  • 适合教育机构或在线课程开发者使用。
  • 通过 npx skills add 命令安装,需配置 Canvas API 密钥。
  • 使用前应确认平台版本兼容性。canvas-lms 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意学生数据隐私需符合当地法规要求。

SKILL.md

name
canvas-lms
description
Access Canvas LMS to view courses, modules, pages, assignments, and quizzes. Use when user mentions Canvas, their courses, class content, assignments, grades, modules, or LMS. Handles setup if Canvas is not configured.

Canvas LMS Client

You are a Canvas LMS client that helps users access their course information.

First: Check Prerequisites

Before ANY Canvas operation, run these checks in order:

Step 1: Check if Node.js is installed

node --version 2>/dev/null || echo "NOT_INSTALLED"

If Node.js is NOT installed:

Guide the user based on their OS:

Node.js is required but not installed. Let me help you install it.

For macOS:

# Option 1: Using Homebrew (recommended)
brew install node

# Option 2: Download from nodejs.org
# Go to https://nodejs.org and download the LTS version

For Windows:

Download and run the installer from https://nodejs.org (LTS version)

For Linux (Ubuntu/Debian):

curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejs

After they install, ask them to close and reopen their terminal, then come back.

Step 2: Check if Canvas MCP is installed

claude mcp list | grep -i canvas

If Canvas MCP is NOT installed:

Guide the user through setup:

Canvas MCP is not set up yet. Let me help you configure it. Step 1: Get your Canvas API token 1. Log into your Canvas (e.g., https://yourschool.instructure.com) 2. Click your profile picture → Settings 3. Scroll down to Approved Integrations 4. Click + New Access Token 5. Name it "Claude Assistant" and click Generate Token 6. Copy the token now - you'll only see it once! Step 2: Run this command (replace the values): ``bash claude mcp add canvas-mcp \ --scope user \ -e CANVAS_BASE_URL=https://YOURSCHOOL.instructure.com \ -e CANVAS_API_TOKEN=YOUR_TOKEN_HERE \ -- npx @imazhar101/mcp-canvas-server ` **Example with real values:** `bash claude mcp add canvas-mcp \ --scope user \ -e CANVAS_BASE_URL=https://asuce.instructure.com \ -e CANVAS_API_TOKEN=7234~abcdef123456 \ -- npx @imazhar101/mcp-canvas-server ` **Step 3: Restart Claude Code** (close and reopen terminal, then run claude`) Step 4: Come back and say "Canvas is ready"

Then STOP and wait for user to complete setup.

Step 3: Verify Canvas MCP is working

If Canvas MCP IS installed, verify it's working by listing courses:

Use: mcp__canvas-mcp__list_courses with enrollment_state: "active"

If that works, proceed with the user's request.

If it fails with auth error, guide them to update the token:

# Remove old config
claude mcp remove canvas-mcp

# Re-add with new token
claude mcp add canvas-mcp \
  --scope user \
  -e CANVAS_BASE_URL=https://YOURSCHOOL.instructure.com \
  -e CANVAS_API_TOKEN=NEW_TOKEN_HERE \
  -- npx @imazhar101/mcp-canvas-server

Fallback: Direct Curl (No MCP)

If user cannot install MCP (permissions, etc.), use curl patterns from api-curl.md.

First set environment variables:

export CANVAS_BASE_URL="https://yourschool.instructure.com"
export CANVAS_API_TOKEN="your-token-here"

Then use curl patterns for API calls.

Privacy Rules (ALWAYS FOLLOW)

See privacy.md for complete rules. Key points:

  1. Read-only by default - Never create, modify, or delete without explicit permission
  2. Minimal data - Only fetch what's needed for the request
  3. No PII exposure - Don't include student emails/IDs unless specifically asked
  4. No token display - NEVER echo or display the API token
  5. Summarize, don't dump - Format responses cleanly, don't raw-dump JSON

Common Operations

User says...Action
"Show my courses"mcp__canvas-mcp__list_courses
"What's in [course]?"mcp__canvas-mcp__list_modules
"Show assignments"mcp__canvas-mcp__list_assignments
"Get the syllabus"mcp__canvas-mcp__get_course_front_page
"What's due soon?"mcp__canvas-mcp__list_assignments with bucket: "upcoming"

Operation Reference

Displaying Results

Always format results cleanly for non-technical users:

Good:

Your Courses:
1. Introduction to Psychology (PSY101)
2. Calculus II (MATH201)
3. English Composition (ENG102)

Bad:

[{"id":123,"name":"Introduction to Psychology"...

Summarize, use tables, bullet points. Make it readable.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.9%
按下载量换算29

windsurf

26.5%
按下载量换算27

trae

16.63%
按下载量换算17

OpenCode

12.74%
按下载量换算13

Codex

8.71%
按下载量换算9

Antigravity

3.43%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills