setup-quiz

setup-quiz is a skill for Claude Code from lsh1215/oh-my-study-with-me. It costs 47 tokens per session (2,098 once invoked), scanned A, original, MIT.

A setup guide for a Slack bot that sends daily review quizzes based on what you have studied. It uses GitHub Actions, an automated task runner, to schedule the quizzes and track answers.

In plain words
What is it for?
Use it to create the Slack app, configure its permissions, and prepare the daily quiz workflow.
Why use it?
It explains the setup needed to turn study notes into recurring Slack reviews, so you do not have to manage the bot and schedule manually.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is run: python quizzes/quiz_runner.py.

Part of the oh-my-study-with-me plugin — 6 skills, 1 hook shipped together

Good fit Use it to create the Slack app, configure its permissions, and prepare the daily quiz workflow.

Compare 6 skills from other repositories ↓
Install

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.

Clone the repo
git clone --depth 1 https://github.com/lsh1215/oh-my-study-with-me
agentmods
npx agentmods add skills/lsh1215/oh-my-study-with-me/setup-quiz

Made for: Claude Code.

Or install oh-my-study-with-me, the plugin that ships this one along with the rest of its 6 skills, 1 hook.

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 setup-quiz

README.md
[![agentmods](https://agentmods.dev/badge/skills/lsh1215/oh-my-study-with-me/setup-quiz/github.svg)](https://agentmods.dev/skills/lsh1215/oh-my-study-with-me/setup-quiz)
Your own site
<a href="https://agentmods.dev/skills/lsh1215/oh-my-study-with-me/setup-quiz"><img src="https://agentmods.dev/badge/skills/lsh1215/oh-my-study-with-me/setup-quiz/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.

agentmods 80×15 button for setup-quiz

Your own site · 80×15
<a href="https://agentmods.dev/skills/lsh1215/oh-my-study-with-me/setup-quiz"><img src="https://agentmods.dev/badge/skills/lsh1215/oh-my-study-with-me/setup-quiz.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,098 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.00047 $0.02098
Opus 5 $0.00023 $0.01049
Sonnet 5 $0.00009 $0.00420
Haiku 4.5 $0.00005 $0.00210

Measured 11d ago against content hash 5dfd16ee2057, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

setup-quiz 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 11d 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/setup-quiz/SKILL.md · 244 lines

How it starts

The opening of the file, as written. The whole thing — 244 lines — stays where its author put it; the contents beside it link to each section on GitHub.

⚠️ Experimental — This skill is under active development and not yet stable. APIs, quiz schema, and grading logic may change without notice.

Setup Quiz - Slack Daily Review Quiz System Setup

Arguments: $ARGUMENTS

Overview

To prevent forgetting what you've studied, this system sends a daily review quiz to Slack every evening at 8 PM via GitHub Actions. Using Leitner System-based spaced repetition, weaker areas are tested more frequently while well-mastered areas appear less often.

Overall Architecture

[/oh-my-study-with-me:study session]
  Phase 3 Verification → Auto-generate quiz → Save to quizzes/quiz_bank.json
                                                        ↓
[GitHub Actions - Daily cron at 20:00 KST]
  1) Read yesterday's quiz thread (Slack API conversations.replies)
  2) Keyword matching from replies → Grade correct/incorrect
  3) Update quiz_bank.json Leitner Box
  4) Select 1 quiz for today's review
  5) Send to dedicated Slack channel
  6) Auto-commit + push changes

Step 1: Pre-requisites Check

Confirm the following items with the user:

1-1. Create Slack App

  • Go to https://api.slack.com/apps → "Create New App" → "From scratch"
  • App name: StudyWithMe Quiz Bot (or any name you prefer)
  • Workspace: select the user's workspace

1-2. Configure Bot Token Scopes

Add the following Bot Token Scopes under OAuth & Permissions:

  • chat:write - send messages
  • channels:history - read channel messages (for checking thread replies)
  • channels:join - join channels

1-3. Install Bot and Get Token

  • Click "Install to Workspace"
  • Copy the Bot User OAuth Token starting with xoxb-

1-4. Create a Dedicated Slack Channel

  • Create a #daily-quiz channel (or any name you prefer)
  • Invite the bot to the channel: /invite @StudyWithMe Quiz Bot
  • Find the channel ID (right-click channel name → Channel details → Channel ID at the bottom)

1-5. Configure GitHub Secrets

In repository Settings → Secrets and variables → Actions:

  • SLACK_BOT_TOKEN: Bot User OAuth Token (xoxb-...)
  • SLACK_CHANNEL_ID: Dedicated channel ID (starts with C)

Read the full file on GitHub · 244 lines

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. 11d ago First seen · 244 lines · 47 tokens per session scan A 5dfd16ee2057

Subscribe to this mod's changes

setup-quiz is a skill published in the GitHub repository lsh1215/oh-my-study-with-me (8 stars, last pushed 6mo ago), licensed MIT. It adds 47 tokens to every session and 2,098 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-31.

Related

Other skills, from other repositories

cloud-build-basics

Teaches the fundamentals of Google Cloud Build (GCB). Covers core concepts, API enablement, console navigation to the Build History page, and the end-to-end workflow for creating and manually running a basic build trigger. Do not use for managing private pools or complex pipeline architectures.

google/skills · 61 tokens

nw-platform-engineering-foundations

Foundational platform engineering knowledge from key references -- Continuous Delivery, SRE, Accelerate, Team Topologies, Chaos Engineering, and Secure Delivery. Load when contextual grounding in platform engineering theory is needed.

nWave-ai/nWave · 47 tokens

book-to-skill

Input adapter that extracts a book's method into a structured payload and hands it off to SkillForge. Use when an operator wants to turn a methodology-bearing book (The Mom Test, Make It Stick, Influence, The Pragmatic Programmer, etc.) into one or more executable skills without hand-crafting the SkillForge prompt or…

rjmurillo/ai-agents · 99 tokens

hr-devops

Help HR managers, recruiters, and talent acquisition teams understand DevOps, Platform Engineering, Site Reliability Engineering (SRE), cloud infrastructure, CI/CD, and modern software delivery workflows. Use when asked to explain DevOps, screen DevOps candidates, understand CI/CD, compare DevOps and SRE, evaluate…

tuanductran/hr-skills · 87 tokens

software-engineering-library

Route software engineering design and discovered code-risk tasks to on-demand book references. Use for architecture review, layer boundary change, dependency boundary, module interface shape, domain modeling, bounded context, refactoring, code smell, legacy code, low test coverage, old file, characterization test…

rjmurillo/ai-agents · 201 tokens

cicd-pipeline-interviewer

A Platform Engineer interviewer focused on CI/CD pipeline design. Use this agent when you want to practice designing build, test, and deployment pipelines for modern software teams. It tests concepts like CI vs CD vs CD, GitHub Actions/Jenkins, testing strategies (unit/integration/e2e), deployment strategies…

PrepLabsAI/InterviewMentor · 81 tokens