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

hoseo-lms豪西奥 LMS

Agent Skill

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

总安装

11,652

周安装

476

GitHub Stars

公开资料未说明

下载量

3,732
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:hoseo-lms(豪西奥 LMS)
来源仓库:https://github.com/acogkr/hoseo-lms
安装命令:
openclaw skills install hoseo-lms
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install hoseo-lms

简介

用于查找、检索和筛选相关信息,支持快速定位候选结果。

  • 适合在关键词、任务场景或来源线索明确时使用,提升信息获取效率。
  • 安装命令:openclaw skills install hoseo-lms。
  • 适用于 OpenClaw,通过 clawhub 安装。
  • 建议安装前确认权限范围和维护状态,避免触发不必要操作。

SKILL.md

name
hoseo_lms
description
LMS data aggregation and reporting tool for course information management.
homepage
https://learn.hoseo.ac.kr
metadata

hoseo_lms

A data aggregation tool for Hoseo University LMS. Collects course metadata, schedules, and generates reports. No automatic attendance submission or grade modification.


Overview

This skill provides three independent utilities:

  1. Data Aggregation: Reads public LMS course pages and generates JSON reports
  2. Schedule Analysis: Parses deadlines and activity schedules
  3. Lecture Playback Utility: User-controlled video playback with progress tracking

All operations are user-initiated, read-only, and locally stored.


Modules

scraper

Aggregates course data into a structured JSON report.

python3 src/scraper.py

Input: User credentials (for authentication only) Output: ~/.config/hoseo_lms/data.json Data Collected:

  • Course titles, IDs, professor names
  • Assignment deadlines and submission status
  • Quiz deadlines
  • Activity types (video, assignment, quiz, discussion)
  • Attendance records and video requirements

Technical Details:

  • Uses HTTP requests to fetch public course pages
  • Parses HTML structures (no browser automation)
  • Stores data in plaintext JSON for local analysis
  • Read-only operation (no modifications to LMS)

summary

Displays aggregated course data in terminal format.

python3 src/summary.py

Input: Previously generated data.json Output: Terminal report with:

  • Course roster
  • Pending assignments
  • Quiz schedules
  • Attendance status

auto_attend

Video playback utility with progress tracking.

python3 src/auto_attend.py [options]

Purpose: User-directed video playback and progress tracking.

Key Features:

  • User Control: User specifies exact number of videos to play (--limit-lectures)
  • Manual Triggering: Requires explicit command with parameters
  • Progress Reporting: Logs playback progress and completion status
  • No Automatic Submission: Does not submit attendance or modify grades
  • Blocking Operation: Waits for completion before returning

Usage Examples:

Play 3 videos from all courses:

python3 src/auto_attend.py --limit-lectures 3

Play 2 videos from specific course:

python3 src/auto_attend.py --course Database --limit-lectures 2

Play 5 videos from weeks 1-8:

python3 src/auto_attend.py --limit-lectures 5 --max-week 8

Play with direct credentials:

python3 src/auto_attend.py --id 20231234 --pw password --limit-lectures 4

Play with debug output:

python3 src/auto_attend.py --limit-lectures 3 --verbose

Options:

FlagDefaultTypeDescription
--idcredentials.jsonstringStudent ID
--pwcredentials.jsonstringPassword
--courseallstringCourse name filter
--limit-lectures0intNumber of videos to play (0=all)
--max-week15intFinal week to scan
--lecture-timeout3600intSeconds timeout per video
--headedfalseflagShow browser window
--verbosefalseflagDebug logging

Operational Details:

  • Opens video player in browser (popup or new tab)
  • Searches for video element in page and all nested iframes
  • Waits for video metadata (duration) to load before tracking
  • Plays video with muted autoplay (unmutes after playback starts)
  • Auto-resumes if video is paused or stalled
  • Skips lecture after 3 consecutive failures (no infinite loop)
  • Retries page navigation up to 3 times on network errors
  • Records completion status
  • No enrollment or grade modifications
  • No attendance submission (only playback logging)

Sample Output:

