CtrlK
BlogDocsLog inGet started
Tessl Logo

task-prioritize

Reprioritize a devflow task — move between priority folders (P0-P4) and update frontmatter.

65

Quality

77%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Fix and improve this skill with Tessl

tessl review fix ./devflow-plugin/skills/task-prioritize/SKILL.md

The canonical home for this skill is task-prioritize in AndreJorgeLopes/devflow

SKILL.md
Quality
Evals
Security

You are reprioritizing a task in the devflow task backlog.

Inputs

Provide via $ARGUMENTS:

  • Task ID — the task filename without extension
  • New priority — one of: P0, P1, P2, P3, P4

Example: /devflow:task-prioritize FEAT-context-compaction-skill P1

If arguments are missing, ask the user for both.

Steps

  1. Find the task file:

    find /Users/andrejorgelopes/dev/devflow/tasks -name "<TASK_ID>.md" -not -path "*/done/*"
  2. Update frontmatter. Change the priority field:

    priority: <NEW_PRIORITY>
  3. Move to the correct folder:

    mkdir -p /Users/andrejorgelopes/dev/devflow/tasks/<NEW_PRIORITY>
    mv /Users/andrejorgelopes/dev/devflow/tasks/<OLD_PRIORITY>/<TASK_ID>.md /Users/andrejorgelopes/dev/devflow/tasks/<NEW_PRIORITY>/
  4. Report the change:

    ## Task Reprioritized
    
    **Task:** <TASK_ID>
    **Title:** <task title>
    **From:** <old priority>
    **To:** <new priority>

Important

  • Never move tasks from done/ — completed tasks stay completed.
  • If the task is already at the requested priority, inform the user and do nothing.

$ARGUMENTS

Repository
AndreJorgeLopes/devflow
Last updated
First committed

Canonical home

AndreJorgeLopes/devflow
In sync

since May 7, 2026

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.