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?

Impact

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

Optimize this skill with Tessl

npx tessl skill review --optimize ./skills/task-prioritize/SKILL.md
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
Created

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.