pm-pivot
Use this skill when the user changes direction mid-feature, describes a significant scope change, says the approach isn't working, wants to abandon the current approach, or says "we need to rethink this", "let's change direction", "this isn't right", "pivot", "different approach". Also use when the user's current work no longer matches the active tracked issue (Linear or GitHub).
What this skill does
# PM Pivot — Direction Change Handler
When work diverges from the original Linear issue, surface the decision clearly and recommend a path.
## Usage
```
/pm-pivot
```
Natural-language / workflow-driven — no flags. Triggered by the user describing a direction change (e.g. "let's change direction", "pivot", "this isn't right"). Operates on the active tracked issue and the user's chosen path. Inputs it needs:
- `active issue` *(issue key, required)* — the Linear/GitHub issue work has diverged from.
- `original approach` *(string, required)* — what the issue was planned to do.
- `new approach` *(string, required)* — the changed direction / scope.
- `chosen path` *(enum `A|B|C`, required at execution)* — update existing issue (A), new issue + cancel old (B), or split into two (C); confirmed by the user before any tracker writes.
## Detecting a Pivot
A pivot has occurred when ANY of these are true:
- The user describes a solution significantly different from the issue's description
- The scope expanded or contracted materially
- The original acceptance criteria can no longer be met as written
- The user explicitly says they're taking a different approach
## Step 1: Surface the Divergence
Clearly state what changed:
> "The current approach differs from ENG-42 (Auth middleware refactor). Originally we were planning [original approach], but now we're [new approach]."
## Step 2: Recommend a Path
Evaluate and recommend ONE of these options — don't just list them, pick the most appropriate one and explain why:
### Option A: Update the existing issue
**When to recommend:** The core goal is the same, only the implementation approach changed.
- Update the issue description with the new approach
- Keep the same issue ID (branch name stays valid)
- Add a note explaining the pivot: "Pivoted from X to Y because..."
### Option B: Create a new issue, cancel the old one
**When to recommend:** The scope, goal, or acceptance criteria fundamentally changed.
- Create a new issue with the updated goal and fresh acceptance criteria
- Cancel or mark the original issue as "Won't Do" with a note
- Create a new branch: `<type>/<NEW-ID>-<description>`
- The original branch/PR should either be closed or retargeted
### Option C: Split into two issues
**When to recommend:** The pivot revealed additional work that should be tracked separately.
- Keep the original issue for what was already built
- Create a new issue for the new direction
- Update acceptance criteria on the original to match what was actually built
## Step 3: Execute the Chosen Path
After the user confirms:
**For Option A — Update existing:**
```
save_issue { id: "<issue_id>", description: "<updated>", title: "<updated if needed>" }
```
**For Option B — New issue + cancel old:**
```
save_issue { team: "<team_key>", title: "...", description: "..." } // new issue
save_issue { id: "<old_id>", state: "cancelled" }
```
To find the cancelled state name: `list_issue_statuses { team: "<team_key>" }`
Then use `pm-branches` to create a new branch with the new issue ID.
**For Option C — Split:**
```
save_issue { team: "<team_key>", title: "...", description: "..." } // new direction
save_issue { id: "<old_id>", description: "<narrowed scope>" }
```
## Step 4: Update Cache
Write the updated issue context to `~/.claude/project-manager/cache/<slug>/context.json`.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.