Universal Multi-Agent Skill Toolkit for AI Coding Agents
A standalone, project-agnostic collection of agent skills, memory architecture, and orchestration patterns. Works with any AI coding agent (Gemini, Claude, GPT, Cursor, Windsurf, OpenCode, etc.) on any codebase.
# For OpenCode
cp -r mindkit/skills/* .opencode/skills/
# For Cursor
cp -r mindkit/skills/* .cursor/skills/
# For any agent that reads markdown skills
cp -r mindkit/skills/* <your-agent-skill-dir>/cp mindkit/GUARDRAILS.md <your-agent-rules-dir>/
cp mindkit/rules/* <your-agent-rules-dir>/mkdir -p .mindkit/memory .mindkit/sessionsThe context-manager skill will auto-persist session context here.
mindkit/
├── skills/
│ ├── foundation/ → Token Guardian, Orchestrator, Rule Sanitizer
│ ├── technical/ → Frontend, Backend, CLI, DevOps, QA, Code Review
│ ├── business/ → BA, PM, Tech Lead, AI Lead, UX, CTO/CEO
│ └── infra/ → Context Manager, Memory Architect, Topic Indexer, Skill Registry
├── memory/ → Memory architecture, schemas, templates
├── workflows/ → Pre-built multi-agent workflows
├── rules/ → Consolidated rules & quality gates
├── GUARDRAILS.md → Universal agent constraints
└── README.md → You are here
| Skill | Purpose |
|---|---|
| Token Guardian | Monitor & optimize token consumption with guardrails |
| Agent Orchestrator | Route tasks to the right skills in the right order |
| Rule Sanitizer | Audit & clean rules, PRDs, and prompts |
| Skill | Purpose |
|---|---|
| Frontend Auditor | UI/component health, styles, routes, build status |
| Backend Inspector | API wiring, DB layer, error handling, bindings |
| CLI/Node Reviewer | Commands, npm scripts, dependencies, exports |
| DevOps Auditor | CI/CD pipelines, deployment, publish configs |
| QA/Testing Agent | Test coverage, pass/fail, critical path gaps |
| Code Review Agent | Patterns, TypeScript, security, dead code |
| Skill | Purpose |
|---|---|
| Business Analyst | Feature completeness vs spec, gap analysis |
| PM Agent | User journeys, prioritization, release readiness |
| Tech Lead | Architecture health, tech debt, scalability |
| AI Lead | AI integration, prompts, pipelines, model strategy |
| UX Researcher | Usability, info architecture, accessibility |
| CTO/CEO Strategy | Vision alignment, GTM readiness, risk register |
| Skill | Purpose |
|---|---|
| Context Manager | Persist & load session context automatically |
| Memory Architect | Retrieve, prune, link memory entries |
| Topic Indexer | Extract topics, assign semantic markers |
| Skill Registry | Discover skills, check compatibility, route |
Mindkit includes a memory architecture that lets agents persist learnings across sessions:
- Session Logs — what happened in each session
- Decision Records — why choices were made (with alternatives)
- Semantic Markers — tagged knowledge (
#bug,#architecture,#debt,#insight)
Even weak models can use semantic markers to filter for relevant context before starting work.
See memory/ARCHITECTURE.md for full details.
All agents follow strict constraints defined in GUARDRAILS.md:
- Token budget — every skill has S/M/L cost estimate
- Output cap — max 100 lines unless overridden
- Structured output —
## Summary→## Findings→## Actions - Context-first — read summaries before raw files
- Idempotent — no side effects, safe to re-run
- Project-agnostic — no hardcoded paths
MIT