browse-profiles
Browse all thinking profiles on the system. Use when user says 'browse profiles', 'show profiles', 'what profiles are available'.
What this skill does
<references>
<reference name="starter-catalog" path="references/starter-catalog.md" />
<reference name="person-profile" path="references/person-profile.md" />
<reference name="master-index" path="$HOME/.things/think-like/profiles/master-index.json" />
</references>
<purpose>
Browse all thinking profiles on the user's system - including user-created profiles and installed starters. Optionally install bundled starters that haven't been installed yet.
</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>
<action>Use this <home> path for all file operations below.</action>
<constraint>Never pass `~` to the Read tool.</constraint>
<action>Read the master index file.</action>
<read path="<home>/.things/think-like/profiles/master-index.json" output="master-index" />
<if condition="master-index-missing">
<ask-user-question>
<question>It looks like you haven't set up `think-like` yet. Would you like to run `/setup-tl` now?</question>
<option>Yes</option>
<option>No</option>
</ask-user-question>
<if condition="yes">
<invoke-skill plugin="think-like" skill="setup-tl" />
</if>
<if condition="no"><exit /></if>
</if>
</load-config>
</step>
<step id="load-profiles" number="2">
<description>Load All Profile Metadata</description>
<for-each item="profile" source="master-index.profiles">
<read path="<home>/.things/think-like/profiles/<id>/index.json" output="profile-metadata" />
</for-each>
</step>
<step id="load-starter-catalog" number="3">
<description>Load Starter Catalog</description>
<action>Read the starter catalog to identify any bundled starters not yet installed.</action>
<read path="<plugin_root>/skills/browse-profiles/references/starter-catalog.md" output="starter-catalog" />
<action>Determine which starters are not present in master-index.</action>
</step>
<step id="parse-arguments" number="4">
<description>Parse Arguments</description>
<if condition="arguments-contain-install-id">
<action>Skip to step 7 (install-starter).</action>
</if>
<if condition="arguments-contain --tag">
<action>Extract the tag value after `--tag`. Store as `filter-tag` for use in step 5.</action>
</if>
</step>
<step id="display-profiles" number="5">
<description>Display All Profiles</description>
<action>Show a numbered list of profiles on the system.</action>
<if condition="filter-tag-set">
<action>Only show profiles whose tags array includes `filter-tag`. If no profiles match, tell the user: "No profiles match tag '<filter-tag>'."</action>
</if>
<output-format>
<section heading="Your Profiles">
<for-each item="profile" source="master-index.profiles (filtered by tag if set)">
<output>
<name>Profile display name</name>
<id>Profile ID</id>
<description>Short description from profile metadata</description>
<available-actions>List of action names (e.g., code-review, debug)</available-actions>
<tags>Tags from profile metadata</tags>
<last-used>Last used date, or "never"</last-used>
</output>
</for-each>
</section>
<if condition="uninstalled-starters-exist">
<section heading="Available to Install">
<for-each item="uninstalled-starter" source="starter-catalog (minus already-installed, filtered by tag if set)">
<output>
<name>Starter display name</name>
<id>Starter ID</id>
<description>Short description from starter catalog</description>
<available-actions>List of action names</available-actions>
<tags>Tags from starter catalog</tags>
</output>
</for-each>
</section>
</if>
<hint>You can also search across all plugins with `/things:search-things --tag <tag>`.</hint>
</output-format>
</step>
<step id="prompt-user" number="6">
<description>Prompt User</description>
<ask-user-question>
<question>What would you like to do?</question>
<option>View profile details</option>
<option>Install a starter</option>
<option>Just browsing</option>
</ask-user-question>
<if condition="view-profile-details">
<ask-user-question>
<question>Which profile would you like to view?</question>
<option-with-text-input>Enter profile ID or number:</option-with-text-input>
</ask-user-question>
<action>Read the profile's person file and display identity, philosophy, and available actions.</action>
<read path="<home>/.things/shared/people/<id>/profile.md" output="person-profile" />
<if condition="profile-is-uninstalled-starter">
<action>Fall back to reading from the plugin's starters directory.</action>
<read path="<plugin_root>/starters/<id>/person/profile.md" output="person-profile" />
</if>
<action>Display the identity, philosophy, and available actions.</action>
</if>
<if condition="install-a-starter">
<ask-user-question>
<question>Which starter would you like to install?</question>
<option-with-text-input>Enter starter ID or number:</option-with-text-input>
</ask-user-question>
<action>Continue to step 7 with selected starter.</action>
</if>
<if condition="just-browsing">
<action>Done. Remind user they can use `/profile <id> <action>` to use a profile.</action>
<exit />
</if>
</step>
<step id="install-starter" number="7">
<description>Install Starter Profile</description>
<for-each item="starter-to-install">
<substep name="check-existing">
<description>Check if already installed.</description>
<if condition="already-installed">
<ask-user-question>
<question><name> is already installed. What would you like to do?</question>
<option>Overwrite with starter version</option>
<option>Skip this one</option>
<option>Cancel</option>
</ask-user-question>
<if condition="skip"><action>Skip to next starter.</action></if>
<if condition="cancel"><exit /></if>
</if>
</substep>
<substep name="create-directories">
<description>Create directories if needed.</description>
<command language="bash" tool="Bash">mkdir -p <home>/.things/shared/people/<id></command>
<command language="bash" tool="Bash">mkdir -p <home>/.things/think-like/profiles/<id></command>
</substep>
<substep name="copy-person-files">
<description>Copy person files to shared/people.</description>
<read path="<plugin_root>/starters/<id>/person/profile.md" output="person-profile-content" />
<write path="<home>/.things/shared/people/<id>/profile.md" content="person-profile-content" />
<read path="<plugin_root>/starters/<id>/person/index.json" output="person-index-content" />
<write path="<home>/.things/shared/people/<id>/index.json" content="person-index-content" />
</substep>
<substep name="copy-action-files">
<description>Copy action files to profiles directory.</description>
<action>Copy all `.md` files from `<plugin_root>/starters/<id>/contexts/` to `<home>/.things/think-like/profiles/<id>/`.</action>
<for-each item="action-file" source="starters/<id>/contexts/*.md">
<read path="<plugin_root>/starters/<id>/contexts/<action-file>" output="action-content" />
<write path="<home>/.things/think-like/profiles/<id>/<action-file>" content="action-content" />
</for-each>
</substep>
<substepRelated 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.