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


