gito/AGENTS.md
toki e2bc7aa8b6 feat(scaffold): 초기 프로젝트 골격을 구성한다
Gito를 platformless Git control plane으로 시작할 수 있도록 Go core, Flutter control surface, contracts, ops 규칙, 검증 헬퍼를 함께 구성한다.
2026-06-13 08:55:46 +09:00

34 lines
1.3 KiB
Markdown

# Gito Agent Instructions
Read this file before making changes in this repository.
## Common Rules
- Prefer the existing structure over creating new top-level patterns.
- Keep user-facing final answers in Korean unless the user asks otherwise.
- Check the relevant domain rule before code changes.
- Do not expand scope beyond the current request.
- Do not write secrets, tokens, passwords, private endpoints, or raw credentials to tracked files.
- Use `rg` or `rg --files` for searches when available.
- Use root helpers under `bin/` before ad hoc commands when they cover the task.
## Required First Reads
Read these files once per session when they exist:
1. `agent-ops/rules/project/rules.md`
2. `agent-ops/rules/private/rules.md`
## Domain Rules
| Path | Domain | Rules |
| --- | --- | --- |
| `services/core/**` | core | `agent-ops/rules/project/domain/core/rules.md` |
| `apps/client/**` | client | `agent-ops/rules/project/domain/client/rules.md` |
| `packages/contracts/**` | contracts | `agent-ops/rules/project/domain/contracts/rules.md` |
| `bin/**`, `docs/**`, `AGENTS.md`, `README.md`, `agent-ops/**`, `agent-test/**` | workspace-ops | `agent-ops/rules/project/domain/workspace-ops/rules.md` |
## Test Rules
When validation is part of the task, read `agent-test/local/rules.md` first.