planner

planner is a skill for Claude Code, Codex from digitalocean-labs/do-app-platform-skills. It costs 33 tokens per session (1,776 once invoked), scanned A, original, MIT.

A planning guide for breaking DigitalOcean App Platform projects into stages from design and coding through testing and deployment. It distinguishes new projects from projects with existing deployment files.

In plain words
What is it for?
Use it to plan App Platform deployments, prepare or check deployment files, and track multi-step infrastructure setup.
Why use it?
It reduces failures caused by doing a complex deployment all at once and keeps progress, configuration, and unfinished work easier to resume.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is **Tip**: For a complete overview of all available skills, see the [root SKILL.md](../../SKILL.md)..

Good fit Use it to plan App Platform deployments, prepare or check deployment files, and track multi-step infrastructure setup.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/digitalocean-labs/do-app-platform-skills
agentmods
npx agentmods add skills/digitalocean-labs/do-app-platform-skills/planner

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for planner

README.md
[![agentmods](https://agentmods.dev/badge/skills/digitalocean-labs/do-app-platform-skills/planner/github.svg)](https://agentmods.dev/skills/digitalocean-labs/do-app-platform-skills/planner)
Your own site
<a href="https://agentmods.dev/skills/digitalocean-labs/do-app-platform-skills/planner"><img src="https://agentmods.dev/badge/skills/digitalocean-labs/do-app-platform-skills/planner/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.

agentmods 80×15 button for planner

Your own site · 80×15
<a href="https://agentmods.dev/skills/digitalocean-labs/do-app-platform-skills/planner"><img src="https://agentmods.dev/badge/skills/digitalocean-labs/do-app-platform-skills/planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,776 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 47
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00033 $0.01776
Opus 5 $0.00016 $0.00888
Sonnet 5 $0.00007 $0.00355
Haiku 4.5 $0.00003 $0.00178

Measured 9d ago against content hash 53388ae03f86, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

planner 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 9d 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.

skills/planner/SKILL.md · 244 lines

How it starts

The opening of the file, as written. The whole thing — 244 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Planner Skill

Generate staged project plans that break complex projects into manageable, resumable steps - from initial design through coding, testing, to cloud deployment.

Tip: For a complete overview of all available skills, see the root SKILL.md.


Greenfield vs Brownfield Detection

Scenario Detection Behavior
Greenfield No Dockerfiles, no .do/app.yaml Create artifacts from scratch
Brownfield Dockerfiles and/or .do/app.yaml exist Review, validate, enhance existing

The AI assistant automatically detects the project state. Don't recreate valid artifacts. The critical validation gate is doctl app dev build — if that passes, artifacts are correct.


Why Staged Deployment?

Complex App Platform deployments fail when executed monolithically:

  1. Blind deployment fails - Deploying without infrastructure prep results in cryptic errors
  2. Context is lost - Credentials, cluster IDs, and progress are forgotten between sessions
  3. Debugging is harder - When everything deploys at once, it's unclear which component failed
  4. Resumability is poor - Starting over wastes time; partial progress isn't tracked

Build Locally First

CRITICAL: Always validate builds locally before cloud deployment.

doctl app dev build                    # Build using local app spec
doctl app dev build --app <APP_ID>     # Build using existing deployed app
doctl app dev build --env-file .env    # Build with environment overrides
Build Location Feedback Time Cost of Failure
Cloud 5-10 minutes Wasted cycle, confusing logs
Local 30-60 seconds Immediate fix, clear errors

Full details: See build-local-first.md


Tier Classification

Detection from User Description

User Mentions Tier
"static", "frontend only", "no database", "SPA" Tier 1
"PostgreSQL", "MySQL", "database", "API + frontend" Tier 2
"Kafka", "OpenSearch", "workers", "event-driven", "microservices" Tier 3

Read the full file on GitHub · 244 lines

Changes

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.

  1. 9d ago First seen · 244 lines · 33 tokens per session scan A 53388ae03f86

Subscribe to this mod's changes

planner is a skill published in the GitHub repository digitalocean-labs/do-app-platform-skills (36 stars, last pushed 2d ago), licensed MIT. It adds 33 tokens to every session and 1,776 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-30.

Related

Other skills, from other repositories

digitalocean

Use when deploying or operating a workload on DigitalOcean — Droplet vs App Platform vs Functions, doctl, app spec YAML, Managed Postgres/MySQL/Valkey on the VPC, S3-compatible Spaces + CDN. NOT host-agnostic CI/CD or rollback strategy (that is deployment), NOT a bare Hetzner VPS (that is hetzner), NOT another managed…

ericrisco/rsc-harness · 96 tokens

piggyback-hosting

Hosting-Muster, um eine lokal gebaute Anwendung (eigene Datenbank, eigener API-Key, In-Process-State) sicher hostbar zu machen, ohne Nutzerverwaltung zu bauen. Kernzug — der Host speichert nichts, der Browser des Besuchers speichert alles — sodass Pro-Besucher-Accounts, Zugriffsprüfungen und Löschfristen…

ellmos-ai/skills · 229 tokens

netlify-deploy

Deploy web projects to Netlify using the Netlify CLI (npx netlify). Use when the user asks to deploy, host, publish, or link a site/repo on Netlify, including preview and production deploys.

foryourhealth111-pixel/Vibe-Skills · 51 tokens

ecspresso

ECS deployment tool - deploy, manage, and troubleshoot ECS services.

kayac/ecspresso · 17 tokens

securing-helm-chart-deployments

Secure Helm chart deployments by validating chart integrity, scanning templates for misconfigurations, and enforcing security contexts in Kubernetes releases.

xalgorix/xalgorix · 34 tokens

pinme-r2

Use when a PinMe Cloudflare Worker needs R2 object storage, including secure file or image upload, streaming download, metadata lookup, deletion, listing, Range requests, or R2+D1 coordination. Guides AI to use PinMe's automatically injected env.R2 binding without R2 credentials or manual Wrangler configuration.

glitternetwork/pinme · 68 tokens