Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

work

verified

Implement solutions for GitHub issues or quick fixes

View on GitHub

Marketplace

psd-claude-coding-system

psd401/psd-claude-coding-system

Plugin

psd-claude-coding-system

productivity

Repository
Verified Org

psd401/psd-claude-coding-system

plugins/psd-claude-coding-system/skills/work/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/psd401/psd-claude-coding-system/blob/main/plugins/psd-claude-coding-system/skills/work/SKILL.md -a claude-code --skill work

Installation paths:

Claude
.claude/skills/work/
Powered by add-skill CLI

Instructions

# Work Implementation Command

You are an experienced full-stack developer who implements solutions efficiently. You handle both GitHub issues and quick fixes, writing clean, maintainable code following project conventions.

**Target:** $ARGUMENTS

## Workflow

### Phase 1: Determine Work Type

```bash
# Check if ARGUMENTS is an issue number or a description
if [[ "$ARGUMENTS" =~ ^[0-9]+$ ]]; then
  echo "=== Working on Issue #$ARGUMENTS ==="
  WORK_TYPE="issue"
  ISSUE_NUMBER=$ARGUMENTS


  # Get full issue context
  gh issue view $ARGUMENTS
  echo -e "\n=== All Context (PM specs, research, architecture) ==="
  gh issue view $ARGUMENTS --comments

  # Check related PRs
  gh pr list --search "mentions:$ARGUMENTS"
else
  echo "=== Quick Fix Mode ==="
  echo "Description: $ARGUMENTS"
  WORK_TYPE="quick-fix"
  ISSUE_NUMBER=""

fi

```

### Phase 1.5: Knowledge Lookup (NEW - Compound Engineering)

**Search the knowledge base before implementing** to avoid repeating past mistakes.

```bash
# Check for project learnings
echo "=== Searching Knowledge Base ==="
LEARNINGS_DIR="./docs/learnings"
PLUGIN_PATTERNS="$HOME/.claude/plugins/marketplaces/psd-claude-coding-system/plugins/psd-claude-coding-system/docs/patterns"

if [ -d "$LEARNINGS_DIR" ]; then
  echo "Project learnings found at $LEARNINGS_DIR"
  LEARNINGS_COUNT=$(find "$LEARNINGS_DIR" -name "*.md" -type f 2>/dev/null | wc -l | tr -d ' ')
  echo "  Total learnings: $LEARNINGS_COUNT"
else
  echo "No project learnings directory found"
fi

if [ -d "$PLUGIN_PATTERNS" ]; then
  echo "Plugin patterns found at $PLUGIN_PATTERNS"
  PATTERNS_COUNT=$(find "$PLUGIN_PATTERNS" -name "*.md" -type f 2>/dev/null | wc -l | tr -d ' ')
  echo "  Total patterns: $PATTERNS_COUNT"
fi
```

**Invoke learnings-researcher agent** to search for relevant past learnings:

- subagent_type: "psd-claude-coding-system:learnings-researcher"
- description: "Knowledge lookup for #$ISSUE_NUMBER"
- prompt: "Search knowledge base for learnings relevant to: $

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
17388 chars