swcc-daily

swcc-daily is a skill for Claude Code from guoqiaoZhou/study-with-claude-code. It costs 76 tokens per session (870 once invoked), scanned A, original, MIT.

A read-only daily review summary for a study-tracking system.

In plain words
What is it for?
Use it as a daily reminder across all topics or for one selected topic, with suggested commands for starting review.
Why use it?
It shows which topics and learning points are due today, including overdue items, without changing your study records.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the study-with-claude-code plugin — 12 skills shipped together

Good fit Use it as a daily reminder across all topics or for one selected topic, with suggested commands for starting review.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add guoqiaoZhou/study-with-claude-code
Claude Code
/plugin install study-with-claude-code

Made for: Claude Code.

Or install study-with-claude-code, the plugin that ships this one along with the rest of its 12 skills.

Wrote 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.

agentmods badge for swcc-daily

README.md
[![agentmods](https://agentmods.dev/badge/skills/guoqiaozhou/study-with-claude-code/daily.svg)](https://agentmods.dev/skills/guoqiaozhou/study-with-claude-code/daily)
Your own site
<a href="https://agentmods.dev/skills/guoqiaozhou/study-with-claude-code/daily"><img src="https://agentmods.dev/badge/skills/guoqiaozhou/study-with-claude-code/daily.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 870 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00076 $0.00870
Opus 5 $0.00038 $0.00435
Sonnet 5 $0.00015 $0.00174
Haiku 4.5 $0.00008 $0.00087

Measured 7d ago against content hash 99d6a822e156, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

swcc-daily 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 7d ago.

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.

skills/daily/SKILL.md · 62 lines

What it actually says

swcc · daily — 今天该复习什么

只读地汇总今天到期该复习的内容,给出建议,指向 go / weak 去执行。零写入——正因如此适合定时无人值守地触发。

开始前先读数据契约:${CLAUDE_PLUGIN_ROOT}/skills/_shared/data-contract.md(第十三节 due(today) 与 dailyGoal)。本技能只读不写

参数:$ARGUMENTS —— 可选 topic;缺省时跨所有专题汇总(每日提醒最有用)。


核心原则

  1. 只读,零写入。 不改任何文件——这样定时触发也绝不会误伤数据。
  2. 不编数字。 没有到期项就如实说"今天没有到期";数据不足的不臆造。
  3. 最该复习的排最前。 一律按 nextReview 升序(逾期最久在前)。
  4. 给可执行的下一步。 每项指向 /swcc-weak/swcc-go <topic>,让用户一键接着做。

流程

1. 收集到期项

  • 带 topic → 只看该专题;缺省 → 读 config.jsontopics[],逐个读其 progress.json
  • 按数据契约第十三节算 due(today) = nextReview ≤ 今天(date +%F)节点 + 薄弱点(nextReview 为 null 的不算)。
  • config 不存在/缺失 → 按数据契约第九节兜底扫 topics/;一个专题都没有 → 提示先 /swcc-plan <topic>,停止。

2. 排序与分组

  • 每个专题内:到期项按 nextReview 升序;薄弱点和节点都计入,标注逾期天数。
  • 跨专题:逐专题列出其到期数。

3. 算 dailyGoal 进度

  • 从今天的 review-sessions/ 估"已复习时长",对照 config.reviewSettings.dailyGoal(分钟)。数据不足只显示目标。

4. 渲染

🔔 今天该复习(<date +%F>)
━━━━━━━━━━━━━━━━━━━━
<topic-A>:到期 <n>(薄弱点 <w>)
  · <概念/节点>        逾期 <d> 天   → /swcc-weak <topic-A>
  · <概念/节点>        今天到期       → /swcc-go <topic-A>
<topic-B>:到期 <n>
  · …

今日目标 <goal>min | 已复习 <done>min
建议:<一句话——先清逾期最久的,再过到期薄弱点>
  • 全部专题都没有到期项 → 输出「今天没有到期要复习的,可以 /swcc-go <topic> 学新内容,或 /swcc-stats 看进度」。

质量基准

  • 到期判定严格按 nextReview ≤ 今天,null 不计;排序正确(逾期久的在前)。
  • 全程只读,未写任何文件。
  • 每条到期项都给了可点的下一步命令。
Changes

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.

  1. 7d ago First seen · 62 lines · 76 tokens per session scan A 99d6a822e156

Subscribe to this mod's changes

swcc-daily is a skill published in the GitHub repository guoqiaoZhou/study-with-claude-code (2 stars, last pushed 2mo ago), licensed MIT. It adds 76 tokens to every session and 870 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

textbook-distillation

Turn a textbook or long-form source into a self-paced learning track: chapter map, lesson plan, then self-contained HTML lecture notes (styled as the human specifies) with worked examples, exercises, and checkpoint questions. Read this for "lecture notes" / "study notes" / "course" / "syllabus" requests from a…

Lingtai-AI/lingtai · 116 tokens

Interview Prep Generator

Generate STAR stories, practice questions, and talking points from resume.

PramodDutta/qaskills · 16 tokens

interview-simulator

Simulate role-specific mock interviews, score each answer, and provide concrete feedback and model responses for interview preparation.

LazyAGI/LazyMind · 27 tokens

Automation Interview Prep

Prepare for SDET and automation interviews round by round, covering coding screens, framework design, API testing tasks, scenario questions, and STAR stories built from real testing work.

PramodDutta/qaskills · 38 tokens

building-thinking-strength

Develops the four internal muscles required for clear thinking -- self-accountability, self-knowledge, self-control, and self-confidence -- using the Clear Thinking strength-building system. Covers setting personal standards above external requirements, choosing exemplars, building a personal board of directors, and…

fatihguner/foreman · 112 tokens

learning-coach

A Chinese-language personal coaching guide for learning programming, AI agents, writing, languages, exams, research, or career skills through real projects and tasks. It tracks progress and teaches one useful action at a time.

chrichuang218/ai-learning-coach · 179 tokens