myicor-lessons-find

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

myICOR Lesson Finder

myICOR课时查找工具

This skill will let you (the AI agent) find specific myICOR course lessons by topic — for questions like "which lesson covers the tag system?" or "where does the course explain a brain dump?".
该技能将允许你(AI Agent)按主题查找特定的myICOR课程课时——适用于诸如“哪一课时介绍了标签系统?”或“课程中哪里讲解了头脑风暴法?”这类问题。

Status: shipping in CLI v1.1

状态:将在CLI v1.1版本中推出

The
myicor lessons find
command is registered but not yet active in CLI v1.0.0. Running it prints a notice and exits with code
2
.
Why: lesson search is semantic. It ranks lessons by meaning, not keywords, which requires turning the user's query into a 1024-dimension
voyage-context-3
embedding before the search runs. The query-embedding path is being wired for CLI v1.1; v1.0.0 does not yet ship it.
myicor lessons find
命令在CLI v1.0.0版本中已注册但尚未启用。运行该命令会显示提示信息并以代码
2
退出。
**原因:**课时搜索采用语义搜索方式。它会根据内容含义而非关键词对课时进行排序,这需要在搜索运行前将用户的查询转换为1024维度的
voyage-context-3
嵌入向量。查询-嵌入的处理流程正在为CLI v1.1版本搭建,v1.0.0版本暂未提供该功能。

What to do until v1.1

v1.1版本推出前的替代方案

For myICOR articles, videos, and podcast episodes, use the
myicor-learn-search
skill — it is fully functional today:
sh
myicor learn search "tag system"
myicor learn search "brain dump" --type video
That covers the learning library. Course-lesson-level discovery is what this skill will add in v1.1.
如需查找myICOR的文章、视频和播客剧集,请使用**
myicor-learn-search
**技能——该技能目前已完全可用:
sh
myicor learn search "tag system"
myicor learn search "brain dump" --type video
这覆盖了学习资源库的内容。而该技能将在v1.1版本中新增课程课时级别的搜索功能。

Command reference (v1.1 — not active yet)

命令参考(v1.1版本——尚未启用)

myicor lessons find "<query>" [--json]

myicor lessons find "<query>" [--json]

Semantic search across myICOR course lessons. Each result will carry an
is_accessible
flag derived from the user's membership tier — a free-tier member can discover a lesson exists and see its deep link, but opening it triggers an upgrade prompt in the app.
Planned
--json
shape:
json
{
  "query": "tag system",
  "results": [
    {
      "title": "Building a tag system that scales",
      "course_title": "PKM like a Pro",
      "level": "...",
      "duration_seconds": 540,
      "url": "https://app.myicor.com/courses/<course>/<lesson>",
      "is_accessible": true,
      "minimum_access_tier": "monthly"
    }
  ]
}
When v1.1 ships, this skill will be updated and the command will return real results.
对myICOR课程课时进行语义搜索。每个结果都会带有一个
is_accessible
标记,该标记由用户的会员等级决定——免费会员可以发现课时的存在并查看其深层链接,但在应用中打开该链接会触发升级提示。
计划中的
--json
格式:
json
{
  "query": "tag system",
  "results": [
    {
      "title": "Building a tag system that scales",
      "course_title": "PKM like a Pro",
      "level": "...",
      "duration_seconds": 540,
      "url": "https://app.myicor.com/courses/<course>/<lesson>",
      "is_accessible": true,
      "minimum_access_tier": "monthly"
    }
  ]
}
当v1.1版本推出后,该技能将更新,命令会返回真实结果。

Repository

代码仓库