Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

canvas-discussion-facilitator画布讨论主持人

Agent Skill

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

总安装

1,322

周安装

54

GitHub Stars

115

下载量

423
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:canvas-discussion-facilitator(画布讨论主持人)
来源仓库:https://github.com/vishalsachdev/canvas-mcp
仓库路径:skills/canvas-discussion-facilitator
安装命令:
npx skills add https://github.com/vishalsachdev/canvas-mcp --skill canvas-discussion-facilitator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vishalsachdev/canvas-mcp --skill canvas-discussion-facilitator

简介

canvas-discussion-facilitator 帮助管理 Canvas LMS 中的论坛讨论,支持浏览话题、回复学生、创建新帖及监控参与度。

  • 适用于教师或助教维护课堂互动,可在任意 Canvas 角色下使用,支持学生与教育者双视角操作。
  • 需连接 Canvas MCP 服务器,开启数据匿名化可符合 FERPA 合规要求,保护学生身份信息。
  • 操作前应确认 API 权限范围,避免越权访问或修改他人内容,尤其注意批量发帖与通知发送限制。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Canvas Discussion Facilitator

Facilitate discussion forum activity in Canvas LMS -- browse topics, read posts, reply to students, create new discussions, and monitor participation. Works for both students and educators.

Prerequisites

  • Canvas MCP server must be running and connected to the agent's MCP client.
  • The authenticated user can have any Canvas role (student, TA, or instructor). Tool access is governed by Canvas API permissions.
  • FERPA compliance (educators): Set ENABLE_DATA_ANONYMIZATION=true in the Canvas MCP server environment to anonymize student names in output.

Steps

1. Identify the Course

Ask the user which course to work with. Accept a course code, Canvas ID, or ask them to pick from a list.

If the user does not specify, use list_courses to show active courses and prompt:

Which course should I look at discussions for?

2. Browse Discussion Topics

Call the MCP tool list_discussion_topics with the course identifier to retrieve all discussion forums.

Parameters:

  • course_identifier -- course code or Canvas ID
  • include_announcements -- set to false (default) to see only discussions, or true to include announcements

Data to surface per topic:

  • Topic ID and title
  • Author name
  • Posted date
  • Number of entries (if available)
  • Whether the topic is pinned or locked

Present the list so the user can pick a topic to drill into.

3. View Posts in a Discussion

Once the user selects a topic, call list_discussion_entries to retrieve posts.

Parameters:

  • course_identifier -- course code or Canvas ID
  • topic_id -- the selected discussion topic ID
  • include_full_content -- set to true to see complete post bodies
  • include_replies -- set to true to see threaded replies

Data to surface per entry:

  • Author name
  • Posted date
  • Message content (or preview)
  • Number of replies
  • Entry ID (needed for replying)

4. Read a Specific Post in Full

If a post is truncated or the user wants the complete text, call get_discussion_entry_details.

Parameters:

  • course_identifier -- course code or Canvas ID
  • topic_id -- the discussion topic ID
  • entry_id -- the specific entry ID
  • include_replies -- set to true to also fetch all replies to this entry

Present the full post content along with any replies, timestamps, and author information.

5. Reply to a Post

When the user wants to respond to a specific post, call reply_to_discussion_entry.

Parameters:

  • course_identifier -- course code or Canvas ID
  • topic_id -- the discussion topic ID
  • entry_id -- the entry being replied to
  • message -- the reply content (HTML is supported)

Before sending, always:

  1. Show the draft reply to the user for confirmation
  2. Reference the original post so the user can verify context
  3. Only send after explicit approval

6. Post a New Top-Level Entry

When the user wants to add a new post to an existing discussion (not a reply), call post_discussion_entry.

Parameters:

  • course_identifier -- course code or Canvas ID
  • topic_id -- the discussion topic ID
  • message -- the post content (HTML is supported)

Show the draft to the user and confirm before posting.

7. Create a New Discussion Topic

When the user needs an entirely new discussion forum, call create_discussion_topic.

Parameters:

  • course_identifier -- course code or Canvas ID
  • title -- the discussion title
  • message -- the opening post / prompt for the discussion
  • delayed_post_at -- (optional) ISO 8601 datetime to schedule the discussion to appear later
  • lock_at -- (optional) ISO 8601 datetime to automatically lock the discussion
  • require_initial_post -- set to true if students must post before seeing classmates' responses
  • pinned -- set to true to pin the topic to the top of the discussion list

Confirm the title, content, and any scheduling options with the user before creating.

Educator Use Cases

Monitor Participation

  1. Call list_discussion_topics to get all discussion forums in the course.
  2. For each topic, call list_discussion_entries to retrieve all posts.
  3. Cross-reference posters against the class roster (use list_users or list_submissions to get enrolled students).
  4. Identify students who have not posted in any active discussion.

