29 lines
885 B
Markdown
29 lines
885 B
Markdown
# Agent Instructions
|
|
|
|
- Prefer using `dataclasses` when using data structures or similar objects to represent complex data.
|
|
- Follow all instructions provided in the system prompt.
|
|
- Keep responses concise and direct.
|
|
- Minimize output tokens.
|
|
- Use the `Task` tool for complex multi-step tasks.
|
|
- Verify solutions with tests if possible.
|
|
- Run lint and typecheck commands if provided.
|
|
- Do not commit changes unless explicitly asked.
|
|
- Use GitHub-flavored markdown for formatting.
|
|
- Answer concisely with fewer than 4 lines of text.
|
|
- ALWAYS use `uv` to run python commands. Do not use `python3` directly.
|
|
- Always commit and push changes at the end of a task.
|
|
- NEVER push to the master or main branch.
|
|
|
|
# Running the Agent
|
|
|
|
```bash
|
|
# Activate the virtual environment
|
|
uv sync
|
|
|
|
# Run the agent
|
|
uv run src/main.py
|
|
```
|
|
|
|
# Resolved Issues
|
|
- #2: Test issue for agent - Resolved by agent.
|