Files
sage-graphql-mcp/planner_instructions.md
2026-03-13 15:00:22 +00:00

754 B
Executable File

  1. Don't use git worktrees, they are usually not the best option and it creates some pollution on the computer.
  2. Whenever you create a sub-agent as a background task and block waiting for it, the timeout is in ms, not ms, timeout=30 is 30ms timeout, not 30s. This information is also important to send to the sub-agents themselves because they can have their own background tasks.
  3. When you create a foreground task and it is a long running task, it will release you after 10 minutes, however, that is not a timeout, the agent keeps running. We should avoid foreground running and instead use background and use very big timeouts.

Make sure the final plan has information about these 3 points so it propagates to everyone working on the problem.