Install AI coding assistant templates for Cursor IDE, Claude Code, and GitHub Copilot. Pre-configured rules and guidelines that help AI assistants write better code across 25+ domains including web, mobile, backend, ML/AI, blockchain, and language-specific expert templates.
Install AI coding assistant templates for Cursor IDE, Claude Code, and GitHub Copilot. Pre-configured rules and guidelines that help AI assistants write better code in your projects.
This skill installs comprehensive AI coding templates from the `agentic-team-templates` npm package (v0.20.0+). It sets up:
Templates cover 25+ domains including web frontend/backend, mobile, blockchain, ML/AI, DevOps, and language-specific expert guidance (Python, Go, Rust, C++, Java, etc.).
Before installation, familiarize yourself with the 25+ available templates:
**Engineering:**
**Languages (Principal-Level):**
**Professional:**
**Agents:**
Confirm you're in the correct project directory before installation:
```bash
pwd
```
If the user needs to change directories, guide them or use `cd` appropriately.
Ask the user which template(s) they need. Common patterns:
**Single Domain:**
```bash
npx agentic-team-templates web-frontend
```
**Multiple Related Domains:**
```bash
npx agentic-team-templates web-frontend web-backend
```
**Full-Stack with DevOps:**
```bash
npx agentic-team-templates fullstack devops-sre
```
**ML Project:**
```bash
npx agentic-team-templates ml-ai data-engineering
```
By default, templates install for all supported IDEs (Cursor, Claude Code, Copilot). To target specific IDEs:
```bash
npx agentic-team-templates web-frontend --ide=cursor
npx agentic-team-templates web-frontend --ide=claude
npx agentic-team-templates web-frontend --ide=codex
npx agentic-team-templates web-frontend --ide=cursor --ide=codex
```
For first-time users or to verify what will be installed:
```bash
npx agentic-team-templates web-frontend --dry-run
```
This shows exactly which files will be created without making changes.
Run the installation command chosen in Step 3:
```bash
npx agentic-team-templates [template-name] [template-name-2] [--ide=name]
```
Example output:
```
✓ Installed shared rules (5 files)
✓ Installed web-frontend template (6 files)
✓ Created CLAUDE.md
✓ Created .cursor/rules/ directory
✓ Created .github/copilot-instructions.md
Installation complete! Your AI assistants are now configured.
```
Check that files were created:
```bash
ls -la .cursor/rules/
cat CLAUDE.md
ls -la .github/copilot-instructions.md
```
Inform the user what was installed:
**Shared Rules (Always Included):**
**Template-Specific Rules:**
Each template adds 4-8 domain-specific rule files (e.g., for `web-frontend`: accessibility, component patterns, performance, state management, styling, testing).
Explain how users can customize:
**Add Project-Specific Rules:**
Create new `.md` files in `.cursor/rules/`:
```bash
cat > .cursor/rules/my-api-conventions.md << 'EOF'
All API calls go through `/lib/api.ts`...
EOF
```
**Modify Existing Rules:**
Edit any file in `.cursor/rules/` or `CLAUDE.md` directly. Changes take effect immediately.
To update templates later:
```bash
npx agentic-team-templates@latest web-frontend
```
```bash
npx agentic-team-templates --list
```
```bash
npx agentic-team-templates --remove web-frontend
npx agentic-team-templates --remove web-frontend web-backend
npx agentic-team-templates --remove web-frontend --yes
```
```bash
npx agentic-team-templates --reset
npx agentic-team-templates --reset --ide=cursor
npx agentic-team-templates --reset --yes --force
```
```bash
mkdir my-react-app && cd my-react-app
npm create vite@latest . -- --template react-ts
npx agentic-team-templates web-frontend
```
```bash
npx create-next-app@latest my-app
cd my-app
npx agentic-team-templates fullstack
```
```bash
cd my-api-service
npx agentic-team-templates web-backend devops-sre
```
```bash
cd my-ml-project
npx agentic-team-templates python-expert ml-ai
```
If getting "Unknown option" errors:
```bash
npx agentic-team-templates@latest [command]
npx clear-npx-cache
npm cache clean --force
```
```bash
npx agentic-team-templates --version
```
```bash
npm update -g agentic-team-templates
```
After installation:
```
your-project/
├── CLAUDE.md # Claude Code guide
├── .cursor/
│ └── rules/ # Cursor IDE rules
│ ├── core-principles.md # Shared
│ ├── code-quality.md # Shared
│ ├── security-fundamentals.md # Shared
│ ├── git-workflow.md # Shared
│ ├── communication.md # Shared
│ ├── [template]-overview.md # Template-specific
│ └── [template]-*.md # Template-specific rules
└── .github/
└── copilot-instructions.md # GitHub Copilot instructions
```
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/agentic-team-templates/raw