Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/Jobo16/ielts-buddynpx agentmods add skills/jobo16/ielts-buddy/ielts-study-planWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/jobo16/ielts-buddy/ielts-study-plan)<a href="https://agentmods.dev/skills/jobo16/ielts-buddy/ielts-study-plan"><img src="https://agentmods.dev/badge/skills/jobo16/ielts-buddy/ielts-study-plan/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jobo16/ielts-buddy/ielts-study-plan"><img src="https://agentmods.dev/badge/skills/jobo16/ielts-buddy/ielts-study-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00046 | $0.01448 |
| Opus 5 | $0.00023 | $0.00724 |
| Sonnet 5 | $0.00009 | $0.00290 |
| Haiku 4.5 | $0.00005 | $0.00145 |
Grade A, and why
ielts-study-plan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 49 lines — stays where its author put it; the contents beside it link to each section on GitHub.
IELTS Buddy 学习数据接口
本 Skill 只说明学习数据接口。调用前,先按Agent API 配置绑定并检查当前账号实际可用的能力。
接口
| 能力组 | 数据或动作 | 调用约束 |
|---|---|---|
ielts_study_plans_list、ielts_study_plans_get |
读取计划和完整任务 | 使用返回的精确 planId、任务 ID 与 revision,不猜 ID;下一项由调用方根据事实选择。 |
ielts_courses_search_sections、ielts_practice_search_parts、ielts_dictation_search_materials、ielts_mock_search_papers |
发现可写入计划的精确内容与稳定 contentRef |
内容由调用方选择;服务端只返回事实候选。 |
ielts_study_plans_create |
从已选定任务创建计划 | 每项任务必须包含服务端返回的 contentRef、中国日历日期和 morning、afternoon 或 evening 时段。 |
ielts_study_plans_update、ielts_study_plans_change_tasks、ielts_study_plans_replan、ielts_study_plans_delete |
修改标题/目标,原子增改删完任务,重排未完成任务或删除计划 | 写入前读取计划;change_tasks 不是局部计划 patch,replan 会整体替换未完成任务。 |
ielts_notifications_get_status、ielts_notifications_configure_wechat_task_reminders |
读取微信 iLink 状态,为现有任务启停微信投递 | 只传精确 taskId;提醒工具不创建任务,也不修改日期或时段。 |
ielts_learning_route_read、ielts_learner_read_profile、ielts_learning_pull_events |
学习路径、画像和历史事实 | 路径用 view:"route" 或 view:"progress";缺失字段保持未知,不补造数据。 |
ielts_assets_search、ielts_resources_related、ielts_prep_search_guides、ielts_prep_read_guide、ielts_prediction_search_hits |
用户资产、备考内容、考场记录、候选题及关联资源 | 保持考场记录与候选题分层,仅使用服务端返回的记录、contentRef 和可选链接。 |
ielts_learning_push_events |
记录已经发生且有证据的学习事件 | 不把建议、草案或推断写成事件。 |
python3 scripts/ielts_buddy_api.py capabilities
python3 scripts/ielts_buddy_api.py call ielts_study_plans_list --json '{}'
边界
- 计划的目标、优先级和任务内容由调用方与用户决定;服务端只保存经确认的数据。
- 描述已保存的计划时,以接口最近返回的实际任务、日期、时段、时长和状态为准,不把草案或推测说成已保存事实;只有写入接口成功后才能宣称已创建或修改,分页结果不代表完整计划,已有结果足够时无需重复查询。
contentRef只接受practice_part、mock_paper、course_section或listening_dictation;直接复用目录工具返回的对象,不手工补全内容快照。- 修改计划标题或目标使用
update;改变具体任务使用change_tasks;整体替换未完成安排使用replan,不要混用。 workflows/是独立的可选推荐层,不属于本 Skill 的接口契约。
列表与详情
查询学习记录分两步:先读取列表摘要,再按需用返回的 reviewTarget 调用 ielts_review_read_snapshot 查看某次练习或某个已完成模考科目的详情;精听使用 attemptId 调用 ielts_dictation_read_attempt,未提交普通练习使用 sessionId 调用 ielts_practice_read_session。不要为了列出记录逐条展开详情。使用前以当前账号的 capabilities 为准。
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today Changed · +8 lines ae6a7a4399b0
- yesterday Changed · +7 lines bc41862d6ba9
- 5d ago Changed 19e762552cb7
- 10d ago First seen · 34 lines · 46 tokens per session scan A 92eaaabafc4e
ielts-study-plan is a skill published in the GitHub repository Jobo16/ielts-buddy (20 stars, last pushed yesterday), licensed MIT. It adds 46 tokens to every session and 1,448 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
ielts-speaking-coach
Run repeatable IELTS speaking practice with ChatGPT Voice or a supported voice conversation. Use when a learner wants to import IELTS Speaking questions, choose Part 1, Part 2, Part 3, or a full mock test, create a 7-day, 14-day, or 30-day practice plan, conduct examiner-style practice, generate a fixed-format…
google-agents-cli-onboarding
Onboarding entrypoint for agents-cli in Agent Platform. It should be used when the user wants to "create a new agent", "develop an agent", "build an agent using ADK", "run the agent locally", "debug agent code", "test an agent", "evaluate an agent", "deploy an agent", "publish an agent", "monitor an agent", or needs…
edu-math-tutorial
A Chinese-language guide for turning a maths problem into a step-by-step teaching video. It explains how to break down the solution, write narration, format equations, and structure scenes.
practice-cognition
A method for testing ideas in practice, learning from the results, and improving the next attempt through repeated cycles.
rust-learner
Learn Rust language features and crate updates. Use when user asks about Rust version changelog, what's new in Rust, crate updates, Cargo.toml dependencies, tokio/serde/axum features, or any Rust ecosystem questions.
81-pipecat
Create your Pipecat skill from official documentation, then learn to improve it throughout the chapter.