Claude Skill

choosing-a-workflow

Use FIRST when any new piece of work arrives — a request, feature, change, fix, question, or idea — before starting on it or choosing an approach. Not for continuing work already routed to a workflow skill.

LLM Mart · 0 points · 13 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download JetBrains-thinkrail-packages_pi-thinkrail-workflow_skills_choosing-a-workflow-ba76462.zip · 1 KB
Part of jetbrains/thinkrail — 11 skills

Install

skills CLI npx skills add https://github.com/JetBrains/thinkrail/tree/main/packages/pi-thinkrail-workflow/skills/choosing-a-workflow
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install jetbrains-thinkrail@llmmart
Git git clone https://github.com/JetBrains/thinkrail.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole jetbrains/thinkrail collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Choosing a Workflow

The root router of the workflow family in packages/pi-thinkrail-workflow. It classifies new workflow-eligible work and names the workflow skill that governs it — nothing more. Work already routed resumes its active workflow instead. A routed skill's steps live in that skill alone; read it, don't run it from memory.

Classify

For a new piece of work, read the request and use what is already known to answer three questions:

  1. Is this project onboarding? No spec graph yet — an empty or effectively empty workspace where the user brings a raw idea, or an existing codebase being set up or specced for the first time.
  2. Is this the PR lifecycle? Finished work shipping as a pull request, or an existing PR being tended — created, brought up to date, given screenshots, its checks watched, or its review comments addressed. Fixes that flow from a PR's own review comments belong here.
  3. Does the work require a product or design choice? The request leaves scope, user-visible behavior, or architecture to decide before implementation.

If none applies, no workflow is needed: proceed directly without a workflow announcement. A fully specified fix, mechanical refactor, documentation or configuration-only change, question, explanation, or check normally belongs here.

If the route is genuinely ambiguous from the request alone, ask one short clarifying question (ask_user_question, composed per the asking-user-questions concept skill) rather than guessing.

Route

Classification Route
Project onboarding — no spec graph yet Read and follow setting-up-a-project
PR lifecycle work Read and follow shipping-a-pr
A change requiring a product or design choice Read and follow brainstorming
None of the above No matching workflow; proceed directly without announcing the routing result

One route per piece of work. If a request bundles unfinished implementation with PR work, route the implementation first and return to shipping-a-pr only after it lands.

Red flags — stop and re-route

  • You started implementation while a required product or architecture choice is still unresolved.
  • You loaded brainstorming for work whose observable result and implementation constraints are already specified.
  • You re-entered this router while continuing work already assigned to a workflow.
  • You are following a routed skill's steps from memory instead of reading that skill.

Handoff

This skill ends by naming exactly one of: setting-up-a-project, shipping-a-pr, brainstorming, or no matching workflow (proceed directly). Adding a workflow to the family adds a row to the table above — see the writing-workflow-skills skill.

Files (thinkrail)
  • SKILL.md 3.1 KB
    ---
    name: choosing-a-workflow
    description: "Use at the start of new project onboarding, PR lifecycle work including PR checks, or changes that require choosing product scope, user-visible behavior, or architecture. Not for continuing work already routed to a workflow, non-PR questions, checks, explanations, or localized fully specified work."
    ---
    
    # Choosing a Workflow
    
    The root router of the workflow family in `packages/pi-thinkrail-workflow`. It classifies new
    workflow-eligible work and names the workflow skill that governs it — nothing more. Work already routed
    resumes its active workflow instead. A routed skill's steps live in that skill alone; read it, don't run
    it from memory.
    
    ## Classify
    
    For a new piece of work, read the request and use what is already known to answer three questions:
    
    1. **Is this project onboarding?** No spec graph yet — an empty or effectively empty workspace where
       the user brings a raw idea, or an existing codebase being set up or specced for the first time.
    2. **Is this the PR lifecycle?** Finished work shipping as a pull request, or an existing PR being
       tended — created, brought up to date, given screenshots, its checks watched, or its review comments
       addressed. Fixes that flow from a PR's own review comments belong here.
    3. **Does the work require a product or design choice?** The request leaves scope, user-visible
       behavior, or architecture to decide before implementation.
    
    If none applies, no workflow is needed: proceed directly without a workflow announcement. A fully
    specified fix, mechanical refactor, documentation or configuration-only change, question,
    explanation, or check normally belongs here.
    
    If the route is genuinely ambiguous from the request alone, ask one short clarifying question
    (`ask_user_question`, composed per the **asking-user-questions** concept skill) rather than guessing.
    
    ## Route
    
    | Classification | Route |
    |---|---|
    | Project onboarding — no spec graph yet | Read and follow **setting-up-a-project** |
    | PR lifecycle work | Read and follow **shipping-a-pr** |
    | A change requiring a product or design choice | Read and follow **brainstorming** |
    | None of the above | No matching workflow; proceed directly without announcing the routing result |
    
    One route per piece of work. If a request bundles unfinished implementation with PR work, route the
    implementation first and return to **shipping-a-pr** only after it lands.
    
    ## Red flags — stop and re-route
    
    - You started implementation while a required product or architecture choice is still unresolved.
    - You loaded **brainstorming** for work whose observable result and implementation constraints are
      already specified.
    - You re-entered this router while continuing work already assigned to a workflow.
    - You are following a routed skill's steps from memory instead of reading that skill.
    
    ## Handoff
    
    This skill ends by naming exactly one of: **setting-up-a-project**, **shipping-a-pr**,
    **brainstorming**, or **no matching workflow** (proceed directly). Adding a workflow to the family
    adds a row to the table above — see the **writing-workflow-skills** skill.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related