psd401/psd-claude-coding-system
psd-claude-coding-system
plugins/psd-claude-coding-system/skills/work/SKILL.md
February 1, 2026
Select agents to install to:
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 workInstallation paths:
.claude/skills/work/# 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: $