Present participation as a summary:

## Discussion Participation: [Course Name]

### Topic: "Week 5 Reading Response" (due Mar 3)
- **Posted:** 28 / 32 students (88%)
- **Not posted:** Student_a1b2c3d, Student_e4f5g6h, Student_i7j8k9l, Student_m0n1o2p

### Topic: "Case Study Analysis" (due Mar 5)
- **Posted:** 15 / 32 students (47%)
- **Not posted:** [17 students listed]

### Students Missing Multiple Discussions
- Student_a1b2c3d -- missing 2 discussions
- Student_e4f5g6h -- missing 2 discussions

Send Reminders About Participation

After identifying non-participants, offer to:

  1. Post an announcement using create_announcement with a general reminder about discussion deadlines.
  2. Message specific students using send_conversation to contact students who are behind on participation.

Draft Thoughtful Replies

When an educator wants to reply to student posts:

  1. Read the full post with get_discussion_entry_details (include replies for context).
  2. Draft a reply that acknowledges the student's points, asks follow-up questions, or connects ideas to course material.
  3. Show the draft for educator review and revision before calling reply_to_discussion_entry.

Student Use Cases

Browse and Catch Up on Discussions

  1. Call list_discussion_topics to see all active discussions.
  2. Call list_discussion_entries with include_full_content=true to read posts.
  3. Summarize key themes or arguments across posts to help the student catch up quickly.

Reply to Classmates

  1. Read the target post with get_discussion_entry_details.
  2. Help the student draft a reply that engages substantively with the original post.
  3. Confirm and send via reply_to_discussion_entry.

Post a New Entry

  1. Review existing posts with list_discussion_entries to avoid duplicating points already made.
  2. Help the student draft a post that adds a distinct perspective or builds on the conversation.
  3. Confirm and send via post_discussion_entry.

MCP Tools Used

ToolPurpose
list_coursesFind the target course
list_discussion_topicsBrowse all discussion forums in a course
list_discussion_entriesView posts within a discussion topic
get_discussion_entry_detailsRead a single post with full content and replies
get_discussion_topic_detailsGet metadata about a discussion topic
reply_to_discussion_entryReply to an existing post
post_discussion_entryAdd a new top-level post to a discussion
create_discussion_topicCreate a new discussion forum
create_announcementPost a course announcement (educator)
send_conversationMessage specific students through Canvas (educator)
list_usersGet enrolled students for participation tracking (educator)

Best Practices

  • Read before replying. Always read the full post and its replies before drafting a response. This avoids repeating points and shows engagement with the conversation.
  • Check for existing similar posts. Before posting a new entry, scan existing posts to avoid duplicating what others have already said. Build on or respectfully challenge existing arguments instead.
  • Reference specific points. When replying, quote or paraphrase specific parts of the original post. This makes the reply more substantive and shows careful reading.
  • Confirm before sending. Always show draft content to the user for approval before calling any write tool (reply_to_discussion_entry, post_discussion_entry, create_discussion_topic, create_announcement).
  • Respect discussion settings. Some discussions require an initial post before viewing others (require_initial_post). If a student cannot see other posts, they need to post first.
  • Mind the timing. Check delayed_post_at and lock_at dates on topics. Do not attempt to post to locked discussions.
  • Anonymization for educators. When reviewing student participation, rely on anonymous IDs if anonymization is enabled. The Canvas MCP server preserves functional user IDs for messaging while anonymizing display names.

Example

User (educator): "Show me who hasn't posted in the Week 5 discussion for CS 101."

Agent: Calls list_discussion_topics to find the Week 5 topic, then list_discussion_entries to get all posts, then cross-references with enrolled students. Outputs a participation summary listing students who have not posted.

User: "Send them a reminder."

Agent: Drafts a reminder message referencing the discussion deadline, shows it for confirmation, then calls send_conversation to message the non-participating students.


User (student): "I need to reply to Maria's post in the Case Study discussion."

Agent: Calls list_discussion_topics to find the Case Study topic, then list_discussion_entries to locate Maria's post, then get_discussion_entry_details to read the full content. Helps draft a reply that references Maria's key arguments, shows the draft for confirmation, then calls reply_to_discussion_entry.

Notes

  • This skill pairs well with canvas-morning-check for educators who want a full course status before diving into discussions.
  • Discussion entries support HTML content. When drafting posts, use paragraph tags for readability but avoid overly complex markup.
  • Canvas API permissions determine what each user can do. Students cannot create discussion topics unless the course allows it. Educators have full access.
  • For courses with many discussions, suggest filtering by recent or pinned topics to keep the workflow focused.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

36.71%
按下载量换算155

Claude

31.44%
按下载量换算133

Cursor

19.79%
按下载量换算84

Gemini CLI

8.04%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills