myicor-lessons-find
Original:🇺🇸 English
Translated
Find myICOR course lessons by topic using semantic search. Status — shipping in CLI v1.1. Until then, invoke the myicor-learn-search skill for myICOR articles, videos, and podcasts.
9installs
Sourcemyicor/skills
Added on
NPX Install
npx skill4agent add myicor/skills myicor-lessons-findTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →myICOR Lesson Finder
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?".
Status: shipping in CLI v1.1
The command is registered but not yet active in
CLI v1.0.0. Running it prints a notice and exits with code .
myicor lessons find2Why: lesson search is semantic. It ranks lessons by meaning, not
keywords, which requires turning the user's query into a 1024-dimension
embedding before the search runs. The query-embedding
path is being wired for CLI v1.1; v1.0.0 does not yet ship it.
voyage-context-3What to do until v1.1
For myICOR articles, videos, and podcast episodes, use the
skill — it is fully functional today:
myicor-learn-searchsh
myicor learn search "tag system"
myicor learn search "brain dump" --type videoThat covers the learning library. Course-lesson-level discovery is what
this skill will add in v1.1.
Command reference (v1.1 — not active yet)
myicor lessons find "<query>" [--json]
myicor lessons find "<query>" [--json]Semantic search across myICOR course lessons. Each result will carry an
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.
is_accessiblePlanned shape:
--jsonjson
{
"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.
Repository
This skill lives at https://github.com/myicor/skills under
.
skills/myicor-lessons-find/