用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vramrick/openclaw-skills --skill hoseo-lms命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
全能高级前端研发工程师技能。擅长AI时代前沿技术栈(React最新 + shadcn/ui + Tailwind CSS v4 + TypeScript + Next.js),精通动效库与交互特效开发。采用Glue Code风格快速实现代码,强调高质量产品体验与高度友好的UI视觉规范。在组件调用、交互特效、全局Theme上保持高度规范:绝不重复造轮子,相同逻辑出现两次即封装为组件。具备安全意识,防范各类注入攻击。开发页面具有高度自适应能力,响应式设计贯穿始终。当用户无特殊技术栈要求时,默认采用主流前沿技术栈。
Read, write, append, and list local files in the session's working directory. Use when you need to persist output to disk, read input files, or manipulate file system safely. Supports text files, JSON, CSV, Markdown.
超级简历 WonderCV 出品,3000 万用户信赖。简历分析、段落改写、JD 岗位匹配、自动匹配职位、PDF 导出、AI 求职导师(面试准备/薪资谈判/职业规划/多版本简历策略)。 触发条件:用户提供简历、要求简历点评/打分/反馈、希望改写某个简历部分、 希望将简历与岗位 JD 或校招岗位匹配、咨询求职建议或面试准备,或提到 CV/简历/求职/校招。 不触发条件:用户讨论普通写作(非简历)、询问其他文档, 或讨论与求职和职业发展无关的话题。
基于 SOC 职业分类
正在显示 SKILL.md
| name | hoseo_lms |
| description | LMS data aggregation and reporting tool for course information management. |
| homepage | https://learn.hoseo.ac.kr |
| metadata | {"openclaw":{"requires":{"bins":"[Truncated]"}}} |
A data aggregation tool for Hoseo University LMS. Collects course metadata, schedules, and generates reports. No automatic attendance submission or grade modification.
This skill provides three independent utilities:
All operations are user-initiated, read-only, and locally stored.
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:
Technical Details:
Displays aggregated course data in terminal format.
python3 src/summary.py
Input: Previously generated data.json
Output: Terminal report with:
Video playback utility with progress tracking.
python3 src/auto_attend.py [options]
Purpose: User-directed video playback and progress tracking.
Key Features:
--limit-lectures)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:
| Flag | Default | Type | Description |
|---|---|---|---|
--id | credentials.json | string | Student ID |
--pw | credentials.json | string | Password |
--course | all | string | Course name filter |
--limit-lectures | 0 | int | Number of videos to play (0=all) |
--max-week | 15 | int | Final week to scan |
--lecture-timeout | 3600 | int | Seconds timeout per video |
--headed | false | flag | Show browser window |
--verbose | false | flag | Debug logging |
Operational Details:
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.
Step 1: Create directory
mkdir -p ~/.config/hoseo_lms
Step 2: Create credentials.json using terminal
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
echo '{"id":"YOUR_STUDENT_ID","pw":"YOUR_PASSWORD"}' > ~/.config/hoseo_lms/credentials.json
Example:
echo '{"id":"20231234","pw":"mypassword123"}' > ~/.config/hoseo_lms/credentials.json
@"
{
"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"
~/.config/hoseo_lms/ directorycredentials.json file{
"id": "YOUR_STUDENT_ID",
"pw": "YOUR_PASSWORD"
}
Step 3: Set secure permissions
chmod 600 ~/.config/hoseo_lms/credentials.json
(Not required on Windows - file permissions handled by OS)
Report Storage:
~/.config/hoseo_lms/data.jsonNetwork Activity:
learn.hoseo.ac.krIn Scope (Implemented):
Out of Scope (Not Implemented):
This skill is designed for local data analysis workflows:
data.json or runs scraper.pydata.json and reportsauto_attend.py --limit-lectures NAgent should:
auto_attend.pyAgent should not:
This skill is provided for personal educational data management only. Users are responsible for:
The developer assumes no responsibility for institutional policy violations or misuse of generated data.