A Claude Code plugin containing skills for faster onboarding, code understanding, and everyday engineering workflows.
/plugin install bryce-skills@https://github.com/Bryan-Cee/bryce-skills.gitOr add the marketplace once and install like any other plugin:
/plugin marketplace add https://github.com/Bryan-Cee/bryce-skills.git
/plugin install bryce-skillsGenerates a visual, top-down onboarding guide for any codebase as a CODEBASE_GUIDE.md file.
Trigger phrases:
"Onboard me to this codebase""I just cloned this repo, help me get up to speed""Walk me through this project""Help me understand this codebase"
What gets generated:
| Section | Description |
|---|---|
| 30-Second Pitch | What the project is and why it exists |
| The Analogy | Real-world metaphor mapping each major component |
| Architecture Overview | Mermaid flowchart using real directory/module names |
| Tech Stack | Language, framework, and tooling at a glance |
| Module Map | Every major directory with purpose and key files |
| Data Flow | Mermaid sequence diagram tracing a change to production |
| Key Commands | Install, build, generate, and workflow commands |
| Exploration Tasks | 3-5 hands-on tasks to cement understanding |
| Where to Go Next | Real file paths and links to useful docs |
| Knowledge Check | Quiz questions with hidden answers |
Copy any skill directory directly into your Claude skills folder:
# Install a single skill
cp -r skills/codebase-onboarding ~/.claude/skills/
# Or install all skills at once
cp -r skills/* ~/.claude/skills/To add a new skill, create a directory under skills/ with a SKILL.md following the Claude Code skill format.
skills/
└── your-skill-name/
└── SKILL.md
PRs welcome.