Agent Skills
› zapprosite/JARVIS-REFRIMIX-ENTERPRISE
› task_manager
task_manager
GitHub提供与 TASKMASTER.md 交互的标准流程,包括获取待办任务、理解上下文及标记完成状态。该技能确保按优先级处理任务,并在完成后进行验证更新,防止跳过或错误标记。
Trigger Scenarios
需要查找下一个待执行的任务
需要更新任务完成状态
Install
npx skills add zapprosite/JARVIS-REFRIMIX-ENTERPRISE --skill task_manager -g -y
SKILL.md
Frontmatter
{
"name": "task_manager",
"description": "Logic for parsing, picking, and updating tasks in TASKMASTER.md"
}
Task Manager Skill
This skill provides the standard procedure for interacting with the TASKMASTER.md file.
1. Get Next Task
To find the next task to work on:
- Read
TASKMASTER.md. - Look for the first occurrence of an uncompleted task marker:
- [ ]or- [/](in progress). - Priority:
- "In Progress" section/items first.
- "Next Steps" / "Backlog" section next.
- Output: Extract the task description.
2. Contextualize
Before starting the task:
- Identify key files mentioned in the task description.
- Read those files to understand the current state.
- If the task is vague (e.g., "Implement feature X"), check
implementation_plan.mdif it exists, or create a plan first.
3. Mark Complete
Upon successful verification of the task:
- Use
multi_replace_file_contentto change-[ ]or-[/]to-[x]. - Update the Global Context or Status section if relevant.
4. Safety Rules
- Never mark a task as done without verification (build, test, or visual check).
- Never skip tasks unless explicitly instructed by the user.
- If a task is blocked, mark it with a warning icon (e.g.,
-[!]) and notify the user.
Version History
- 36acf78 Current 2026-07-25 10:21


