30 lines
1.5 KiB
Markdown
30 lines
1.5 KiB
Markdown
# Gemini Workspace Entry
|
|
|
|
Use this file as the Gemini CLI entry point for this workspace.
|
|
|
|
Shared rules and context already live in the normal workspace files. Do not duplicate or reinterpret them here.
|
|
|
|
Read these first:
|
|
|
|
@./AGENTS.md
|
|
@./project-knowledge/00-start/start-here.md
|
|
@./project-knowledge/01-current/current-work.md
|
|
@./project-knowledge/01-current/work-items.md
|
|
|
|
## Tool Surface
|
|
|
|
- `AGENTS.md` is the primary shared rule file.
|
|
- `.agents/` is the canonical shared cross-platform surface for workflows and reusable rule/skill content.
|
|
- `.opencode/` is the OpenCode compatibility/runtime surface.
|
|
- `.agent/` is an alias for tools that expect the singular directory naming.
|
|
- `project-knowledge/` is canonical project memory.
|
|
- `agent-memory/` is agent operating memory.
|
|
|
|
## Gemini-Specific Operating Notes
|
|
|
|
- Keep the hot context small and load additional files lazily based on the active task.
|
|
- Follow `AGENTS.md` as the shared source of truth for answer-first behavior, memory promotion, and lazy loading.
|
|
- For analysis, review, translation, or drafting prompts, answer first and persist second unless saving the fact is clearly required to produce a safe answer.
|
|
- Do not create new canonical notes in the critical path of a simple answer unless the user explicitly asked to save the information or the destination is obvious and non-blocking.
|
|
- When memory should be updated, prefer the smallest correct change to `project-knowledge/` and avoid duplicating stale and corrected versions.
|