/learn-quiz
Generate open-ended quiz questions from facts in a specific deck (or all facts). Read-only — does NOT update SM-2 state or review-log. Use when the user says "quiz", "test me", "pratique", "/learn-quiz", or wants to practice without triggering a formal review.
$ npx -y skills add evolution-foundation/evo-nexus --skill learn-quiz --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/learn-quiz
Context preview
The summary Claude sees to decide when to auto-load this skill.
Generate open-ended quiz questions from facts in a specific deck (or all facts). Read-only — does NOT update SM-2 state or review-log. Use when the user says "quiz", "test me", "pratique", "/learn-quiz", or wants to practice without triggering a formal review.
SKILL.md
learn-quiz.SKILL.mdname: learn-quiz
description: Generate open-ended quiz questions from facts in a specific deck (or all facts). Read-only — does NOT update SM-2 state or review-log. Use when the user says "quiz", "test me", "pratique", "/learn-quiz", or wants to practice without triggering a formal review.
Learn Quiz
Generates open-ended practice questions from facts in `workspace/learning/facts/`. This is a **read-only** exercise — no frontmatter is modified, no log entries are written.
Trigger
User wants to practice recall without formally reviewing (e.g., "me teste sobre claude-skills", "/learn-quiz", "quiz geral").
Workflow
Step 1 — Identify scope
Parse the user's request for a deck name:
- `/learn-quiz {deck-name}` → filter facts where `deck == deck-name`
- `/learn-quiz` (no argument) → use all facts in `workspace/learning/facts/`
If no facts are found for the specified deck: > "Nenhum fato encontrado no deck '{deck}'. Verifique o nome do deck ou use /learn-stats para ver os decks ativos."
If `workspace/learning/facts/` is empty or doesn't exist: > "Nenhum fato encontrado. Use /learn-capture para adicionar fatos primeiro."
Step 2 — Select facts
From the matching facts, select up to 5 to quiz on. Prefer: 1. Facts not recently reviewed (older `next_review`) 2. Random otherwise
Step 3 — Generate questions
For each selected fact, generate **one open-ended question** derived from the `Retrieval Q` field. You may rephrase the original question slightly for variety, but the answer must still be the `Fact` content.
**Rules for questions:**
- Open-ended only (no multiple choice, no true/false)
- In pt-BR
- Must be answerable from memory without the source text
Step 4 — Run the quiz interactively
For each question (up to 5):
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🧪 Quiz — {deck} | Pergunta {current}/{total}
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
{question}Wait for the user's answer. Then show:
✅ Resposta de referência:
{Fact content}
{Brief feedback: correct elements the user got right, what they missed — 1-2 sentences}Do NOT score formally. This is practice, not review.
Step 5 — End of quiz
After all questions:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🏁 Quiz concluído! {N} perguntas praticadas.
💡 Para revisão formal com SM-2, use /learn-review
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━Constraints
- **NEVER modify any file.** This skill is 100% read-only.
- **NEVER write to review-log.jsonl.**
- **NEVER update frontmatter** of any fact file.
- Max 5 questions per session.
- If the user asks to save a score or grade — decline: "O quiz não atualiza o estado SM-2. Use /learn-review para revisão formal."
Read more
name: learn-quiz description: Generate open-ended quiz questions from facts in a specific deck (or all facts). Read-only — does NOT update SM-2 state or review-log. Use when the user says "quiz", "test me", "pratique", "/learn-quiz", or wants to practice without triggering a formal review.
Learn Quiz
Generates open-ended practice questions from facts in `workspace/learning/facts/`. This is a **read-only** exercise — no frontmatter is modified, no log entries are written.
Trigger
User wants to practice recall without formally reviewing (e.g., "me teste sobre claude-skills", "/learn-quiz", "quiz geral").
Workflow
Step 1 — Identify scope
Parse the user's request for a deck name:
- `/learn-quiz {deck-name}` → filter facts where `deck == deck-name`
- `/learn-quiz` (no argument) → use all facts in `workspace/learning/facts/`
If no facts are found for the specified deck: > "Nenhum fato encontrado no deck '{deck}'. Verifique o nome do deck ou use /learn-stats para ver os decks ativos."
If `workspace/learning/facts/` is empty or doesn't exist: > "Nenhum fato encontrado. Use /learn-capture para adicionar fatos primeiro."
Step 2 — Select facts
From the matching facts, select up to 5 to quiz on. Prefer: 1. Facts not recently reviewed (older `next_review`) 2. Random otherwise
Step 3 — Generate questions
For each selected fact, generate **one open-ended question** derived from the `Retrieval Q` field. You may rephrase the original question slightly for variety, but the answer must still be the `Fact` content.
**Rules for questions:**
- Open-ended only (no multiple choice, no true/false)
- In pt-BR
- Must be answerable from memory without the source text
Step 4 — Run the quiz interactively
For each question (up to 5):
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🧪 Quiz — {deck} | Pergunta {current}/{total}
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
{question}Wait for the user's answer. Then show:
✅ Resposta de referência:
{Fact content}
{Brief feedback: correct elements the user got right, what they missed — 1-2 sentences}Do NOT score formally. This is practice, not review.
Step 5 — End of quiz
After all questions:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🏁 Quiz concluído! {N} perguntas praticadas.
💡 Para revisão formal com SM-2, use /learn-review
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━Constraints
- **NEVER modify any file.** This skill is 100% read-only.
- **NEVER write to review-log.jsonl.**
- **NEVER update frontmatter** of any fact file.
- Max 5 questions per session.
- If the user asks to save a score or grade — decline: "O quiz não atualiza o estado SM-2. Use /learn-review para revisão formal."
Other skills on evo-nexus.
- /ai-image-creator
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway BYOK). Also analyze/describe existing images using multimodal AI vision. Use when user asks to "generate an image",
Open skill - /create-agent
Create a new custom agent for the workspace. Guides the user through defining agent name, domain, personality, skills, model, and memory folder. Use when the user says 'create an agent', 'new agent', 'add an agent', 'I need a custom agent', or wants to create a specialized agent
Open skill - /create-command
Create a new slash command for Claude Code. Guides the user through defining the command name, what it does, and generates the markdown file in .claude/commands/. Use when the user says 'create a command', 'new command', 'add a slash command', 'I want a shortcut for', or wants
Open skill - /create-goal
Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a project, defining a measurable goal with metric_type and target_value. Writes to the SQLite goals tables via POST
Open skill - /create-heartbeat
Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake triggers, and the decision prompt that governs when the agent acts. Writes to config/heartbeats.yaml with pydantic validation.
Open skill - /create-integration
Create a new custom integration (API/service wrapper) for the workspace. Guides the user through defining the integration's slug, display name, description, category, and required env keys. Writes .claude/skills/custom-int-{slug}/SKILL.md via POST /api/integrations/custom. Use
Open skill

