소스 정보
- 저장소
- lotosbin/claude-skills
- 최근 소스 활동
- 2025년 12월 28일 03:28
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 14
- 포크
- 4
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/lotosbin/claude-skills --skill task-manager명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | task-manager |
| description | 统一任务管理技能,使用 GitHub Issues 管理所有 Agent 任务,支持任务创建、更新、追踪和完成 |
| version | 1.0.0 |
当用户提到以下内容时自动触发:
# 创建标准任务
gh issue create \
--title "[类型] 任务标题" \
--body "任务描述" \
--label "enhancement"
# 创建带里程碑的任务
gh issue create \
--title "[类型] 任务标题" \
--body "任务描述" \
--milestone "Q1-2025" \
--label "priority/high"
| 标签 | 描述 | 使用场景 |
|---|---|---|
enhancement | 新功能/改进 | 功能开发、优化 |
bug | 缺陷修复 | Bug 修复 |
documentation | 文档更新 | 文档编写 |
infrastructure | 基础设施 | 运维、部署 |
security | 安全相关 | 安全修复 |
priority/high | 高优先级 | 紧急任务 |
priority/medium | 中优先级 | 普通任务 |
priority/low | 低优先级 | 长期任务 |
| 前缀 | Agent | 示例 |
|---|---|---|
[CEO] | 首席执行官 | [CEO] 制定 Q1 战略 |
[COO] | 首席运营官 | [COO] 市场推广计划 |
[CFO] | 财务总监 | [CFO] 年度预算 |
[CTO] | 首席技术官 | [CTO] 架构升级 |
[CIO] | 首席信息官 | [CIO] 安全审计 |
[PM] | 产品经理 | [PM] 用户需求分析 |
[DESIGN] | 设计师 | [DESIGN] UI 更新 |
[LEGAL] | 法务顾问 | [LEGAL] 合同审核 |
[MKT] | 市场运营 | [MKT] 社交媒体活动 |
# 查看所有待办任务
gh issue list --state open
# 查看已关闭任务
gh issue list --state closed
# 查看特定标签任务
gh issue list --label "enhancement"
# 查看特定里程碑任务
gh issue list --milestone "Q1-2025"
# 更新任务状态
gh issue close <issue-number> # 关闭任务
gh issue reopen <issue-number> # 重新开启
# 添加标签
gh issue edit <issue-number> --add-label "priority/high"
# 分配任务
gh issue edit <issue-number> --assignee "liubinbin"
## 任务描述
[描述任务的目标和背景]
## 验收标准
- [ ] 标准 1
- [ ] 标准 2
- [ ] 标准 3
## 相关资源
- 文档链接
- 相关 Issue
- 设计稿
## 预计工时
X 小时
## 实际工时
Y 小时
## 任务状态
- [ ] 待开始
- [ ] 进行中
- [ ] 待审核
- [ ] 已完成
每日工作开始:
├── gh issue list --state open # 查看待办任务
├── 选择优先级最高的任务
└── 开始执行
任务执行中:
├── 更新任务进度 (如需要)
└── 记录实际工时
每日工作结束:
├── 更新任务状态
└── 创建明日任务 (如需要)
每周五:
├── gh issue list --state open --label "enhancement" # 检查功能任务
├── gh issue list --state open --label "bug" # 检查 Bug
├── 关闭已完成任务
├── 更新待处理任务状态
└── 创建下周任务
# 创建季度里程碑
gh issue create \
--title "[规划] Q1 2025 里程碑" \
--body "第一季度目标设定" \
--milestone "Q1-2025"
# 关联相关任务
gh issue edit <issue-number> --milestone "Q1-2025"
# 战略规划
gh issue create --title "[CEO] 制定年度战略" --body "..." --label "strategy"
# 重大决策
gh issue create --title "[CEO] 产品方向决策" --body "..." --label "decision"
# 运营管理
gh issue create --title "[COO] 优化运营流程" --body "..." --label "operations"
# 市场活动
gh issue create --title "[COO] 春节营销活动" --body "..." --label "marketing"
# 财务管理
gh issue create --title "[CFO] 年度预算编制" --body "..." --label "finance"
# 成本分析
gh issue create --title "[CFO] Q1 成本分析" --body "..." --label "analysis"
# 技术规划
gh issue create --title "[CTO] 技术路线图" --body "..." --label "planning"
# 架构升级
gh issue create --title "[CTO] 微服务改造" --body "..." --label "architecture"
# IT 运维
gh issue create --title "[CIO] 服务器监控配置" --body "..." --label "infrastructure"
# 安全合规
gh issue create --title "[CIO] 安全审计" --body "..." --label "security"
# 需求分析
gh issue create --title "[PM] 用户调研" --body "..." --label "research"
# 产品规划
gh issue create --title "[PM] v2.0 功能规划" --body "..." --label "planning"
# UI 设计
gh issue create --title "[DESIGN] 首页改版" --body "..." --label "design"
# 交互优化
gh issue create --title "[DESIGN] 登录流程优化" --body "..." --label "ux"
# 合同审核
gh issue create --title "[LEGAL] 供应商合同审核" --body "..." --label "contract"
# 合规检查
gh issue create --title "[LEGAL] GDPR 合规" --body "..." --label "compliance"
# 内容创作
gh issue create --title "[MKT] 产品介绍文章" --body "..." --label "content"
# 社交媒体
gh issue create --title "[MKT] 小红书推广" --body "..." --label "social"
# 创建多个任务
gh issue create --title "[TASK] 任务1" --body "..."
gh issue create --title "[TASK] 任务2" --body "..."
gh issue create --title "[TASK] 任务3" --body "..."
# 查看并关闭已完成任务
gh issue list --state open --assignee "liubinbin" --json number,title
# 手动确认后关闭
gh issue close <number>
# 统计任务数量
gh issue list --state open | wc -l
# 统计各标签任务
gh issue list --state open --label "bug" | wc -l
gh issue list --state open --label "enhancement" | wc -l
# 导出任务列表
gh issue list --state open --json number,title,labels,assignee > tasks.json
# 任务报告
## 报告周期
- 开始日期: YYYY-MM-DD
- 结束日期: YYYY-MM-DD
## 任务完成情况
| 任务 | 状态 | 工时 |
|------|------|------|
| XXX | ✅ 完成 | 4h |
| XXX | 🔄 进行中 | 2h |
| XXX | ⏳ 待开始 | - |
## 新建任务
- [ ] 任务1
- [ ] 任务2
## 待处理任务
- [ ] 任务1
- [ ] 任务2
## 下周计划
- [ ] 计划1
- [ ] 计划2
# .github/workflows/task-management.yml
name: Task Management
on:
issues:
types: [opened, closed, labeled]
jobs:
track-task:
runs-on: ubuntu-latest
steps:
- name: Log task event
run: |
echo "Issue ${{ github.event.issue.number }} - ${{ github.event.issue.title }}"
echo "Action: ${{ github.event.action }}"
echo "Labels: ${{ join(github.event.issue.labels.*.name, ', ') }}"
[Agent前缀] 标识任务来源| 指标 | 目标值 | 测量频率 |
|---|---|---|
| 任务完成率 | 90%+ | 每周 |
| 按时完成率 | 80%+ | 每周 |
| 平均任务周期 | <3 天 | 每周 |
| 任务工时准确度 | ±20% | 每月 |
SOC 직업 분류 기준