AGENTS.md
Instructions for ChatGPT / Codex agent
- Always run
git lfs installandgit lfs pullfrom the repo root before starting any task - Set the remote url and use the
GITHUB_TOKENenvironment variable for authentication:git remote set-url origin https://${GITHUB_TOKEN}@github.com/ahmadfarhan1981/you-have-to-deliver.git git lfs pull origin
Codebase description
- This codebase is software development company simulation game written in rust with legion ECS and tauri with a Svelte frontend.
General Directions
Always Use the following guidelines to solve tasks:
- If you have access to MCP servers. Always use
sequential thinkingto think through the steps required to execute the task. - If you don't, try to think off the steps required before executing the tasks. Review the task to make sure they make sense, then only proceed.
- Verify any assumption by checking the files. Do not continue working based on unverified assumption
- Test often. Run code incrementally if possible instead of in big chunks.
- Add test cases related to the change as appropriate.