Core Standards Plugin¶
The core-standards plugin is the required base plugin that provides the complete VisiTrans development toolkit.
Overview¶
| Property | Value |
|---|---|
| Name | core-standards |
| Version | 3.0.0 |
| Required | Yes |
| License | MIT |
What's included¶
| Component | Count |
|---|---|
| Agents | 42 |
| Orchestrators | 7 |
| Skills | 65 |
| Commands | 47 |
| Hooks | 2 |
Workflows¶
The core plugin provides all three workflows:
- Development (
/0-startthrough/6-operate) — 7 phases - Product Design (
/pd-0-startthrough/pd-6-handoff) — 7 phases + iterative loop - Knowledge Work (
/kw-0-startthrough/kw-4-publish) — 5 phases
Orchestrators¶
conceptual-orchestrator— research, architecture, specs (/plan)implementation-orchestrator— code review (/review)deployment-orchestrator— pre-deploy checks (/deploy-check)bugfix-orchestrator— bug investigation (/investigate-bug)incident-orchestrator— production incidents (/incident-response)product-design-orchestrator— product design coordinationknowledge-work-orchestrator— knowledge work coordination
Security¶
Always-on security hooks:
- Secret scanner — blocks hardcoded credentials on every file write
- Security lint — warns about dangerous patterns (
eval(),innerHTML, raw SQL)
Global rules¶
The plugin installs ~/.claude/CLAUDE.md which enforces:
- Scope discipline — only change what's requested
- No assumptions — ask when uncertain
- No placeholders — use real values or environment variables
- Branch-based git — never commit to main directly
- Security-first — validate input, sanitize output, escape templates