Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

pms-task经前管理系统任务

Agent Skill

pms-task 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,662

周安装

458

GitHub Stars

公开资料未说明

下载量

3,737
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:pms-task(经前管理系统任务)
来源仓库:https://github.com/tarasinghrajput/pms-task
安装命令:
openclaw skills install pms-task
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install pms-task

简介

pms-task 实现 GitHub 任务创建与 Google 表格同步,自动化错误和功能请求管理流程。

  • 适用于需要将用户反馈快速转化为工单并跟踪进度的经前管理系统场景。
  • 支持按关键词自动分类任务类型,提升问题响应与处理效率。
  • 通过 clawhub 安装后需授权访问 GitHub 仓库与 Google Workspace 账户。
  • 注意该技能会修改外部系统数据,建议先在小规模测试环境中验证工作流。

SKILL.md

name
pms-task
description
Create PMS tasks (bugs or features) on GitHub and sync to Google Sheets. Use when user says 'PMS Bug addition' for bugs or 'PMS Feature addition' for features. Creates GitHub issue with appropriate labels, assigns to roshanasingh4, updates PMS Task Tracker sheet and Team Daily Update sheet.

PMS Task Addition (Bug & Feature)

Streamlined workflow for logging PMS bugs AND features to GitHub and Google Sheets.

Trigger

User message contains:

  • "PMS Bug addition" → Creates a BUG report
  • "PMS Feature addition" → Creates a FEATURE request

Workflow

1. Determine Task Type

Based on trigger phrase:

TriggerTypeGitHub LabelSheet Task Type
"PMS Bug addition"BugbugIssue
"PMS Feature addition"FeatureenhancementFeature

2. Collect Task Information

Ask the user for (if not provided):

  • Title: Brief summary
  • Description: What's happening (bug) or what's needed (feature)
  • Reproduction Steps: (Bugs only) How to reproduce
  • Expected Outcome: What should happen
  • Priority: P0 (Critical) / P1 (High) / P2 (Medium) / P3 (Low)

3. Create GitHub Issue

For BUGS:

gh issue create --repo roshanasingh4/apni-pathshala-pms \
  --title "<title>" \
  --body "$(cat <<EOF
## Description
<description>

## Steps to Reproduce
1. <step 1>
2. <step 2>
3. <step 3>

## Expected Outcome
<expected outcome>

## Actual Outcome
<what actually happened>
EOF
)" \
  --label "bug,<priority>" \
  --assignee roshanasingh4

For FEATURES:

gh issue create --repo roshanasingh4/apni-pathshala-pms \
  --title "<title>" \
  --body "$(cat <<EOF
## Feature Request
<description>

## Expected Behavior
<expected outcome>

## Use Case
Why is this feature needed?
EOF
)" \
  --label "enhancement,<priority>" \
  --assignee roshanasingh4

Capture the issue URL from output for the sheet.

4. Update PMS Task Tracker Sheet

Sheet ID: 1O07SzGzQa2FwpkBE7h2SUDWZlxsUpz8DxCpyxKjRi8U Tab: Production

Column Mapping (A-K)

ColNameValue
ATask IDPMS-TSKXXX (increment from last entry)
BDescriptionIssue title
CReporterTara Singh Kharwad
DDate SubmittedDD/MM/YYYY (issue creation date)
EStatusNew
FTask typeIssue (bug) / Feature (enhancement) / Testing
GPriorityCritical (P0) / High (P1) / Medium (P2) / Low (P3)
HAssigned Totarasinghrajput7261@gmail.com
IResolution NotesGitHub issue URL
JResolution Date(empty until closed)
KTook Help from Roshan(leave empty - Tara fills manually)

Label to Sheet Mapping

GitHub LabelTask TypePriority
bugIssue-
enhancementFeature-
P0-Critical
P1-High
P2-Medium
P3-Low

Get Next Task ID

gog sheets get 1O07SzGzQa2FwpkBE7h2SUDWZlxsUpz8DxCpyxKjRi8U "Production!A:A" --json | jq '.values | .[-1][0]'

Then increment the number.

Append to Sheet (BUG)

gog sheets append 1O07SzGzQa2FwpkBE7h2SUDWZlxsUpz8DxCpyxKjRi8U "Production!A:K" \
  --values-json '[["PMS-TSK-XXX","<title>","Tara Singh Kharwad","DD/MM/YYYY","New","Issue","Low","tarasinghrajput7261@gmail.com","<github_url>","",""]]' \
  --insert INSERT_ROWS

Append to Sheet (FEATURE)

gog sheets append 1O07SzGzQa2FwpkBE7h2SUDWZlxsUpz8DxCpyxKjRi8U "Production!A:K" \
  --values-json '[["PMS-TSK-XXX","<title>","Tara Singh Kharwad","DD/MM/YYYY","New","Feature","Low","tarasinghrajput7261@gmail.com","<github_url>","",""]]' \
  --insert INSERT_ROWS

5. Update Team Daily Update Sheet

Sheet ID: 1GgRgfVBrF-ReGPRmntT6Cm2BjiLzJ3JiBaC4lMfrMQs

Find row with today's date, append to Column B with format:

- PMS - <title> - <github_url>

Format for Daily Tasks

Each day's tasks are in a single cell with headings and bullet points:

- PMS - Fixed login button issue - https://github.com/...
- PMS - Added export feature - https://github.com/...

Get Today's Row

# Find row with today's date
gog sheets get 1GgRgfVBrF-ReGPRmntT6Cm2BjiLzJ3JiBaC4lMfrMQs "Sheet1!A:B" --json
# Look for today's date (DD/MM/YYYY) in Column A

Update Cell

# Append to existing content in Column B
gog sheets update 1GgRgfVBrF-ReGPRmntT6Cm2BjiLzJ3JiBaC4lMfrMQs "Sheet1!B<row>" \
  --values-json '[["<existing_content>\
- PMS - <title> - <github_url>"]]'

Priority Guide

PriorityLabelWhen to Use
P0CriticalSystem down, data loss, security issue
P1HighMajor feature broken/needed, many users affected
P2MediumFeature partially working/needed, workaround exists
P3LowMinor issue, cosmetic, low impact

Example Usage

Bug Example

User: "PMS Bug addition - Login page crashes on mobile"

Response:

  1. Detect: BUG → GitHub label: bug, Sheet type: Issue
  2. Ask for details (steps, expected outcome, priority)
  3. Create GitHub issue with bug template → get URL
  4. Get next Task ID from sheet
  5. Append to PMS Task Tracker with Task type = "Issue"
  6. Update Team Daily Update sheet with new entry

Feature Example

User: "PMS Feature addition - Add dark mode support"

Response:

  1. Detect: FEATURE → GitHub label: enhancement, Sheet type: Feature
  2. Ask for details (description, expected behavior, use case, priority)
  3. Create GitHub issue with feature template → get URL
  4. Get next Task ID from sheet
  5. Append to PMS Task Tracker with Task type = "Feature"
  6. Update Team Daily Update sheet with new entry

Quick Reference

TriggerGitHub LabelSheet Task TypeIssue Template
PMS Bug additionbugIssueBug report with reproduction steps
PMS Feature additionenhancementFeatureFeature request with use case

Notes

  • Reporter is ALWAYS "Tara Singh Kharwad"
  • Assigned To is ALWAYS "tarasinghrajput7261@gmail.com"
  • Resolution Notes = GitHub issue URL
  • "Took Help from Roshan" is left empty (Tara fills manually)
  • Date format: DD/MM/YYYY only
  • Status starts as "New"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

93.91%
按下载量换算3,509

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills