Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

markdown-task-managerMarkdown task manager 搜索

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

212

周安装

9

GitHub Stars

378

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:markdown-task-manager(Markdown task manager 搜索)
来源仓库:https://github.com/ioniks/markdowntaskmanager
仓库路径:skills/markdown-task-manager
安装命令:
npx skills add https://github.com/ioniks/markdowntaskmanager --skill markdown-task-manager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ioniks/markdowntaskmanager --skill markdown-task-manager

简介

通过 Markdown 清单管理项目任务进度与责任人分配。

  • 可将待办事项转化为可视化看板,跟踪完成状态。
  • 适用于敏捷开发中的迭代规划,但不替代专业的项目管理工具。
  • 任务优先级建议由团队协商确定,AI 仅作格式辅助。
  • markdown-task-manager 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

📋 Markdown Task Manager Skill

When to Use This Skill

  • Create tasks to document work to be done
  • Plan complex features
  • Track project progress
  • Archive completed tasks
  • Generate status reports

📋 STRICT Task Format

Mandatory Template

### TASK-XXX | Task title

**Priority**: [Critical|High|Medium|Low] | **Category**: [Value] | **Assigned**: @user1, @user2
**Created**: YYYY-MM-DD | **Started**: YYYY-MM-DD | **Due**: YYYY-MM-DD | **Finished**: YYYY-MM-DD
**Tags**: #tag1 #tag2 #tag3

Free text description. **NO `##` or `###` headings allowed**.

**Subtasks**:
- [ ] First subtask
- [x] Completed subtask

**Notes**:
Additional notes with subsections `**Title**:`.

**Result**:
What was done.

**Modified files**:
- file.js (lines 42-58)

❌ FORBIDDEN

  • ## Title or ### Title inside a task
  • **Subtasks** or **Notes** without :
  • Automatic archiving (only on user request)

Why? The HTML parser of the application does not recognize ## inside tasks.

🔄 Workflow

1. New Request

  1. Read kanban.md to get the last task ID
  2. Create task in kanban.md → "📝 To Do" section
  3. Unique ID (TASK-XXX) auto-incremented
  4. Break down into subtasks if needed
  5. Increment counter in <!-- Config: Last Task ID: XXX -->

2. Start Work

  1. Move task → "🚀 In Progress" section
  2. Add **Started**: YYYY-MM-DD
  3. Check off subtasks progressively

3. Finish Work

  1. Move → "✅ Done" section
  2. Add **Finished**: YYYY-MM-DD
  3. Document in **Notes**::

- **Result**: - What was done - **Modified files**: - List with line numbers - **Technical decisions**: - Choices made - **Tests performed**: - Validated tests

4. Archiving

⚠️ Tasks are NOT archived immediately!

  • Completed tasks remain in "✅ Done"
  • Only on user request → move to archive.md
  • Never archive directly at end of work

📁 File Structure

kanban.md

# Kanban Board

<!-- Config: Last Task ID: 42 -->

## ⚙️ Configuration

**Columns**: 📝 To Do | 🚀 In Progress | 👀 Review | ✅ Done
**Categories**: Frontend, Backend, DevOps
**Users**: @alice, @bob
**Tags**: #bug, #feature, #docs

---

## 📝 To Do

### TASK-001 | Title
[...]

## 🚀 In Progress

## 👀 Review

## ✅ Done

### TASK-003 | Completed task
[...]

archive.md

# Task Archive

> Archived tasks

## ✅ Archives

### TASK-001 | Archived task
[... full content ...]

---

### TASK-002 | Another archived task
[... full content ...]

🎯 Golden Rules

