npx claudepluginhub hereinthehive/gotrino-assistantA development assistant with skills for inclusion, triage, impact analysis, and more
A Claude Code plugin for reviewing code with an inclusion lens.
This plugin helps you build more inclusive software by asking:
"Who might this exclude? What assumptions are baked in?"
It's not a linter. It's a second pair of eyes that sees your code from the perspective of users who aren't like you.
# Set up for your project (recommended)
/teach-charter
# Quick gut-check on code you just wrote
/guardian src/components/SignupForm.tsx
# Full audit before release
/inclusion-audit src/
| Command | What it does |
|---|---|
/guardian [path] | Quick inclusion gut-check (lightweight, fast) |
/language-check [path] | Scan for non-inclusive language |
/names-check [path] | Check name diversity in examples |
/i18n-check [path] | Find internationalization issues |
| Command | What it does |
|---|---|
/examples-audit [path] | Analyze mock data for cultural assumptions |
/inclusion-audit [path] | Comprehensive inclusion review |
/test-assumption [path] | Identify hidden assumptions about users |
| Command | What it does |
|---|---|
/inclusive-names | Generate diverse names for mock data |
/explain [path] | Create decision record in decisions/ |
/impact [path] | Analyze change impact before making it |
| Command | What it does |
|---|---|
/teach-charter | Configure plugin for your project |
/plugin-help | Show all commands and workflow |
Run /teach-charter to create .inclusion-config.md in your project root. This stores:
Once configured, the plugin respects your decisions and won't nag you about acknowledged issues.
You: "Create a registration form"
Claude: [creates form with gender dropdown: Male/Female]
You: "/guardian src/components/RegisterForm.tsx"
Guardian: "⚠️ Binary gender field excludes non-binary users"
You: "That's intentional - we need it for legal compliance"
Guardian: "Added to config with rationale. Won't flag again."
Starting a new project:
/teach-charter to set up configurationDuring development:
/guardian after generating forms, UI, or examplesBefore shipping:
/inclusion-audit for comprehensive review/test-assumption on user-facing flows.claude-plugin/
plugin.json # Plugin metadata
references/
charter-core.md # Core inclusion principles
language-terms.md # Inclusive language alternatives
i18n-checklist.md # Internationalization checklist
diverse-names.md # Names by region + edge cases
assumption-test.md # Assumption analysis framework
examples-checklist.md # Mock data audit checklist
skills/
guardian/ # Quick inclusion check (agent)
language-check/ # Language scan
names-check/ # Name diversity check
i18n-check/ # Internationalization issues
examples-audit/ # Cultural assumption audit
inclusive-names/ # Diverse name generator
inclusion-audit/ # Comprehensive audit
teach-charter/ # Project setup & config
explain/ # Decision documentation
impact/ # Change impact analysis
test-assumption/ # Assumption test
plugin-help/ # Help & command reference
agents/
inclusion-guardian.md # Quick review agent (haiku model)
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations