rpi-setup-humanlayer
use this skill when a user asks to set up RPI or a "research plan implement" workflow, or to do anything related to RPI skills. if the user says the acronym "RPI" or "rpi" or "humanlayer", you MUST use this skill! Example questions - "I want to set up rpi for ticket eng-1234" - "Whats the next rpi step for eng-5678"
What this skill does
## HumanLayer RPI Setup
You're tasked with setting up a research-plan-implement workflow for a user.
## CRITICAL: Validate Prerequisites First
Before doing ANYTHING else, validate prerequisites. Run these checks in order:
### Step 1: Check HumanLayer CLI
```bash
which humanlayer
```
If not found: "HumanLayer CLI not found. Install via: `brew install humanlayer/tap/humanlayer`"
### Step 2: Check Linear CLI
```bash
which linear
```
If not found: "Linear CLI not found. Install via: `npm install -g @codelayer/linear-cli`"
### Step 3: Check Thoughts Configuration
```bash
humanlayer thoughts status
```
If fails or "Not initialized": "Thoughts not configured. Run: `humanlayer thoughts init`"
### Step 4: Verify Sync Works
```bash
humanlayer thoughts sync
```
If fails, tell user to check their thoughts repository configuration.
### Step 5: Output Test Permalink
Parse `humanlayer thoughts status` output to get:
- "Thoughts directory" line (e.g., `repos/synclayer`)
Get the thoughts repo path and GitHub remote:
```bash
humanlayer thoughts config | grep "Thoughts repository" | awk '{print $NF}'
```
Then:
```bash
git -C <that-path> remote get-url origin
```
Construct and output a test permalink:
```
Prerequisites validated!
Test this permalink opens correctly:
https://github.com/<org>/<repo>/tree/main/<thoughts-directory>/tasks/
If it opens to your tasks directory, you're ready!
```
---
## After Prerequisites Pass
Help the user with their RPI workflow question.
## Example: Setting up a new ticket
```
User: set up rpi for ticket eng-1234
```
1. Run prerequisite checks (steps 1-5)
2. Fetch ticket info: `linear get-issue-v2 eng-1234 --fields=branch`
3. Create task directory: `mkdir -p thoughts/tasks/eng-1234-description`
4. Fetch ticket: `linear get-issue eng-1234 > thoughts/tasks/eng-1234-description/ticket.md`
5. Tell user to start with: `use the create-research-questions skill for thoughts/tasks/eng-1234-description/ticket.md`
## Example: Checking status of existing task
```
User: what's the next rpi step for eng-5678
```
1. Find task dir: `ls thoughts/tasks | grep eng-5678`
2. List contents: `ls thoughts/tasks/eng-5678-...`
3. Based on which files exist, suggest the next skill to use
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.