agentic-dev-starter
v1.1.1
Published
Universal agentic development configuration for AI coding assistants
Maintainers
Readme
Agentic Dev Starter
Universal AI coding assistant configuration for 11 providers.
Installation
npx agentic-dev-starter
# or
bunx agentic-dev-starterThe installer will:
- Ask which AI tools you use
- Install
.agent/directory (source of truth) - Generate provider-specific configs with rules
- Handle file conflicts gracefully
Supported Providers
| Provider | Description | |----------|-------------| | Cursor | AI-powered IDE with rules system | | Claude Code | Anthropic Claude CLI agent | | GitHub Copilot | Copilot Chat instructions | | Cline | VS Code extension with rules | | Windsurf | Codeium Cascade agent | | Trae | ByteDance AI coding assistant | | Kiro | AWS AI coding IDE | | Factory Droid | Factory.ai coding agent | | Gemini CLI | Google Gemini command-line tool | | Antigravity | Google Antigravity AI IDE | | OpenCode | Open-source AI coding tool |
What Gets Installed
your-project/
├── .agent/ # Source of truth
│ ├── agents/ # 8 agent definitions
│ ├── commands/ # 10 command templates
│ ├── rules/ # 4 coding rules (auto-synced)
│ └── workflows/ # 10 workflows
├── AGENTS.md # Project rules
└── [provider-specific dirs] # Based on your selectionCoding Rules
Automatically synced to all providers:
| Rule | Content | |------|---------| | Code Quality | Self-documenting code, error handling, null safety | | TypeScript/Go | Strict mode, Vue 3 Composition API, Go conventions | | Security/Git | Input validation, auth, git safety | | Architecture | SOLID principles, testing patterns |
Agents
| Agent | Purpose |
|-------|---------|
| @orchestrator | Main intelligent coordinator |
| @codebase-explorer | Find files, analyze code |
| @debugger | Root cause analysis |
| @documenter | Write documentation |
| @implementer | Make code changes |
| @researcher | External docs research |
| @reviewer | Code review |
| @tester | Write tests |
Workflows
| Workflow | Purpose |
|----------|---------|
| /init | Initialize AGENTS.md |
| /commit | Conventional commits |
| /debug | Systematic debugging |
| /refactor | Safe refactoring |
| /review | Code review |
| /test | Write tests |
Subagent Support
These tools can spawn subagents at runtime:
- ✅ Claude Code SDK
- ✅ OpenCode
- ✅ Factory Droid
- ✅ Antigravity
Customization
- Edit
AGENTS.mdfor project-specific rules - Modify
.agent/agents/for agent behavior - Add commands in
.agent/commands/ - Add rules in
.agent/rules/(auto-synced to providers) - Add workflows in
.agent/workflows/
License
MIT
