https://github.com/dgca/mai
Repo for storing skills and other LLM related utilities
https://github.com/dgca/mai
Last synced: 4 months ago
JSON representation
Repo for storing skills and other LLM related utilities
- Host: GitHub
- URL: https://github.com/dgca/mai
- Owner: dgca
- Created: 2026-01-30T02:14:09.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-30T07:39:37.000Z (5 months ago)
- Last Synced: 2026-01-30T23:31:01.579Z (5 months ago)
- Language: TypeScript
- Size: 34.2 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My AI Toolkit
Plugins and skills that make [Claude Code](https://docs.anthropic.com/en/docs/claude-code) more effective for real work.
## What's Here
| Component | Type | What It Does |
|-----------|------|--------------|
| [assume-persona](#assume-persona) | plugin | Load expert personas for domain-specific assistance |
| [lfg](#lfg) | plugin | Break down large work into tasks and execute with subagents |
| [create-skill](#create-skill) | skill | Guide for building your own Claude Code skills |
## Installation
Add the marketplace, then install individual plugins:
```bash
# Add the marketplace
/plugin marketplace add dgca/mai
# Install plugins you want
/plugin install assume-persona@mai
/plugin install lfg@mai
```
Requires Node.js 22.6.0+.
## Plugins
### assume-persona
Create and load expert personas for domain-specific assistance. Define a React architect, security auditor, or any specialist—Claude adopts their expertise and perspective.
**Key features:**
- Personas auto-invoke when you discuss relevant topics
- Import existing content (docs, articles, notes) and generate personas from it
- Share project-specific personas with your team
See [plugins/assume-persona](./plugins/assume-persona) for full documentation.
### lfg
*Let's Fucking Go* — structured project management for AI-assisted development. Break large, ambiguous work into right-sized pieces that Claude can execute reliably.
**Key features:**
- Epics → milestones → tasks hierarchy
- Parallel execution with dependency awareness
- Independent QA verification of completed work
- Accumulated learnings across tasks
See [plugins/lfg](./plugins/lfg) for full documentation.
## Skills
### create-skill
A guide for building skills that extend Claude's capabilities. Covers skill structure, YAML frontmatter, bundled resources (scripts, references, assets), and best practices.
See [.claude/skills/create-skill](./.claude/skills/create-skill).