pms-task

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.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "pms-task" with this command: npx skills add tarasinghrajput/pms-task

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>\n- 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"

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Agent Dev Workflow

Orchestrate coding agents (Claude Code, Codex, etc.) to implement coding tasks through a structured workflow. Use when the user gives a coding requirement, f...

Registry SourceRecently Updated
Coding

Cortex Engine

Persistent cognitive memory for AI agents — query, record, review, and consolidate knowledge across sessions with spreading activation, FSRS scheduling, and...

Registry SourceRecently Updated
Coding

Skill Blocker - 安全守卫

Blocks execution of dangerous commands and risky operations like destructive deletions, credential theft, code injection, and unauthorized system changes to...

Registry SourceRecently Updated
014
Profile unavailable