Устойчивое планирование агента через файл-план
★ 26.2K
Planning with Files is a planning skill for an AI agent (primarily Claude Code) that the agent "cannot ignore": not just a prompt hint but a hook that fires every turn and a plan on disk that survives context clearing (/clear). Reach for it when an agent on a long task loses the thread after a context reset: the plan lives in a file and doesn't disappear, and the hook returns the agent to it at every step, keeping it within the plan. The authors cite blind A/B tests in favor of the approach. Its focus is insistent planning via an on-disk plan and a hook for agent robustness against context loss, not a task manager for people or a general planner: the value is keeping the agent on plan throughout a long session, even after /clear. It suits people who run long tasks in Claude Code and want the agent not to "forget" the plan.
- #Operations