Systems Lab

Agent skill

suede-recommend-next-action

Next-action selector for the Suede pack: inspects current repo, terminal, plan, or handoff state read-only and returns one recommended next move plus a short, self-contained copy/paste prompt for it.

activeReaches the webInstructions only791 words

From JasonColapietro/suede-creator-skills · 79 skills · 135 · pushed 2026-09-13

What it does when it runs

Next-action selector for the Suede pack: inspects current repo, terminal, plan, or handoff state read-only and returns one recommended next move plus a short, self-contained copy/paste prompt for it. Use when the user asks 'what's next', 'what should I do next', 'recommend the next move', 'give me the prompt', 'expand prompt', or 'make it granular', especially after a review, audit, plan, or stalled task. NOT FOR: executing the recommended action without the user's separate authorization, or coordinating a multi-lane build across specialists (use suede-agent-teams).

Read from the skill and the 3 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.

Keys and connectors you must supply
None found.
Hosts it reaches
  • docs.nvidia.com
  • skills.suedeai.ai
Tool permissions it declares
No allowed-tools in the frontmatter. It only issues instructions, so there is nothing to bound.
Actions present in the files
None. Instructions only.

Ask about suede-recommend-next-action

Opens your assistant with this page's verified links already in the prompt.

Is this safe to install?ClaudeChatGPT
Adapt it to my stackClaudeChatGPT
What else do I need for it to workClaudeChatGPT
Rather ask a human? Talk to Cheetah
git clone --depth 1 --filter=blob:none --sparse https://github.com/JasonColapietro/suede-creator-skills.git /tmp/suede-creator-skills
git -C /tmp/suede-creator-skills sparse-checkout set "skills/suede-recommend-next-action"
mkdir -p ~/.claude/skills/suede-recommend-next-action
cp -R "/tmp/suede-creator-skills/skills/suede-recommend-next-action/." ~/.claude/skills/suede-recommend-next-action/

Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗

Or take the whole library

This repo ships a .claude-plugin manifest, so Claude Code can install all 79 skills at once. Plugin skills are invoked as /<plugin>:<skill>, so they never collide with your own.

/plugin marketplace add JasonColapietro/suede-creator-skills
/plugin

The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.

Reproduced in full from JasonColapietro/suede-creator-skills/blob/5c61ad997adb202d505a7e46eaf39dcd51edbdc5/skills/suede-recommend-next-action/SKILL.md, which is licensed MIT (repository). 791 words, 7 headings.

Suede Recommend Next Action

Recommend one action and package it as a short runnable prompt. Inspect current state read-only; do not execute the recommended action unless the user separately authorizes execution. Keep the full operator contract hidden until the user asks to expand it.

Recommendation Workflow

  1. Resolve the target and the user's actual done outcome from the current request, conversation, handoff, plan, repo, or live surface.
  2. Check only the evidence needed to distinguish the next move. Prefer, in order: current terminal/repo/live state, current source documents, current plans or handoffs, then older memory. Run the reads, don't assume them: git -C <target-repo> status --short --branch for dirty files and ahead/behind, git -C <target-repo> log --oneline -5 for what actually landed, a direct read of the named plan/STATE/handoff file at its exact path, and — when a live surface is in scope — a fetch of the URL itself (curl -sS -o /dev/null -w '%{http_code}' <url>) instead of trusting the last recorded deploy. Skip any read that cannot change which candidate wins.
  3. Generate 2-4 candidate actions internally. Exclude work already verified as complete, adjacent cleanup, and actions outside the user's authorized scope.
  4. Score each candidate from 0-2 on every criterion below. Recommend the highest total.
Criterion2 points1 point0 points
Goal alignmentDirectly produces the user's done signalRequired prerequisiteMerely adjacent
UnblockingUnlocks a core path or at least two downstream stepsUnlocks one stepUnlocks nothing known
EvidenceConfirmed by current sourceConfirmable with one read-only checkDepends on an assumption
UrgencyActive failure, deadline, security risk, or release gateNeeded for the active milestoneNo current pressure
LeverageFits one focused session and prevents rework or creates a reusable resultBounded work with moderate payoffUnscoped, multi-day, or low-payoff work
  1. Break ties by preferring a required prerequisite, then current-evidence verification, then the more reversible action. If the top two remain within one point and target ambiguity would change the answer, run at most three additional read-only checks. If still tied, show both choices and state the single fact that decides between them.
  2. Turn the recommendation into a 2-4 sentence quick prompt. Keep the scoring and full operator contract internal unless the user asks to compare choices, expand prompt, or make it granular.

Routing Rules

  • If a repo or task already has its own plan, progress doc, issue tracker, or project board, do not create a second one. Treat its recorded next step as one candidate, verify it against current source, and recommend the winner — don't replace the existing tracker.
  • If the user needs options explored before a commitment can be made, say so and offer to brainstorm instead of forcing a single recommendation.
  • If missing evidence is the real blocker, make the smallest read-only check the recommended action and generate a prompt for that check.

Prompt Levels

The three prompt depths — short copy/paste, full operator prompt, granular steps — are in references/prompt-levels.md. The default is the short prompt; read this only when the user asks to expand or make it granular.

Output Format

Recommended action: <one sentence>
Why now: <one evidence-backed sentence>

Quick prompt: <2-4 runnable sentences>

Say "expand prompt" for the full operator version or "make it granular" for exact steps and commands.

Show the route, score, evidence list, confidence, or alternatives only when the user asks for rationale or when the unresolved tie rule requires them. When the recommendation is an evidence-gathering step, state that in Why now without loading the expanded prompt.

Boundaries

  • Do not mutate files, repos, deployments, accounts, messages, or live systems while recommending.
  • Do not load the expanded or granular prompt by default.
  • Do not repeat a broad audit when one current execution lane can be selected.
  • Do not invent paths, URLs, skill availability, status, metrics, owners, or completion evidence.
  • Do not recommend vague actions such as "keep working", "improve the app", or "do more research". Name a command, artifact, decision, edit, or verification result.
  • Do not hide a blocker. If authority or a decisive fact is missing, make its resolution the next action.

Routing

  • Need multi-lane coordination across specialists -> use suede-agent-teams.
  • Need help picking which single skill fits a request -> read this pack's router (suede-workflow-skills) or ask directly.
  • Need idea exploration before selecting a move -> brainstorm directly with the user instead of forcing a single recommendation.
  • Need execution -> use the specialist named in the generated prompt.

Files bundled with it

These load only when the skill asks for them, so they cost nothing until it runs.

Other skills for the same job

Different authors, same problem. Matched on the words in the skill name, across every library in the catalogue except this one.

Need help setting it up?

This page tells you what suede-recommend-next-action does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.

Book a call →

The directory stays free. There is nothing gated behind this.