npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tanuki-exam-prep-agents

v1.0.2

Published

AI-powered certification exam preparation system with adaptive learning, BMAD agent integration, and progress tracking. Built for RIMS-CRMP and extensible to other certifications.

Readme

Exam Prep

AI-powered certification exam preparation system with adaptive learning, progress tracking, and BMAD agent integration. Built for RIMS-CRMP certification and extensible to other exams.

Features

  • Three AI Agents for Complete Learning Cycle

    • 🎓 Alvin - Study session tutor providing adaptive learning based on your progress
    • 🤓 Simon - Mock exam generator creating quizzes focused on your weak areas
    • 🧸 Theodore - Evaluation specialist analyzing your performance and recommending improvements
  • Adaptive Learning - Automatically focuses on domains where you need the most improvement

  • Progress Tracking - Tracks study hours, quiz scores, domain mastery, and readiness

  • BMAD Workflow Integration - Structured workflows combining agent expertise with your context

  • Plugin Architecture - Easily extensible to support multiple certification exams

  • Resource Management - Configurable paths to your study materials

Requirements

  • Node.js 18 or higher
  • Claude (claude.ai or Claude Code) for running AI agent sessions
  • Your study materials (PDFs, notes, etc.)

Installation

Install globally via npm:

npm install -g exam-prep

Or run directly with npx:

npx exam-prep --version

Quick Start

1. Run the installer

npx exam-prep-installer

This will:

  • Initialize progress tracking for your exam
  • Set up your exam date and study schedule
  • Configure BMAD workflows and agents

2. Set up your study resources

Create a directory for your study materials and set the environment variable:

# Option 1: Set environment variable
export EXAM_PREP_RESOURCES="/path/to/your/study-materials"

# Option 2: Create default directory
mkdir -p ~/exam-prep-resources
# Copy your study materials there

3. Start studying with Alvin

exam-prep study risk-assessment

This generates a prompt file you paste into Claude. Alvin will:

  • Review your progress and weak areas
  • Focus on the specified domain (or all domains if not specified)
  • Provide adaptive learning based on your current level
  • Reference your study materials

4. Test yourself with Simon

# Quick practice (10 questions)
exam-prep quiz --quick

# Regular practice (20 questions)
exam-prep quiz

# Full exam simulation (100 scored questions in 4 batches)
exam-prep quiz --full-exam

Simon generates practice quizzes:

  • Quick: 10 questions for rapid practice
  • Regular: 20 questions for focused practice
  • Full Exam: 100 scored questions in 4×25 batches
    • Simulates the real RIMS-CRMP exam experience
    • Batched to work within Claude Code output token limits
    • Take breaks between batches like the real exam!
  • Automatically targets your weak domains
  • Mimics real exam format and difficulty

5. Get feedback from Theodore

exam-prep evaluate

After completing a quiz, Theodore will:

  • Analyze your performance trends
  • Identify specific weak areas
  • Recommend targeted study topics for Alvin
  • Track your learning velocity and readiness

6. Check your progress

exam-prep progress

View your study hours, quiz history, domain mastery, and exam readiness.

Commands

exam-prep study [domain]           # Start study session with Alvin
exam-prep quiz                     # Generate 20-question practice quiz
exam-prep quiz --quick             # Generate 10-question quick quiz
exam-prep quiz --full-exam         # Generate full exam (100 questions in 4 batches)
exam-prep evaluate                 # Analyze quiz results with Theodore
exam-prep progress                 # View your study progress

Supported Certifications

RIMS-CRMP (Certified Risk Management Professional)

  • ✅ Full support with official exam structure
  • 5 domains: Risk Model Analysis, Strategy Design, Implementation, Risk Competency, Decision Support
  • 120 questions (100 scored, 20 unscored), 71% passing score, 120 minutes

Coming Soon

  • ITPMP (IT Project Management Professional) - template included
  • Custom exam plugins via YAML configuration

Configuration

Resource Paths

The system resolves resource paths in this order:

  1. EXAM_PREP_RESOURCES environment variable
  2. ~/exam-prep-resources/ directory
  3. ./resources/ directory (relative to working directory)

Example resource structure for RIMS-CRMP:

~/exam-prep-resources/
├── RIMS-CRMP-Study-Guide-2025.pdf
├── Module 1/
│   └── 01_Lecture Notes/
│       ├── Session 1 and 2 RM in context.pdf
│       └── Session 4 ISO and COSO.pdf
├── Module 2/
│   ├── 01_Lecture Notes/
│   ├── 02_Reports/
│   └── 03_Case Studies/
└── Cheat Sheets/
    ├── RIMS-CRMP-Master-Reference.md
    └── RIMS-CRMP-Flashcards.md

Progress Data

Progress is stored in ~/.exam-prep/progress/[exam-code].json:

  • Study sessions and hours
  • Quiz attempts and scores
  • Domain mastery calculations
  • Readiness assessment

How It Works

  1. You run a command - Generates a comprehensive prompt file
  2. You paste into Claude - The appropriate agent (Alvin/Simon/Theodore) takes over
  3. AI agent guides you - Uses your progress data and study materials
  4. System tracks progress - Automatically updates based on your activity
  5. Adaptive focus - Next session targets your weak areas

Workflow Integration

The system uses BMAD (Best Modular Agent Development) framework:

  • Workflows - Structured markdown files defining agent tasks
  • Context - Your exam config, progress, resources, and memory
  • Agents - Specialized AI personas with expertise and communication style
  • Memories - Persistent state between sessions for continuity

Generated prompts combine: [Agent Spec] + [Workflow Instructions] + [Your Context]

Creating Custom Exam Plugins

See exams/README.md for detailed instructions on creating your own exam configurations.

License

MIT License - see LICENSE file for details

Contributing

Contributions welcome! Please open an issue or pull request on GitHub.

Acknowledgments

Built with Claude Code and designed for RIMS exam candidates preparing for their CRMP certification.