# Plan Task

> Use Snipara's planning tools when the user asks you to implement a complex feature, refactor code, or tackle a multi-step task. Generate execution plans before starting work. Use when this capability is needed.

- Skill: `tomevault-io/plan-task-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/plan-task-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/plan-task-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/plan-task-2

---


When the user asks you to implement something complex:

1. First check if it's complex enough:
   - Affects 5+ files? → Use planning
   - Multiple sub-tasks? → Use planning
   - Architectural decisions? → Use planning

2. Use `mcp__snipara__rlm_plan` with:
   - `query`: The task description
   - `max_tokens`: 16000 for comprehensive plans
   - `strategy`: "relevance_first" (default) or "depth_first"

3. Or use `mcp__snipara__rlm_decompose` to break into chunks:
   - `query`: The task
   - `max_depth`: 2 (recommended)

4. Then query context for each sub-task as you implement

Example workflow:
1. User: "Implement OAuth integration"
2. You: rlm_plan("Implement OAuth integration", max_tokens=16000)
3. Result: Sub-queries with execution order
4. You: Implement each sub-query with rlm_context_query

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/snipara) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-15 -->

