os-whats-next

os-whats-next is a skill for Claude Code from kharmanskyi/open-steps. It costs 155 tokens per session (1,465 once invoked), scanned A, original, MIT.

A workflow guide for deciding the next development task from recent work, project files, and open pull requests.

In plain words
What is it for?
Use it after a coding session or when you ask what remains, what is blocked, or what to work on next.
Why use it?
It removes the need to inspect many sources or guess what should happen next. It points to one practical next move.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Part of the open-steps plugin — 7 skills, 1 command, 2 hooks shipped together

Good fit Use it after a coding session or when you ask what remains, what is blocked, or what to work on next.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kharmanskyi/open-steps/os-whats-next
Install

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.

Any agent
npx skills add kharmanskyi/open-steps --skill os-whats-next
Clone the repo
git clone --depth 1 https://github.com/kharmanskyi/open-steps

Made for: Claude Code.

Or install open-steps, the plugin that ships this one along with the rest of its 7 skills, 1 command, 2 hooks.

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 os-whats-next

README.md
[![agentmods](https://agentmods.dev/badge/skills/kharmanskyi/open-steps/os-whats-next/github.svg)](https://agentmods.dev/skills/kharmanskyi/open-steps/os-whats-next)
Your own site
<a href="https://agentmods.dev/skills/kharmanskyi/open-steps/os-whats-next"><img src="https://agentmods.dev/badge/skills/kharmanskyi/open-steps/os-whats-next/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 os-whats-next

Your own site · 80×15
<a href="https://agentmods.dev/skills/kharmanskyi/open-steps/os-whats-next"><img src="https://agentmods.dev/badge/skills/kharmanskyi/open-steps/os-whats-next.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 155 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,465 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: 2 findings, up to medium

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 →

  • medium Rogue Agent · line 33
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Excessive Agency · line 68
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00155 $0.01465
Opus 5 $0.00077 $0.00732
Sonnet 5 $0.00031 $0.00293
Haiku 4.5 $0.00015 $0.00146

Measured 10d ago against content hash 369405647e4d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

os-whats-next 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.

skills/os-whats-next/SKILL.md · 135 lines

How it starts

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

os-whats-next

Answer "what do we do now" with the next move, not a map. The user does not need the dependency graph - they need what got finished, what to take next, and why, in plain words. This skill decides; os-step-by-step walks the user through their part; os-done-or-not reports what came of it.

Language

Write in the language the user speaks in this session, detected from the conversation. Commands, file names and identifiers stay English.

When to use

Triggers: the description above, plus a session just ended wanting a next move.

Step 1 - read the state, quickest first

Stop as soon as you can answer.

  1. The last report - ~/.claude/open-steps/reports/<project>/latest.md: a handover written for exactly this moment.
  2. Local state - uncommitted changes, unpushed commits, current branch.
  3. Open pull requests - one call: gh pr list --json number,title,mergeStateStatus,reviewDecision,isDraft.
  4. The backlog - always. The issue tracker when one is already connected (never authenticate or install one), otherwise task files in the repo: ROADMAP.md, PLAN.md, TODO.md, docs/plan*. Next work comes from the backlog, not from imagination. No backlog anywhere → say so.

Say which sources you did not read: an unread source is not an empty source.

Step 2 - finish what is finished

A pull request with green checks and an approval is not a decision - it is unfinished business. Verify it through os-check-work's accept rules and merge it in this same pass. Two things stop the merge: a failed claim, and a task instruction that merges happen on command only - an orchestrator may own the merge. Report it as done, never as a question.

Step 3 - sort what remains into two lists

List Belongs there when
I can do this alone everything needed is at hand: no decision, no secret, no approval, no device
Needs you a decision, an approval, a secret, a purchase, or a device only the user has

Read the full file on GitHub · 135 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 135 lines · 155 tokens per session scan A 369405647e4d

Subscribe to this mod's changes

os-whats-next is a skill published in the GitHub repository kharmanskyi/open-steps (342 stars, last pushed today), licensed MIT. It adds 155 tokens to every session and 1,465 once invoked, about $0.0008 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

命理解读师

A Chinese-language Zi Wei Dou Shu birth-chart interpretation guide, a form of traditional Chinese astrology based on birth details. It presents results as possible patterns rather than certain predictions and can include a chosen year's outlook.

learnwithu/mingli-master · 189 tokens

travel-plan-viz

A tool that turns a travel plan into a single HTML page designed for phones and offline reading. The page can include an interactive map, a daily timeline, and reminders to book things before departure.

zexuanw958-svg/travel-plan-viz · 96 tokens

cinematic-scroll

Build or improve cinematic websites with scroll-driven storytelling, pinned reveals, parallax, kinetic type, and optional 3D. Deliver standalone HTML or integrate into an existing app, with mobile and reduced-motion fallbacks and browser evidence. Also supports scroll audits and motion storyboards. Use for cinematic…

MustBeSimo/cinematic-scroll-skill · 75 tokens

Linear

Managing Linear issues, projects, and teams. Use when working with Linear tasks, creating issues, updating status, querying projects, or managing team workflows.

wrsmith108/linear-claude-skill · 32 tokens

gpt-image2-ppt

A tool for creating presentation slides as high-resolution images and packaging them into a 16:9 PowerPoint file. It turns a Markdown outline or slide plan into a styled deck using OpenAI image generation.

JuneYaooo/gpt-image2-ppt-skills · 112 tokens

majia-guanyuan

A practical extension layer for Guandata BI, a business-intelligence platform used to query data, build charts, and publish dashboards. It covers advanced data-pipeline work and custom HTML, CSS, and JavaScript dashboards beyond the standard tools.

maojiebc/majia-guanyuan · 498 tokens