Subdomain 1.2: Define boundaries between planning, reasoning, and action
1.A developer runs the Plan agent in VS Code to scope a multi-day feature and then closes their editor for the night. Where can they and teammates find the saved implementation plan the next day for review?
- A.In the session memory file at /memories/session/plan.md
- B.In the pull request description of a PR the Plan agent opened automatically
- C.In a new GitHub issue the Plan agent created automatically
- D.In the repository's copilot-instructions.md file
Show answer & explanation
Correct answer: A — In the session memory file at /memories/session/plan.md
- A. The Plan agent automatically writes its structured plan to this session memory file, making it an inspectable artifact that persists across sessions and is available for later review.
- B. Planning happens before any pull request exists, and the Plan agent does not open a pull request on its own as part of producing a plan.
- C. The planning workflow does not automatically file a GitHub issue; the plan is captured as a session memory artifact instead.
- D. This file holds standing custom instructions that shape agent behavior generally, not the output of a single planning session.