一键导入
process-docs
When the user needs to create SOPs, playbooks, runbooks, or other operational documentation that defines how a recurring process should be executed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
When the user needs to create SOPs, playbooks, runbooks, or other operational documentation that defines how a recurring process should be executed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
When the user wants to apply to startup accelerators, incubators, or fellowship programs. Also use when the user mentions "YC application", "Techstars", "accelerator", or "apply to programs".
When the user needs to design or evaluate system architecture — service boundaries, data models, API contracts, infrastructure topology, database selection, or dependency analysis. Also activate for "design the system", "how should I architect this", "monolith vs microservices", or architecture decision records.
When the user needs to write a monthly or quarterly investor update, prepare a board deck, or communicate company progress to stakeholders.
When the user needs to identify at-risk accounts, understand why customers are leaving, reduce churn rate, build health scores, design save plays, or create win-back campaigns.
When the user needs to set up or improve CI/CD pipelines — GitHub Actions, GitLab CI, deployment automation, or says "set up CI", "automate deployment", "add tests to pipeline", "fix my build".
When the user asks for a code review, shares code for feedback, or says "review this", "check my code", "what's wrong with this". Also activate when reviewing a pull request or diff.
| name | process-docs |
| description | When the user needs to create SOPs, playbooks, runbooks, or other operational documentation that defines how a recurring process should be executed. |
| related | ["support-docs","board-update"] |
| reads | ["startup-context"] |
Activate when a founder or operator needs to document an internal process so it can be executed consistently by anyone on the team. This includes prompts like "write an SOP for X," "create a runbook for incident response," "document our onboarding playbook," "how do we standardize this process," or any request to turn tribal knowledge into a repeatable procedure.
A structured markdown document following one of the three templates below. Every process doc includes a metadata header, and the body is written so that someone with no prior context can execute the process end-to-end.
# [Process Name] — Standard Operating Procedure
**Owner:** [Name / Role]
**Last Updated:** [Date]
**Review Cadence:** [Quarterly / Monthly]
**Version:** [1.0]
## Purpose
Why this process exists and what business outcome it supports.
## Scope
What this SOP covers and explicitly does not cover.
## Prerequisites
Tools, access, permissions, or context needed before starting.
## Procedure
1. Step with specific action
- Sub-step with detail
- **Decision point:** If [condition], go to Step X. Otherwise continue.
2. Next step...
## Escalation Path
| Condition | Escalate To | SLA |
|-----------|------------|-----|
| [Trigger] | [Person/Role] | [Timeframe] |
## Success Criteria
How to verify the process was completed correctly.
## Changelog
| Date | Author | Change |
|------|--------|--------|
# [Incident Type] — Runbook
**Severity:** [P0-P3]
**On-Call Owner:** [Role]
**Last Tested:** [Date]
## Detection
How this incident is identified (alerts, customer reports, monitoring).
## Immediate Actions (First 5 Minutes)
1. Triage step...
2. Communication step...
## Diagnosis
Decision tree for identifying root cause.
## Resolution Steps
Step-by-step fix for each known root cause.
## Post-Incident
Checklist for after the incident is resolved.
# [Role/Process] — Onboarding Playbook
**Duration:** [e.g., 2 weeks]
**Buddy/Owner:** [Role]
## Day 1-2: Orientation
Tasks, access setup, key introductions.
## Day 3-5: Core Training
Hands-on exercises, shadowing, tool walkthroughs.
## Week 2: Guided Practice
Supervised execution of real tasks with checkpoints.
## Graduation Criteria
What the person must demonstrate to be considered onboarded.
support-docs — Chain when the process being documented is customer-facing and needs a corresponding help center article or troubleshooting guide.board-update — Chain when operational processes need to be summarized for investor or board reporting (e.g., "here is our incident response maturity").User: "Write an SOP for processing customer refunds."
Good output excerpt:
Procedure
- Open the refund request in Zendesk. Verify the ticket includes: order ID, reason for refund, and customer email.
- Check eligibility in Stripe.
- Decision point: If the order is older than 30 days, escalate to the Support Lead with a note explaining the customer's situation. Do not process the refund.
- If within 30 days, continue to Step 3.
- Issue the refund via Stripe Dashboard > Payments > [Order ID] > Refund. Select "Full refund" unless partial was approved by the Support Lead.
- Update the ticket with the Stripe refund ID and set status to "Solved."
- Log the refund in the Refund Tracker spreadsheet (column A: date, B: order ID, C: amount, D: reason code).
Estimated time: 5-8 minutes per refund.
User: "We need a runbook for when our payment processing goes down."
Good output excerpt:
Immediate Actions (First 5 Minutes)
- Acknowledge the alert in PagerDuty to stop re-escalation.
- Check Stripe Status Page (status.stripe.com). If Stripe reports an outage, skip to "External Provider Outage" section.
- Post in #incidents Slack channel: "Investigating payment processing failures. Updates every 15 min. DRI: [your name]."
- Enable the maintenance banner via Admin > Feature Flags >
payment_maintenance_mode= true. This shows users "Payments temporarily unavailable, please retry shortly" instead of raw errors.