Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,23 @@ Have you ever been bothered by coding agent consistently wasting token usage? Th
| Agent product | Instruction file |
| --- | --- |
| Codex | `AGENTS.md` (source of truth) |
| Claude Code | `CLAUDE.md` |
| Cline | `.clinerules` |
| Cursor | `.cursorrules` |
| GitHub Copilot | `.github/copilot-instructions.md` |

You can use the same pattern to your any other project that uses coding agent as well.

#### Project-Level Claude Configuration

For Claude Code, configure agent behaviors in `.claude/` directory:

- **Rules** (`.claude/rules.md`) - Output standards and coding guidelines
- **Skills** (`.claude/skills/*/SKILL.md`) - Reusable workflows like backend patterns, testing guidelines, TDD cycle
- **Commands** (`.claude/commands/*.md`) - Slash commands for subagents: `/review`, `/plan`, `/refactor`, `/tdd`
- **Subagents** (`.claude/agents/*.md`) - Specialized agents for code review, planning, refactoring

Inspired by [everything-claude-code](https://github.com/affaan-m/everything-claude-code), few patterns were summarized to help you better utilize Claude for coding a backend project.

### Backend

This repo also provides a full-featured, best-practiced backend template for building a robust/modern FastAPI application:
Expand Down