mock-wdyd
Simulate a full interview round with timed questions, persona-consistent follow-ups, and end-of-round assessment
What this skill does
<references>
- references/mock-formats.md
- references/timing-guide.md
</references>
<purpose>
Run a realistic interview round: multiple questions, consistent persona, timed pacing, and a comprehensive debrief at the end.
</purpose>
<steps>
<step id="load-config" number="1">
<description>Load Configuration</description>
<load-config>
<action>Resolve the user's home directory.</action>
<command language="bash" output="home" tool="Bash">echo $HOME</command>
<constraint>Never pass `~` to the Read tool.</constraint>
<read path="<home>/.things/config.json" output="config" />
<if condition="config-missing">Tell the user: "Run `/things:setup-things` first." Then stop.</if>
<read path="<home>/.things/shared/professional-profile.json" output="profile" />
<read path="<home>/.things/what-did-you-do/preferences.json" output="preferences" />
<if condition="preferences-missing">Tell the user: "Run `/setup-wdyd` first." Then stop.</if>
</load-config>
</step>
<step id="load-arsenal-and-history" number="2">
<description>Load Arsenal and Session History</description>
<action>Read `<home>/.things/i-did-a-thing/arsenal/` and professional goals from `<home>/.things/shared/professional-profile.json`.</action>
<command language="bash" tool="Bash">bash <plugin_root>/scripts/search-sessions.sh --type mock --recent 5</command>
</step>
<step id="select-company-and-stage" number="3">
<description>Select Company and Stage</description>
<if condition="company-provided">
<read path="<home>/.things/shared/companies/<company>.yaml" output="company-profile" />
</if>
<if condition="no-company-specified">
<ask-user>
Which company are you preparing for?
<options>
- Amazon -- LP-driven, bar raiser focus
- Google -- technical excellence, Googleyness
- Meta -- move fast, impact-driven
- Generic -- no company-specific framing
- Custom -- I have a company profile set up
</options>
</ask-user>
</if>
<if condition="stage-provided">
<action>Use the provided `--stage`.</action>
</if>
<if condition="no-stage-and-company-selected">
<action>Present the company's interview stages.</action>
</if>
<if condition="no-stage-and-generic">
<ask-user>
Which interview stage?
<options>
- Phone Screen (30 min) -- 3-4 questions, culture and motivation
- Technical (45 min) -- coding and technical discussion
- Onsite Behavioral (45 min) -- 4-5 deep behavioral questions
- System Design (45 min) -- one end-to-end design problem
- Bar Raiser (60 min) -- cross-functional deep dive
</options>
</ask-user>
</if>
</step>
<step id="configure-round" number="4">
<description>Configure the Round</description>
<action>Based on company profile and stage, determine round parameters.</action>
<constraint>Duration: from `--duration` arg, company profile, or stage default.</constraint>
<constraint>Question count: from `references/mock-formats.md`.</constraint>
<constraint>Persona: from company profile's `persona` field for this stage, or select appropriate persona.</constraint>
<constraint>Evaluation focus: from company profile or stage defaults.</constraint>
<constraint>Question categories: from company values -> question_themes mapping.</constraint>
<read path="<home>/.things/shared/roles/<persona>.md" output="persona" />
</step>
<step id="brief-user" number="5">
<description>Brief the User</description>
<template name="briefing">
> **Mock Interview: [Company] -- [Stage]**
>
> Duration: ~[X] minutes
> Questions: [N]
> Interviewer: [Persona Role]
> Focus: [evaluation areas]
>
> I'll ask questions one at a time. Answer as you would in a real interview. I'll hold all feedback until the debrief at the end.
>
> Ready?
</template>
<constraint>Wait for confirmation before proceeding.</constraint>
</step>
<step id="conduct-round" number="6">
<description>Conduct the Round</description>
<for-each item="question" source="round-questions">
<substep name="select-question">
<description>Select a question using the same spaced repetition algorithm as the practice skill, but filtered by the company's `question_themes` and stage's `evaluation_focus`.</description>
</substep>
<substep name="ask-question">
<description>Ask the question in the persona's voice.</description>
</substep>
<substep name="receive-answer">
<description>Receive the answer.</description>
</substep>
<substep name="optional-follow-up">
<description>Follow-up handling.</description>
<if condition="has-follow-ups-and-time-permits">Ask ONE `depth: 2` follow-up in persona voice.</if>
</substep>
<substep name="silent-score">
<description>Score silently.</description>
<constraint>Silently score the answer -- do NOT share scores yet.</constraint>
</substep>
<substep name="track-time">
<description>Track time spent per question (use `references/timing-guide.md`).</description>
</substep>
<substep name="transition">
<description>Transition to next question naturally in persona voice.</description>
Between questions, use persona-appropriate transitions:
- Staff Engineer: "Good. Let me shift gears..."
- Engineering Manager: "Thank you for sharing that. I'd like to explore..."
- Bar Raiser: "Interesting. Here's a different angle..."
</substep>
</for-each>
<constraint>Do NOT provide feedback between questions. Save it all for the debrief.</constraint>
</step>
<step id="debrief" number="7">
<description>End-of-Round Debrief</description>
<action>After all questions, break character and deliver a comprehensive assessment.</action>
<template name="overall-assessment">
> **Mock Interview Debrief**
>
> **Overall Assessment: [Strong / Advancing / Developing / Not Ready]**
>
> **Dimension Scores:**
>
> | Dimension | Avg Score | Strongest Answer | Weakest Answer |
> |-----------|-----------|-----------------|----------------|
> | Specificity | x/5 | Q<n> | Q<n> |
> | Structure | x/5 | Q<n> | Q<n> |
> | Impact | x/5 | Q<n> | Q<n> |
> | Relevance | x/5 | Q<n> | Q<n> |
> | Self-Advocacy | x/5 | Q<n> | Q<n> |
</template>
<if condition="company-specific">
<template name="company-alignment">
> **[Company] Alignment:**
> - Values demonstrated: <list>
> - Values missing: <list>
> - Level calibration: <assessment vs target level>
</template>
</if>
<template name="per-question-breakdown">
> **Q1: "<question>"**
> Score: x/5 | Strengths: <brief> | To improve: <brief>
> Arsenal suggestion: <relevant log> (`<evidence_type>`) -- e.g., "Your lesson about X is directly relevant" or "Your decision entry on Y demonstrates the tradeoff analysis they want"
</template>
<template name="action-items">
> **Top 3 Action Items:**
> 1. <most impactful improvement>
> 2. <next priority>
> 3. <third priority>
</template>
</step>
<step id="log-session" number="8">
<description>Log the Session</description>
<write path="<home>/.things/what-did-you-do/sessions/<date>-mock-<company>-<stage>.md">
<action>Write session file with full frontmatter including all per-question scores, company alignment, and overall assessment.</action>
</write>
</step>
<step id="update-progress" number="9">
<description>Update Progress Dashboard</description>
<action>Update `<home>/.things/what-did-you-do/progress.json` with new scores and session entry.</action>
</step>
<step id="git-workflow" number="10">
<description>Handle Git WoRelated 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.