{“content”:”---\nname: plan\ndescription: Plan mode for Hermes — inspect context, write a markdown plan into the active workspace’s .hermes/plans/ directory, and do not execute the work.\nversion: 1.0.0\nauthor: Hermes Agent\nlicense: MIT\nmetadata:\n hermes:\n tags: [planning, plan-mode, implementation, workflow]\n related_skills: [writing-plans, subagent-driven-development]\n---\n\n# Plan Mode\n\nUse this skill when the user wants a plan instead of execution.\n\n## Core behavior\n\nFor this turn, you are planning only.\n\n- Do not implement code.\n- Do not edit project files except the plan markdown file.\n- Do not run mutating terminal commands, commit, push, or perform external actions.\n- You may inspect the repo or other context with read-only commands/tools when needed.\n- Your deliverable is a markdown plan saved inside the active workspace under .hermes/plans/.\n\n## Output requirements\n\nWrite a markdown plan that is concrete and actionable.\n\nInclude, when relevant:\n- Goal\n- Current context / assumptions\n- Proposed approach\n- Step-by-step plan\n- Files likely to change\n- Tests / validation\n- Risks, tradeoffs, and open questions\n\nIf the task is code-related, include exact file paths, likely test targets, and verification steps.\n\n## Save location\n\nSave the plan with write_file under:\n- .hermes/plans/YYYY-MM-DD_HHMMSS-<slug>.md\n\nTreat that as relative to the active working directory / backend workspace. Hermes file tools are backend-aware, so using this relative path keeps the plan with the workspace on local, docker, ssh, modal, and daytona backends.\n\nIf the runtime provides a specific target path, use that exact path.\nIf not, create a sensible timestamped filename yourself under .hermes/plans/.\n\n## Interaction style\n\n- If the request is clear enough, write the plan directly.\n- If no explicit instruction accompanies /plan, infer the task from the current conversation context.\n- If it is genuinely underspecified, ask a brief clarifying question instead of guessing.\n- After saving the plan, reply briefly with what you planned and the saved path.\n”}