Common instructions and configuration for AI coding agents supporting 11 different agent platforms. Korean-language guidebook for AI development assistants.
Common instructions and configuration for AI coding agents. This skill configures Aider to read a shared agent guidebook (`AGENTS.md`) and applies consistent code quality settings.
Create `.aider.conf.yaml` in your project root:
```yaml
read:
- .agents/AGENTS.md
auto-commits: false
dirty-commits: false
lint-cmd: "ruff check --fix"
```
```bash
mkdir -p .agents
```
Place your AI agent instructions in `.agents/AGENTS.md`. This file should contain:
**Example structure:**
```markdown
[프로젝트별 구조 설명]
```
```bash
pip install ruff
```
Start Aider in your project directory:
```bash
aider
```
Aider will automatically:
Loads the specified file as part of the system prompt, providing persistent context to the AI agent.
Prevents Aider from automatically committing changes. You maintain full control over git history.
Prevents commits when there are unstaged changes, ensuring clean commit history.
Runs Ruff linter after code modifications, automatically fixing style issues.
This configuration pattern works with (via the shared AGENTS.md):
```bash
cd /path/to/project
aider
git add .
git commit -m "Your commit message"
```
**For Python projects:**
```yaml
lint-cmd: "ruff check --fix && mypy ."
```
**For TypeScript projects:**
```yaml
lint-cmd: "eslint --fix . && tsc --noEmit"
```
**To enable auto-commits:**
```yaml
auto-commits: true
dirty-commits: false
```
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/ai-coding-agent-configuration-aider/raw