AgentSkillsCN

sidstack-aware

运用SidStack MCP工具进行项目管理。当用户提出以下需求时触发:(1) “查看任务”“列出任务”或提及“任务”(使用task_list);(2) 用户希望创建/添加/实现某项功能(使用task_create);(3) 正在处理代码变更时(使用task_update并实时更新进度);(4) 完成工作时(使用task_complete)。

SKILL.md
--- frontmatter
name: sidstack-aware
description: >
  Use SidStack MCP tools for project management. Trigger when: (1) user asks to
  "check task", "list tasks", or mentions "task" (use task_list), (2) user asks to
  create/add/implement feature (use task_create), (3) working on code changes (use
  task_update with progress), (4) completing work (use task_complete).

SidStack MCP Tools

Task Management

ActionToolExample
Check taskstask_list({projectId: "folder-name"})"check task", "what tasks"
Create tasktask_create({projectId, title, description})"implement X", "add feature"
Update progresstask_update({taskId, progress: 50})During implementation
Completetask_complete({taskId})After finishing work

Knowledge

ActionToolWhen
Searchknowledge_search({projectPath: ".", query})Before implementing
Contextknowledge_context({projectPath: ".", moduleId})Understanding module

Impact Analysis

ActionToolWhen
Analyzeimpact_analyze({description})Before risky changes
Check gateimpact_check_gate({analysisId})After analysis

Quick Reference

code
# User says "check task" or "list tasks"
task_list({ projectId: "project-folder-name" })

# User wants to implement something
task_create({
  projectId: "project-folder-name",
  title: "[feature] Description",
  description: "What and why",
  taskType: "feature"
})

# During work - update progress
task_update({ taskId: "xxx", progress: 50, status: "in_progress" })

# Done - complete task
task_complete({ taskId: "xxx" })