✅ ALWAYS

  1. Create task BEFORE coding
  2. Strict format (no ## inside tasks)
  3. Break down if complex (3+ steps)
  4. Update in real-time
  5. Document result in **Notes**:
  6. Reference tasks in commits (TASK-XXX)
  7. Leave in "Done" (archive only on user request)

❌ NEVER

  1. ## Title inside a task
  2. Code without creating task
  3. Forget to check off subtasks
  4. Archive immediately (stay in "Done")
  5. Forget to document the result

🔧 User Commands

Planning

  • "Plan [feature]"
  • "Create roadmap for 3 months"

Execution

  • "Do TASK-XXX"
  • "Continue TASK-XXX"

Tracking

  • "Where are we?"
  • "Weekly status"

Modifications

  • "Break down TASK-XXX"
  • "Add subtask to TASK-XXX"

Search

  • "Search in archives: [keyword]"

Maintenance

  • "Archive completed tasks"

📝 Complete Examples

Simple Task

### TASK-001 | Fix login bug

**Priority**: Critical | **Category**: Backend | **Assigned**: @bob
**Created**: 2025-01-20 | **Due**: 2025-01-21
**Tags**: #bug #urgent

Users cannot log in. Error 500 in logs.

**Notes**:
Check Redis, related to yesterday's deployment.

Complete Task with Result

### TASK-042 | Notification system

**Priority**: High | **Category**: Backend | **Assigned**: @alice
**Created**: 2025-01-15 | **Started**: 2025-01-18 | **Finished**: 2025-01-22
**Tags**: #feature

Real-time notifications with WebSockets.

**Subtasks**:
- [x] Setup WebSocket server
- [x] REST API
- [x] Email sending
- [x] Notifications UI
- [x] E2E tests

**Notes**:

**Result**:
✅ Functional system with WebSocket, REST API and emails.

**Modified files**:
- src/websocket/server.js (lines 1-150)
- src/api/notifications.js (lines 20-85)

**Technical decisions**:
- Socket.io for WebSockets
- SendGrid for emails
- 30-day history in MongoDB

**Tests performed**:
- ✅ 100 simultaneous connections
- ✅ Auto-reconnection
- ✅ Emails < 2s

🛠️ Skill Functions

When using this skill, you must:

  1. Read kanban.md to understand current state and get last ID
  2. Create tasks following strict format
  3. Update tasks by moving between sections
  4. Check off subtasks progressively
  5. Document result in Notes before marking Done
  6. Increment Last Task ID in config comment
  7. Never archive unless explicitly requested

📘 Git Integration

# Commits with reference
git commit -m "feat: Add feature (TASK-042 - 3/5)"
git commit -m "fix: Bug fix (TASK-001)"

# Branches
git checkout -b feature/TASK-042-notifications

⚠️ Critical Points of Attention

  1. Markdown Format: Strictly respect format (no ## inside tasks)
  2. ID Increment: Always increment <!-- Config: Last Task ID: XXX -->
  3. Columns: Use exact column names defined in Configuration
  4. Archiving: NEVER archive automatically, only on request
  5. Documentation: Always fill **Notes**: with Result, Modified files, etc.

🎓 Usage

Initialization

Before using the skill, verify the project contains:

  • kanban.md (required)
  • archive.md (required)
  • AI_WORKFLOW.md (optional but recommended)

First Use

"Use the markdown-task-manager skill to create a task for [feature]"

Invocation Examples

"Skill markdown-task-manager: create a task to implement authentication"
"Skill markdown-task-manager: update TASK-007 with results"
"Skill markdown-task-manager: list all tasks in progress"
"Skill markdown-task-manager: archive completed tasks"

🔍 Implementation Details

Reading kanban.md

Always start by reading kanban.md to:

  • Get the last task ID from <!-- Config: Last Task ID: XXX -->
  • Understand existing columns structure
  • Check current tasks in each column

Creating a New Task

  1. Calculate new ID: last_id + 1
  2. Format as TASK-XXX (3 digits with leading zeros)
  3. Add to "📝 To Do" section
  4. Update <!-- Config: Last Task ID: XXX --> comment
  5. Use today's date for **Created**:

Moving Tasks Between Columns

When moving a task:

  1. Copy entire task content (from ### TASK-XXX to blank line before next task)
  2. Paste in target column section
  3. Delete from original location
  4. Update dates accordingly (**Started**: or **Finished**:)

Completing Tasks

Before moving to "✅ Done":

  1. Ensure all subtasks are checked [x]
  2. Add **Finished**: YYYY-MM-DD
  3. Fill in **Notes**: section with:

- **Result**: describing what was accomplished - **Modified files**: listing changed files with line ranges - **Technical decisions**: if any choices were made - **Tests performed**: if tests were run

Archiving Tasks

Only when user explicitly requests archiving:

  1. Read task from "✅ Done" section in kanban.md
  2. Append task to "## ✅ Archives" section in archive.md
  3. Add separator --- between archived tasks
  4. Remove task from kanban.md

This skill ensures complete traceability and total transparency of work done by AI.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.85%
按下载量换算27

Claude

32%
按下载量换算24

Cursor

16.6%
按下载量换算12

Gemini CLI

8.42%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills