Company-wide Claude Code configuration for consistent development across all projects.
Run these commands inside a Claude Code session (these are slash commands, not terminal commands):
/plugin marketplace add IQAIcom/iq-claude-config
/plugin install iq-claude-config@iq-claude-config
When prompted, choose your installation scope:
- User scope - Available in all your projects
- Project scope - Shared with collaborators on this repo
- Local scope - Only for you, in this repo only
/plugin
Navigate to the "Installed" tab to see the plugin and its components.
/plugin marketplace update iq-claude-config
/plugin uninstall iq-claude-config@iq-claude-config
Task-specific sub-agents for delegation:
build-error-resolver- Fixes build/type errorsrefactor-cleaner- Dead code cleanupdoc-updater- Documentation synccode-reviewer- Quality and security reviewplanner- Feature implementation planningpr-writer- PR description generatione2e-runner- Playwright E2E testing
Slash commands for quick actions:
/plan- Create implementation plan/review- Trigger code review/fix-build- Fix build errors/sync-docs- Sync documentation/refactor- Clean up code
Always-active guidelines:
stack-selection- Default Next.js, NestJS only for indexerssecurity- Security best practicesgit-conventions- Commit format, branchingcode-quality- Code standards
Domain knowledge and best practices:
nextjs/- RSC, Server Actions, folder structurenestjs/- Indexer/service patternsdesign/- Shadcn, Tailwind, brand guidelinesdatabase/- Prisma patternsworkflow/- Git, NPM publishing, PR templatestypescript/- Type conventions
Default: Next.js (full-stack with server actions)
Use NestJS ONLY when:
- Building a blockchain indexer
- Service requires heavy background processing
- Needs persistent WebSocket connections
- Compute-intensive operations that would block Next.js
- Create a branch
- Make changes
- Test with Claude Code
- Submit PR
MIT