Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add GuillemRoca/agent-skills-android --skill planning-and-task-breakdowngit clone --depth 1 https://github.com/GuillemRoca/agent-skills-androidWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/guillemroca/agent-skills-android/planning-and-task-breakdown)<a href="https://agentmods.dev/skills/guillemroca/agent-skills-android/planning-and-task-breakdown"><img src="https://agentmods.dev/badge/skills/guillemroca/agent-skills-android/planning-and-task-breakdown/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/guillemroca/agent-skills-android/planning-and-task-breakdown"><img src="https://agentmods.dev/badge/skills/guillemroca/agent-skills-android/planning-and-task-breakdown.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.01151 |
| Opus 5 | $0.00019 | $0.00575 |
| Sonnet 5 | $0.00008 | $0.00230 |
| Haiku 4.5 | $0.00004 | $0.00115 |
Grade A, and why
planning-and-task-breakdown scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 131 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Planning and Task Breakdown
Overview
"The plan is the task — 10 minutes upfront prevents hours of rework." Break work into small, ordered, verifiable tasks before writing code. Each task is a vertical slice that leaves the system in a working state.
When to Use
- Before implementing any feature spanning more than 2–3 files
- After writing a spec (follows
spec-driven-development) - When a task feels "too big to start"
- When multiple developers will work on related code
Skip when: The change is a single-file fix with obvious scope.
Core Process
Step 1: Read-Only Analysis
- Read the spec (SPEC.md) or requirements — do not modify any code
- Map the codebase:
- Which modules are involved? (
:app,:feature:*,:core:*) - Which layers? (UI → ViewModel → UseCase → Repository → DataSource)
- What existing code can be reused?
- Which modules are involved? (
- Identify constraints:
- Android API level requirements
- Existing architecture patterns to follow
- Library versions and compatibility
Step 2: Map Dependencies
- Draw the dependency graph:
- Data models → Repository → UseCase → ViewModel → UI
- Room entities → DAOs → Database migrations
- Navigation graph changes → Screen composables → ViewModels
- Identify the critical path — what must exist before other work can start
Step 3: Vertical Slicing
-
Slice vertically, not horizontally:
Wrong (horizontal):
- Task 1: Create all Room entities
- Task 2: Create all DAOs
- Task 3: Create all repositories
- Task 4: Create all ViewModels
- Task 5: Create all screens
Right (vertical):
- Task 1: User can view item list (Entity + DAO + Repo + ViewModel + Screen)
- Task 2: User can create new item (AddScreen + ViewModel + Repo insert)
- Task 3: User can edit existing item (EditScreen + ViewModel + Repo update)
- Task 4: User can delete item (swipe-to-delete + Repo delete + undo)
-
Each slice must:
- Deliver observable functionality
- Be testable in isolation
- Leave
./gradlew buildpassing
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 131 lines · 39 tokens per session scan A 977d6eac9a94
planning-and-task-breakdown is a skill published in the GitHub repository GuillemRoca/agent-skills-android (2 stars, last pushed 2mo ago), licensed MIT. It adds 39 tokens to every session and 1,151 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
spec-kitty-mission-system
Understand how Spec Kitty missions work: the 4 built-in mission types, how they define workflows via step contracts and action indices, how missions and work packages relate, how templates are resolved through the 6-tier chain, and how doctrine artifacts (procedures, tactics, directives) compose mission behavior.…
spec-kitty-git-workflow
Understand how Spec Kitty manages git: what git operations Python handles automatically, what agents must do manually, worktree lifecycle, auto-commit behavior, merge execution, and the safe-commit pattern. Triggers: "how does spec-kitty use git", "worktree management", "auto-commit", "who commits what", "git…
spec-kitty-spdd-reasons
Drive REASONS Canvas authoring and review for Spec Kitty missions that opted in to Structured-Prompt-Driven Development (SPDD) via charter selection. Triggers: "use SPDD", "use REASONS", "generate a REASONS canvas", "apply structured prompt driven development", "make this mission SPDD". Does NOT handle: enforcing SPDD…
spec-kitty-runtime-review
Review runtime-owned outputs using the Spec Kitty review workflow surface, then direct approval or rejection with structured feedback. Triggers: "review this work package", "check runtime output", "approve this step", "review WP", "is this WP ready to approve", "check this implementation". Does NOT handle: setup-only…
spk-doctrine-show-me
Explain Spec Kitty work with compact, checkable visuals. Use for specs, plans, architecture, control flow, diffs, status boards, or whenever prose obscures structure.
spk-admin-dashboard
Open or report the Spec Kitty dashboard. Use for dashboard URL, localhost daemon metadata in .kittify/.dashboard, --open, --kill, or status views.