rapid-domain-mastery — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited rapid-domain-mastery (Rules) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A portable Agent Skill for deep, multi-source learning across major AI coding agents.
Rapid Domain Mastery workflow infographic
Rapid Domain Mastery is a structured reasoning workflow for tasks where a user needs to learn an unfamiliar field quickly from many sources. It goes far beyond plain summarization by executing a multi-phase analytical pipeline.
| Phase | What It Produces |
|---|---|
| Corpus Audit | Quality assessment of the source materials, identifying gaps and biases |
| Field Cartography | A structured map of the domain's key concepts, boundaries, and relationships |
| Mental Model Extraction | The 3-5 core expert mental models that practitioners actually use |
| Debate Cartography | A map of genuine disagreements between experts, schools, or methods |
| Assumption Mining | Hidden assumptions and unstated prerequisites that sources take for granted |
| Prerequisite Ladder | An ordered sequence of concepts the learner must master first |
| Diagnostic Questions | Oral-exam-style questions that test for real understanding, not recall |
| Tutor Loop | An interactive drilling mode with Socratic correction |
| Sprint Planner | A time-budgeted study plan when the user has a deadline |
Every claim is tagged with epistemic labels ([Consensus], [Debate], [Open], [Gap], [Prereq], [Inference]) to prevent hallucinated confidence.
This repository ships with native, compatibility, and manual adapters for the following agents and platforms. Support levels are deliberately tiered:
| Agent | Support Level | Mechanism |
|---|---|---|
| OpenAI Codex | native | .agents/skills/, AGENTS.md |
| Claude Code | native | .claude/skills/, CLAUDE.md |
| GitHub Copilot | native | .github/skills/, copilot-instructions.md |
| Cursor | native-compatible | .cursor/rules/, .claude/skills/ |
| Kiro | native | .kiro/skills/, .kiro/steering/ |
| Cline | native | .cline/skills/, .clinerules/ |
| Roo Code | native | .roo/skills/ |
| Augment | native | .augment/skills/, AGENTS.md |
| OpenCode | native | .opencode/skills/, AGENTS.md |
| Goose | native | .goose/skills/, .goosehints |
| Factory / Droid | native | .factory/skills/ |
| Windsurf | native-manual-install | .windsurf/rules/, AGENTS.md |
| Antigravity | native-manual-install | .agent/rules/, GEMINI.md |
| Gemini CLI | native-manual-install | GEMINI.md, AGENTS.md |
| OpenHands | native-different-format | adapters/openhands/ |
| Amazon Q (legacy) | manual-legacy | .amazonq/rules/ |
| Continue | manual | adapters/continue/ |
| Aider | manual | adapters/aider/ |
Additional agents listed by the Agent Skills directory (AMP, ClawdBot, Kilo, Trae, VS Code) are ecosystem compatibility signals, not file-path-level verification. See VERIFIED-SUPPORT-MATRIX.md and support/evidence.md for the full breakdown.
Do not clone this whole repository into a generic .skills/ folder. The host needs the skill files at the path it actually loads.
Option 1 — Codex / AGENTS-compatible projects:
git clone https://github.com/Emily2040/rapid-domain-mastery.git /tmp/rapid-domain-mastery
mkdir -p .agents/skills
cp -R /tmp/rapid-domain-mastery/.agents/skills/rapid-domain-mastery .agents/skills/
cp /tmp/rapid-domain-mastery/AGENTS.md .Option 2 — Claude Code:
git clone https://github.com/Emily2040/rapid-domain-mastery.git /tmp/rapid-domain-mastery
mkdir -p .claude/skills
cp -R /tmp/rapid-domain-mastery/.claude/skills/rapid-domain-mastery .claude/skills/
cp /tmp/rapid-domain-mastery/CLAUDE.md .Option 3 — GitHub Copilot coding agent:
git clone https://github.com/Emily2040/rapid-domain-mastery.git /tmp/rapid-domain-mastery
mkdir -p .github/skills
cp -R /tmp/rapid-domain-mastery/.github/skills/rapid-domain-mastery .github/skills/
cp /tmp/rapid-domain-mastery/.github/copilot-instructions.md .github/Option 4 — Install via skills.sh where the package is listed and your client supports it:
skills install rapid-domain-masteryOption 5 — Copy the files you need manually:
AGENTS.md and .agents/skills/rapid-domain-mastery/ into your project root.CLAUDE.md, .cursor/rules/, .kiro/steering/).Use rapid-domain-mastery on this corpus of papers, docs, and notes.
I need a field map, the 3-5 core expert mental models, real debates,
hidden assumptions, prerequisite ladder, diagnostic questions, and a
two-week study sprint..
├── AGENTS.md # Universal persistent guidance
├── CLAUDE.md # Claude Code thin wrapper
├── GEMINI.md # Gemini CLI thin wrapper
├── LICENSE # MIT License
├── README.md # This file
│
├── .agents/skills/rapid-domain-mastery/ # Canonical skill source
│ ├── SKILL.md # Skill entry point (< 500 chars)
│ ├── references/ # Progressive-disclosure modules
│ │ ├── 00-orchestrator.md # Main workflow router
│ │ ├── 00-routing-and-boundaries.md # When to use / not use
│ │ ├── 10-input-contract.md # Input normalization
│ │ ├── 20-corpus-audit.md # Source quality assessment
│ │ ├── 30-field-cartography.md # Domain mapping
│ │ ├── 40-mental-model-extraction.md # Expert model extraction
│ │ ├── 50-debate-cartography.md # Disagreement mapping
│ │ ├── 60-assumption-mining.md # Hidden assumption detection
│ │ ├── 70-prerequisite-ladder.md # Learning sequence
│ │ ├── 80-diagnostic-question-design.md
│ │ ├── 90-tutor-loop.md # Interactive drilling
│ │ ├── 100-study-sprint-planner.md
│ │ ├── 110-application-and-transfer.md
│ │ ├── 120-domain-adapters.md
│ │ ├── 130-mcp-and-tooling.md
│ │ ├── 140-output-templates.md
│ │ ├── 150-quality-gates.md
│ │ └── 160-failure-modes.md
│ ├── templates/ # Structured output templates
│ └── scripts/ # Skill-local helper scripts
│
├── .claude/ .cursor/ .kiro/ ... # Agent-specific mirrors & wrappers
├── adapters/ # Manual adapters (Aider, Continue, etc.)
├── docs/assets/ # README and documentation images
├── .github/workflows/ # Pack validation CI
├── interop/ # A2A / ACP / MCP interop notes
├── scripts/ # Repo-level maintenance scripts
│ ├── validate_pack.py # Mirror parity + structural checks
│ ├── sync_adapters.py # Sync canonical → all mirrors
│ ├── check_local_links.py # Markdown local-link checker
│ └── corpus_inventory.py # Inventory helper
└── support/ # Verification metadata
├── support-matrix.json
├── support-matrix.csv
└── verification-notes.mdRun the built-in validation to confirm all mirrors are in sync and structural rules are met:
python3 scripts/validate_pack.py
python3 scripts/check_local_links.pyTo re-sync all agent mirrors from the canonical source after making changes:
python3 scripts/sync_adapters.py --dry-run
python3 scripts/sync_adapters.py
python3 scripts/validate_pack.py # always validate after sync| Document | Purpose |
|---|---|
VERIFIED-SUPPORT-MATRIX.md | Full agent support matrix with verification sources |
INSTALL-BY-AGENT.md | Per-agent installation instructions |
support/evidence.md | Public evidence ledger for compatibility claims |
STANDARDS.md | Design standards and conventions used |
MCP-RECOMMENDATIONS.md | Recommended MCP servers for enhanced workflows |
interop/A2A-ACP-MCP.md | Agent-to-Agent and protocol interop notes |
When updating the skill workflow:
.agents/skills/rapid-domain-mastery/.python3 scripts/sync_adapters.py to propagate changes.python3 scripts/validate_pack.py to verify.support/support-matrix.json if agent compatibility changes.When vendor documentation changes, update the relevant wrapper and the support matrix. Keep the canonical skill semantics stable; change only wrappers and install notes unless the reasoning workflow itself needs improvement.
Created by Iamemily2050
MIT — Copyright (c) 2026 Iamemily2050
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.