一键导入
delegation
Self-contained delegation philosophy for handoffs that don't fall through cracks. Use when delegating tasks to team members, contractors, or AI agents.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Self-contained delegation philosophy for handoffs that don't fall through cracks. Use when delegating tasks to team members, contractors, or AI agents.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Google Apps Script development best practices learned from production. Use when building Apps Script automation, payment API integrations, Google Sheets menu functions, modal dialogs, Poka Yoke quality gates, or running Apps Script functions from CLI. Covers UI dialog philosophy, API field discovery, submission architecture (source_amount vs transfer_amount), clasp CLI logging, run-appscript.sh function execution, and gate flow design.
Orchestration overview for the autonomous issue dispatch system. Handles bugs AND features from ANY entry point. References the component skills (dispatcher, handler) and per-project skills (bug-intake, qa-submission). Use when user says "dispatch", "fix these issues", "batch implement", "implement this", "build this", "develop this", "here's a plan", or any implementation/feature/fix request — including direct conversational requests to Claude Code.
Generalized Slack bug intake. Scans bug-report channels, auto-fixes small bugs, dispatches big work with clear specs, defers only genuinely ambiguous items to owner. Uses emoji reactions to track state. Each repo provides workspace config via local bug-intake skill. Supports shared channels where multiple repos receive bugs from one Slack channel via semantic routing.
PreToolUse hooks that block direct production database access and raw SQL write operations. Prevents bypass scripts that skip Drizzle ORM migration tracking, and HARD BLOCKS raw psql writes with no bypass — all writes must go through Admin API.
Standard development SOP for ALL code changes — bug fixes, features, refactors, any implementation. Defines the universal pipeline (investigate → fix → test → deploy → QA) and scope-based decision matrix. Also provides continuous scanning mode for autonomous operation. Use when implementing ANY code change, fixing bugs, building features, or when user says "start dev loop", "cowork", "fix this", "implement this", "build this". Each workspace can override with local skill.
Knowledge management for Claude Code projects. Use when: creating skills or agents, deciding where to put new knowledge (skill vs CLAUDE.md vs reference-data vs memory vs agent), routing information, CLAUDE.md hygiene, editing/modifying CLAUDE.md or skills or agents or memory files, extracting content from bloated files, or any discussion about knowledge architecture, documentation structure, or SOP placement. MUST be invoked BEFORE proposing any edits to CLAUDE.md, skills, agents, or memory - no exceptions.
| name | delegation |
| description | Self-contained delegation philosophy for handoffs that don't fall through cracks. Use when delegating tasks to team members, contractors, or AI agents. |
| user-invocable | false |
Philosophy: Every delegation should contain everything needed to close itself - including what the recipient should do AND communicate upon completion.
Standard delegation:
Every delegation includes:
TASK: [What needs to be done]
SUCCESS CRITERIA:
- [Criterion 1]
- [Criterion 2]
UPON COMPLETION, SEND THIS TO [recipient]:
---
Subject: [Pre-written subject]
[Pre-written message body with placeholders for results]
Next step for you: [What requester will do when they receive this]
---
Bad delegation:
"Implement a pricing API endpoint"
Self-contained delegation:
TASK: Implement GET
/api/v1/pricingendpoint that returns current plan pricesSUCCESS CRITERIA:
- Returns JSON with all plan tiers and prices
- Includes regional pricing (Israel vs international)
- Has proper error handling
- Deployed to production
UPON COMPLETION, EMAIL <PROJECT_OWNER_EMAIL>:
Subject: Pricing API endpoint implemented The pricing API endpoint is now live: - Endpoint: <API_ENDPOINT> - Returns: [paste sample response] You can now use this in the Weekly Digest audit SOP to verify balance adjustments match official pricing.
| Concept | Relationship |
|---|---|
| Closed-loop communication (aviation) | Confirms receipt; SCD goes further by pre-loading the response |
| Definition of Done (Agile) | Defines completion criteria; SCD adds callback template |
| Runbooks (DevOps) | Pre-written incident responses; SCD applies this to delegation |