[14:30:45] Login successful
[14:30:50] [Database101] Processing started
[14:30:55] [Database101] Watched: 1/3
[14:35:20] [Database101] Watched: 2/3
[14:39:45] [Database101] Watched: 3/3
[14:39:50] [Database101] Processing complete: 3 watched, 3 attempted
[14:39:50] All tasks completed.

Setup and Configuration

Create Credentials File

Step 1: Create directory

mkdir -p ~/.config/hoseo_lms

Step 2: Create credentials.json using terminal

Option A: Using cat (Linux/Mac)

cat << 'EOF' > ~/.config/hoseo_lms/credentials.json
{
  "id": "YOUR_STUDENT_ID",
  "pw": "YOUR_PASSWORD"
}
EOF

Example:

cat << 'EOF' > ~/.config/hoseo_lms/credentials.json
{
  "id": "20231234",
  "pw": "mypassword123"
}
EOF

Option B: Using echo (Linux/Mac/Windows)

echo '{"id":"YOUR_STUDENT_ID","pw":"YOUR_PASSWORD"}' > ~/.config/hoseo_lms/credentials.json

Example:

echo '{"id":"20231234","pw":"mypassword123"}' > ~/.config/hoseo_lms/credentials.json

Option C: Using PowerShell (Windows)

@"
{
  "id": "YOUR_STUDENT_ID",
  "pw": "YOUR_PASSWORD"
}
"@ | Out-File -Encoding UTF8 "$env:USERPROFILE\.config\hoseo_lms\credentials.json"

Example:

@"
{
  "id": "20231234",
  "pw": "mypassword123"
}
"@ | Out-File -Encoding UTF8 "$env:USERPROFILE\.config\hoseo_lms\credentials.json"

Option D: Manual creation with text editor (All OS)

  1. Create ~/.config/hoseo_lms/ directory
  2. Create credentials.json file
  3. Enter content:
{
  "id": "YOUR_STUDENT_ID",
  "pw": "YOUR_PASSWORD"
}
  1. Save file

Step 3: Set secure permissions

chmod 600 ~/.config/hoseo_lms/credentials.json

(Not required on Windows - file permissions handled by OS)


Report Storage:

  • Location: ~/.config/hoseo_lms/data.json
  • Format: JSON structured data
  • Permissions: User-only (chmod 600)
  • Content: Course data, schedules, metadata only

Network Activity:

  • HTTPS connections only to learn.hoseo.ac.kr
  • No data transmission to external services
  • No collection of personal data beyond login

Technical Scope

In Scope (Implemented):

  • Public course page data collection
  • HTML parsing and structure extraction
  • JSON data aggregation
  • Local file storage and retrieval
  • Video playback progress tracking

Out of Scope (Not Implemented):

  • Grade submission or modification
  • Attendance system integration (submission disabled)
  • Assignment submission
  • Discussion board automation
  • Account modification

Agent Integration Notes

This skill is designed for local data analysis workflows:

  1. Data Queries: User asks for course information → Agent reads data.json or runs scraper.py
  2. Schedule Management: User asks about deadlines → Agent parses data.json and reports
  3. Video Playback: User explicitly requests playback with count → Agent executes auto_attend.py --limit-lectures N

Agent should:

  • Require explicit user request before running auto_attend.py
  • Confirm playback count with user
  • Report completion status upon script exit
  • Treat as utility tool (no policy override needed)

Agent should not:

  • Assume user intent beyond explicit parameters
  • Bypass user confirmation for automated actions
  • Modify script behavior or skip steps

Limitations

  • Parser updates required if LMS HTML structure changes
  • Availability dependent on network connectivity
  • Browser compatibility limited to Playwright-supported environments
  • Video playback requires working video player in LMS
  • No offline mode

Disclaimer

This skill is provided for personal educational data management only. Users are responsible for:

  • Compliance with institutional policies on tool use
  • Appropriate use of personal educational data
  • Credential security and access control
  • Verification of data accuracy before use

The developer assumes no responsibility for institutional policy violations or misuse of generated data.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.34%
按下载量换算3,595

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills