# Hivellm Rulebook Aider

> <!-- AIDER:START -->

- Skill: `tomevault-io/hivellm-rulebook-aider` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/hivellm-rulebook-aider`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/hivellm-rulebook-aider/raw
- Safety review: pending (external: skill-scanner PASS, skillspector CAUTION)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/hivellm-rulebook-aider

---

<!-- AIDER:START -->
# Aider CLI Rules

**Tool**: AI pair programming in terminal (`pip install aider-chat`)

## Quick Start

```bash
# Always include AGENTS.md
aider AGENTS.md src/feature.ts tests/feature.test.ts

# In chat:
"Follow AGENTS.md standards. Implement [feature] with tests first."
```

## Essential Commands

```bash
/add file.ts          # Add files to context
/drop file.ts         # Remove from context
/run npm test         # Run command
/commit "message"     # Commit changes
/undo                 # Undo last change
/diff                 # Review changes
```

## Configuration (.aider.conf.yml)

```yaml
model: gpt-4
read: [AGENTS.md]
lint: true
lint-cmd: "npm run lint"
test-cmd: "npm test"
auto-commits: true
commit-prompt: true
```

## Workflow

1. Start session with `aider AGENTS.md [files]`
2. Request: "Follow AGENTS.md. Implement [feature] with tests first (95%+ coverage)"
3. Review diffs with `/diff`
4. Test with `/run npm test`
5. Commit with `/commit "feat: description"`

**Critical**: Always reference AGENTS.md in your requests for consistent standards.

<!-- AIDER:END -->

---
> Source: [hivellm/rulebook](https://github.com/hivellm/rulebook) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-05-23 -->

