A bilingual interactive skill for learning loop engineering inside an agent.
Loopath is a small reference course for understanding the harness around coding agents: context building, structured actions, policy-gated tools, observations, traces, verification, and evals.
It is meant to be installed as an agent skill. After installation, the agent guides you one step at a time. Each step includes a short text card and a matching clip under media/episode-01/clips/.
Install the skill:
git clone https://github.com/encircleacity2/loopath ~/.codex/skills/loopathFor Claude Code:
git clone https://github.com/encircleacity2/loopath ~/.claude/skills/loopathRestart your agent session, then say:
Use $loopath to start the Loopath course.
The skill will detect your conversation language, show one small topic at a time, and include the matching step clip path:
media/episode-01/clips/en/step-01.mp4
media/episode-01/clips/zh/step-01.mp4
- Start with
$loopath. - Read the current step card.
- Watch the matching clip.
- Ask questions or continue to the next step.
- Let the agent create the lab files.
- Run verification and inspect the result card.
- Answer quiz questions one at a time.
- Full course draft
- English teaching notes
- Chinese teaching notes
- Episode 1 English clips
- Episode 1 Chinese clips
- Lab verifier
Optional local commands for maintainers
Start the course:
python3 scripts/loopath.py start --lang enShow a step:
python3 scripts/loopath.py step --episode 1 --step 1 --lang enCreate the lab:
python3 scripts/loopath.py lab-create --episode 1 --repo ./loopath-dev --lang enRun verification:
python3 scripts/loopath.py verify --episode 1 --repo ./loopath-dev --lang enAsk and grade a quiz question:
python3 scripts/loopath.py quiz --episode 1 --question 1 --lang en
python3 scripts/loopath.py grade --episode 1 --question 1 --answer "B" --lang enThe interactive skill currently implements Episode 1 end to end: step cards, bilingual clips, lab creation, verification, and quiz grading.
MIT.
一个在 agent 里学习 loop engineering 的中英双语互动 skill。
Loopath 是一套小型参考课程,用来理解 coding agent 背后的 harness:context 构建、结构化 action、policy-gated tools、observation、trace、verification 和 eval。
它的定位是可安装到 agent 里的学习 skill。安装后,agent 会一次带你学习一个小课题。每个 step 都有文字卡片,也有对应的短 clip,路径在 media/episode-01/clips/。
安装到 Codex:
git clone https://github.com/encircleacity2/loopath ~/.codex/skills/loopath安装到 Claude Code:
git clone https://github.com/encircleacity2/loopath ~/.claude/skills/loopath重启 agent session,然后输入:
Use $loopath to start the Loopath course.
skill 会根据你的对话语言选择中文或英文,每次展示一个小课题,并返回对应 step clip:
media/episode-01/clips/zh/step-01.mp4
media/episode-01/clips/en/step-01.mp4
- 用
$loopath启动课程。 - 阅读当前 step 卡片。
- 观看对应 clip。
- 提问,或者继续下一步。
- 让 agent 创建 lab 文件。
- 运行 verification,查看检测结果卡片。
- 一问一答完成 quiz。
维护者可选本地命令
启动课程:
python3 scripts/loopath.py start --lang zh展示一个 step:
python3 scripts/loopath.py step --episode 1 --step 1 --lang zh创建 lab:
python3 scripts/loopath.py lab-create --episode 1 --repo ./loopath-dev --lang zh运行验收:
python3 scripts/loopath.py verify --episode 1 --repo ./loopath-dev --lang zh提问并评分:
python3 scripts/loopath.py quiz --episode 1 --question 1 --lang zh
python3 scripts/loopath.py grade --episode 1 --question 1 --answer "B" --lang zh互动 skill 目前完整实现 Episode 1:step 卡片、双语 clips、lab 创建、verification 和 quiz 评分。





