Official plugin collection for kuuzuki - bringing enhanced AI assistance and project intelligence to OpenCode.
Kuuzuki plugins extend OpenCode with powerful features that transform it into a project-aware AI assistant. These plugins understand your codebase, respect your development patterns, and enhance your workflow through intelligent configuration management.
@kuuzuki/agentrc - Core Plugin
The flagship plugin that provides the complete kuuzuki experience:
- πΈ Project Intelligence - Context-aware AI assistance
- π Configuration Management - Full
.agentrcsupport + legacy parsing - π§ Command Enhancement - Project-specific command mapping
- πΎ Memory & Rules - Interactive memory tool for project rules
- π‘οΈ Security & Safety - File access restrictions and policies
# Clone the plugins repository
git clone https://github.com/moikas-code/kuuzuki-plugins.git
cd kuuzuki-plugins
# Install the core agentrc plugin globally
npm run install-globalCreate a .agentrc file in your project:
{
"project": {
"name": "my-project",
"type": "typescript-react"
},
"commands": {
"test": "npm test",
"build": "npm run build"
},
"rules": [
"Follow existing code patterns",
"Write tests for new features"
]
}Start OpenCode - kuuzuki will automatically enhance your session! πΈ
- Node.js >= 18.0.0
- npm
# Clone and install
git clone https://github.com/moikas-code/kuuzuki-plugins.git
cd kuuzuki-plugins
npm install
# Test plugins
npm test
# Install for development
npm run devThis repository contains official kuuzuki plugins organized as an npm workspaces monorepo:
kuuzuki-plugins/
βββ packages/
β βββ agentrc/ # Core kuuzuki plugin
β βββ src/ # Plugin source code
β βββ examples/ # Sample configurations
β βββ README.md # Plugin documentation
βββ package.json # Monorepo configuration
βββ README.md # This file
Future plugins will be added to packages/ following the same structure:
@kuuzuki/memory-enhanced- Advanced memory management@kuuzuki/security-pro- Enhanced security features@kuuzuki/workflow-optimizer- Workflow automation tools
Kuuzuki plugins follow these principles:
- Project-first - Always understand the project context
- Non-intrusive - Enhance without breaking existing workflows
- Configurable - Respect user preferences and project needs
- Intelligent - Learn and adapt to development patterns
We welcome contributions to kuuzuki plugins!
- π Report Issues
- π‘ Submit PRs
- π Plugin Documentation
- Follow the existing plugin structure in
packages/ - Include comprehensive documentation
- Write tests for your plugin functionality
- Ensure compatibility with existing kuuzuki features
MIT - see LICENSE for details