<!DOCTYPE html><html lang="en" data-theme="light"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="Astro v7.0.6"><title>Skills &amp; Agents — Skills make your AI tools more capable.</title><meta name="description" content="Install one with a single command, and they instantly know how to do more. Browse the catalog of skills and agents."><link rel="canonical" href="https://skillsandagents.co/"><meta property="og:type" content="website"><meta property="og:url" content="https://skillsandagents.co/"><meta property="og:title" content="Skills &amp; Agents"><meta property="og:description" content="Install one with a single command, and they instantly know how to do more."><link rel="icon" type="image/svg+xml" href="/favicon.svg"><!-- Pre-paint theme: avoid a flash of the wrong theme before the toggle script runs. --><script>
  (function () {
    try {
      var stored = localStorage.getItem('theme');
      var theme =
        stored === 'dark' || stored === 'light'
          ? stored
          : window.matchMedia('(prefers-color-scheme: dark)').matches
            ? 'dark'
            : 'light';
      document.documentElement.dataset.theme = theme;
    } catch (e) {
      /* localStorage unavailable — keep the SSR default */
    }
  })();
</script><script>(function(){const amplitudeKey = "c3d4dc0166afb7fcaf484aad9dc4ca93";

    (function () {
      var ready = false;
      var disabled = false;
      var queue = [];
      // Cap the pre-init queue so a blocked CDN / failed init can't grow
      // an unbounded array over a long session.
      var MAX_QUEUE = 50;

      function flush() {
        ready = true;
        for (var i = 0; i < queue.length; i++) {
          try {
            window.amplitude.track(queue[i].name, queue[i].props);
          } catch (err) {
            console.error('Amplitude track failed:', err);
          }
        }
        queue = [];
      }

      function track(name, props) {
        if (!name || disabled) return;
        if (ready && window.amplitude) {
          try {
            window.amplitude.track(name, props || {});
          } catch (err) {
            console.error('Amplitude track failed:', err);
          }
        } else if (queue.length < MAX_QUEUE) {
          queue.push({ name: name, props: props || {} });
        }
      }

      // Expose for use by component scripts.
      window.trackEvent = track;

      // Read data-amp-* attributes off an element into an event props object.
      function collectProps(el) {
        var props = {};
        var attrs = el.attributes;
        for (var i = 0; i < attrs.length; i++) {
          var name = attrs[i].name;
          if (name.indexOf('data-amp-') === 0 && name !== 'data-amp-event') {
            var key = name.slice(9).replace(/-([a-z])/g, function (_, c) {
              return c.toUpperCase();
            });
            props[key] = attrs[i].value;
          }
        }
        return props;
      }

      // Delegated click tracking for any element tagged with data-amp-event.
      document.addEventListener(
        'click',
        function (e) {
          var el = e.target.closest && e.target.closest('[data-amp-event]');
          if (!el) return;
          track(el.getAttribute('data-amp-event'), collectProps(el));
        },
        true
      );

      // Most tagged elements are links that navigate away immediately, which
      // can cancel in-flight Amplitude requests. Flush on pagehide so click
      // events aren't undercounted.
      window.addEventListener('pagehide', function () {
        if (ready && window.amplitude && typeof window.amplitude.flush === 'function') {
          try {
            window.amplitude.flush();
          } catch (err) {
            /* nothing actionable on unload */
          }
        }
      });

      var s = document.createElement('script');
      s.src = 'https://cdn.jsdelivr.net/npm/@amplitude/analytics-browser@2.42.2/lib/scripts/amplitude-min.umd.js';
      s.onload = function () {
        window.amplitude.init(amplitudeKey, undefined, {
          defaultTracking: {
            sessions: true,
            pageViews: true,
            formInteractions: true,
            fileDownloads: true,
          },
        });
        flush();
      };
      // If the SDK never loads, disable tracking and drop the queue so it
      // can't accumulate indefinitely.
      s.onerror = function () {
        disabled = true;
        queue = [];
        console.error('Amplitude SDK failed to load; tracking disabled.');
      };
      document.head.appendChild(s);
    })();
  })();</script><style>.thirdparty-pill[data-astro-cid-7o2puqdx]{font-family:var(--font-mono,"Inter", system-ui, sans-serif);letter-spacing:.12em;text-transform:uppercase;color:var(--ink-faint,#8a8884);border:1px solid var(--line,#e8e6df);transition:color var(--dur-fast,.12s), border-color var(--dur-fast,.12s);align-items:center;gap:6px;padding:3px 8px;font-size:9px;text-decoration:none;display:inline-flex}.thirdparty-pill[data-astro-cid-7o2puqdx]:hover{color:var(--ink,#1a1a1a);border-color:var(--ink,#1a1a1a)}.thirdparty-pill__tag[data-astro-cid-7o2puqdx]{color:var(--ink,#1a1a1a);font-weight:600}.thirdparty-pill__sep[data-astro-cid-7o2puqdx]{opacity:.55}.thirdparty-pill__repo[data-astro-cid-7o2puqdx]{text-transform:none;letter-spacing:.02em}.thirdparty-pill__stars[data-astro-cid-7o2puqdx]{align-items:center;gap:3px;display:inline-flex}.thirdparty-banner[data-astro-cid-7o2puqdx]{border:1px solid var(--line,#d4d4d4);background:var(--paper-2,#f5f5f4);border-left:3px solid var(--skills-accent,#c97a3f);border-radius:4px;flex-direction:column;gap:8px;margin-bottom:24px;padding:16px 20px;display:flex}.thirdparty-banner__row[data-astro-cid-7o2puqdx]{align-items:center;gap:10px;display:flex}.thirdparty-banner__tag[data-astro-cid-7o2puqdx]{letter-spacing:.06em;text-transform:uppercase;color:var(--skills-accent,#c97a3f);font-size:11px;font-weight:700}.thirdparty-banner__stars[data-astro-cid-7o2puqdx]{color:var(--ink-mute,#5c5c5c);align-items:center;gap:3px;font-size:12px;display:inline-flex}.thirdparty-banner__copy[data-astro-cid-7o2puqdx]{color:var(--ink,#1a1a1a);margin:0;font-size:14px;line-height:1.55}.thirdparty-banner__copy[data-astro-cid-7o2puqdx] a[data-astro-cid-7o2puqdx]{color:var(--ink,#1a1a1a);text-underline-offset:2px;text-decoration:underline}.thirdparty-banner__link[data-astro-cid-7o2puqdx]{color:var(--ink,#1a1a1a);border:1px solid var(--line,#d4d4d4);background:var(--paper,#fff);border-radius:2px;align-self:flex-start;align-items:center;gap:6px;margin-top:4px;padding:6px 10px;font-size:13px;font-weight:500;text-decoration:none;transition:border-color .12s;display:inline-flex}.thirdparty-banner__link[data-astro-cid-7o2puqdx]:hover{border-color:var(--ink,#1a1a1a)}
</style><link rel="stylesheet" href="/_astro/ThemeScript.DDXt8pAM.css"><link rel="stylesheet" href="/_astro/index.EHrpoAN3.css"></head><body><div class="app" data-glass-catalog><!-- ===================== NAV ===================== --><div class="nav-wrap"><div class="nav glass"><a class="nav__brand" href="/"><span class="nav__brand-name">Skills <span class="nav__brand-sub">&amp; Agents</span></span></a><div class="nav__search"><input id="skills-search-input" type="search" placeholder="Search" aria-label="Search skills" autocomplete="off" spellcheck="false" maxlength="100"><button class="nav__search-btn" aria-label="Search" type="button"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" aria-hidden="true"><circle cx="11" cy="11" r="7"></circle><path d="M21 21l-4.3-4.3"></path></svg></button></div><button id="glass-theme-toggle" class="nav__icon-btn" aria-label="Toggle theme" type="button"><svg data-theme-icon="moon" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M21 12.8A8.5 8.5 0 1 1 11.2 3a6.6 6.6 0 0 0 9.8 9.8z"></path></svg><svg data-theme-icon="sun" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" aria-hidden="true"><circle cx="12" cy="12" r="4.5"></circle><path d="M12 2v2M12 20v2M4.2 4.2l1.4 1.4M18.4 18.4l1.4 1.4M2 12h2M20 12h2M4.2 19.8l1.4-1.4M18.4 5.6l1.4-1.4"></path></svg></button><div class="nav__menu-wrap"><button id="glass-menu-btn" class="nav__icon-btn" aria-label="Open menu" aria-expanded="false" type="button"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" aria-hidden="true"><path d="M4 7h16M4 12h16M4 17h16"></path></svg></button><div id="glass-menu-pop" class="menu-pop glass" hidden><div class="menu-pop__label">Pages</div><a class="menu-item" href="/" data-amp-event="nav_link_clicked" data-amp-target="all"><span class="menu-item__text"><span class="menu-item__name">All</span><span class="menu-item__desc">Skills and agents</span></span></a><a class="menu-item" href="/#skills" data-amp-event="nav_link_clicked" data-amp-target="skills"><span class="menu-item__text"><span class="menu-item__name">Skills</span><span class="menu-item__desc">Browse the skill catalog</span></span></a><a class="menu-item" href="/agents/" data-amp-event="nav_link_clicked" data-amp-target="agents"><span class="menu-item__text"><span class="menu-item__name">Agents</span><span class="menu-item__desc">Autonomous workers</span></span></a><a class="menu-item" href="/markdown.md" data-amp-event="nav_link_clicked" data-amp-target="agent_mode"><span class="menu-item__text"><span class="menu-item__name">Agent Mode</span><span class="menu-item__desc">A machine-readable view</span></span></a><a class="menu-item" href="/news/" data-amp-event="nav_link_clicked" data-amp-target="news"><span class="menu-item__text"><span class="menu-item__name">News</span><span class="menu-item__desc">Latest from Skills &amp; Agents</span></span></a><a class="menu-item" href="/#faq" data-amp-event="nav_link_clicked" data-amp-target="faq"><span class="menu-item__text"><span class="menu-item__name">FAQs</span><span class="menu-item__desc">Questions, answered</span></span></a><a class="menu-item" href="/contribute/" data-amp-event="nav_link_clicked" data-amp-target="contribute"><span class="menu-item__text"><span class="menu-item__name">Contribute</span><span class="menu-item__desc">Submit a skill or agent</span></span></a></div></div></div></div><script type="module">function e(e,t){typeof window.trackEvent==`function`&&window.trackEvent(e,t??{})}function t(){let t=document.getElementById(`glass-menu-btn`),n=document.getElementById(`glass-menu-pop`);if(!t||!n)return;let r=t,i=n,a=r.closest(`.nav__menu-wrap`);function o(t){i.hidden=!t,r.classList.toggle(`nav__icon-btn--active`,t),r.setAttribute(`aria-expanded`,String(t)),t&&e(`pages_menu_opened`,{})}r.addEventListener(`click`,()=>o(i.hidden===!0)),i.querySelectorAll(`.menu-item`).forEach(e=>{e.addEventListener(`click`,()=>o(!1))}),document.addEventListener(`click`,e=>{i.hidden||a&&!a.contains(e.target)&&o(!1)}),document.addEventListener(`keydown`,e=>{e.key===`Escape`&&!i.hidden&&(o(!1),r.focus())})}function n(){if(document.querySelector(`[data-glass-catalog]`))return;let t=document.querySelector(`.nav__search`);if(!t)return;let n=t.querySelector(`#skills-search-input`),r=t.querySelector(`.nav__search-btn`);if(!n)return;function i(){let t=n.value.trim();t&&e(`nav_search_submitted`,{query_length:t.length}),window.location.href=t?`/?q=${encodeURIComponent(t)}`:`/`}n.addEventListener(`keydown`,e=>{e.key===`Enter`&&(e.preventDefault(),i())}),r&&r.addEventListener(`click`,()=>i())}function r(){let t=document.getElementById(`glass-theme-toggle`);t&&t.addEventListener(`click`,()=>{let t=document.documentElement.dataset.theme===`dark`?`light`:`dark`;document.documentElement.dataset.theme=t;try{localStorage.setItem(`theme`,t)}catch{}e(`theme_toggled`,{theme:t})})}function i(){t(),n(),r()}document.readyState===`loading`?document.addEventListener(`DOMContentLoaded`,i):i();</script><!-- ===================== LAYOUT ===================== --><div class="layout"><!-- Sidebar rail (desktop) --><div class="sidebar-col"><aside class="sidebar"><div class="side-head"><div class="side-eyebrow side-eyebrow--head">Browse</div></div><div class="side-group"><button class="side-item side-item--active" data-segment="all" type="button"><span class="side-item__name">All</span></button><button class="side-item" data-segment="skills" data-amp-event="nav_link_clicked" data-amp-target="skills" type="button"><span class="side-item__name">Skills</span><span class="side-item__count">113</span></button><button class="side-item" data-segment="agents" data-amp-event="nav_link_clicked" data-amp-target="agents" type="button"><span class="side-item__name">Agents</span><span class="side-item__count">6</span></button></div><div class="side-group"><div class="side-eyebrow">Categories</div><button class="side-item side-item--active" data-cat-filter="" type="button"><span class="side-dot" style="background: var(--ink-deep);"></span><span class="side-item__name">All</span></button><button class="side-item" data-cat-filter="comms" type="button"><span class="side-dot" style="background: var(--tint-documents);"></span><span class="side-item__name">Comms</span><span class="side-item__count">3</span></button><button class="side-item" data-cat-filter="content" type="button"><span class="side-dot" style="background: var(--tint-export);"></span><span class="side-item__name">Content</span><span class="side-item__count">7</span></button><button class="side-item" data-cat-filter="coding" type="button"><span class="side-dot" style="background: var(--tint-build);"></span><span class="side-item__name">Engineering</span><span class="side-item__count">25</span></button><button class="side-item" data-cat-filter="finance" type="button"><span class="side-dot" style="background: var(--tint-operations);"></span><span class="side-item__name">Finance</span><span class="side-item__count">20</span></button><button class="side-item" data-cat-filter="marketing" type="button"><span class="side-dot" style="background: var(--tint-design);"></span><span class="side-item__name">Marketing</span><span class="side-item__count">31</span></button><button class="side-item" data-cat-filter="productivity" type="button"><span class="side-dot" style="background: var(--tint-presentation);"></span><span class="side-item__name">Productivity</span><span class="side-item__count">23</span></button><button class="side-item" data-cat-filter="research" type="button"><span class="side-dot" style="background: var(--tint-knowledge);"></span><span class="side-item__name">Research</span><span class="side-item__count">10</span></button></div><div class="side-foot"><p class="side-foot__text">Need help picking the right skill?</p><a class="btn btn--primary btn--full" href="https://app.skillsandagents.co/onboarding?utm_source=skillsandagents.co&amp;utm_medium=sidebar_cta&amp;utm_content=sidebar" data-amp-event="nav_link_clicked" data-amp-cta="skill_matcher" data-amp-target="onboarding" data-amp-location="sidebar">Find my skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></a></div></aside></div><!-- Main column --><main class="main" id="skills"><div class="greet"><h1 class="greet__hello">Skills make your AI tools more capable.</h1><p class="greet__status">Install one with a single command, and they instantly know how to do more.</p></div><!-- Mobile categories trigger --><div class="toolbar toolbar--mobile"><button id="glass-cats-open" class="toolbar__cat" type="button">Categories<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"></path></svg></button></div><!-- Card grid --><div class="grid" id="glass-grid"><a class="card glass" data-skill-row data-search="a/b test setup design and implement a/b tests with proper statistical methodology, sample sizing, and experiment tracking set up an a/b test design an experiment calculate sample size for a test help me run an a/b test" data-type="skill" data-cat="marketing" href="/skills/ab-test-setup/" data-amp-event="skill_clicked" data-amp-skill="A/B Test Setup" data-amp-slug="ab-test-setup" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">A/B Test Setup</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Design and implement A/B tests with proper statistical methodology, sample sizing, and experiment tracking</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="ads copilot chat with your ad-platform and analytics data, then get 3 to 5 ranked, specific optimization moves with the assumption behind each one ads copilot how are my ads doing review my ad spend what should i do about my meta ads optimize my ads audit my ads why isn't growth working" data-type="skill" data-cat="marketing" href="/skills/ads-copilot/" data-amp-event="skill_clicked" data-amp-skill="Ads Copilot" data-amp-slug="ads-copilot" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Ads Copilot</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Chat with your ad-platform and analytics data, then get 3 to 5 ranked, specific optimization moves with the assumption behind each one</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="agency automation blueprint runs a guided discovery for agencies and service businesses, maps where work leaks across gmail, slack, monday.com, meetings, and docs, then ranks the automations worth building and hands back a blueprint. help me automate my agency connect my tools with claude my information is scattered reduce manual admin work where should i start with ai automation" data-type="skill" data-cat="productivity" href="/skills/agency-automation-blueprint/" data-amp-event="skill_clicked" data-amp-skill="Agency Automation Blueprint" data-amp-slug="agency-automation-blueprint" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Agency Automation Blueprint</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Runs a guided discovery for agencies and service businesses, maps where work leaks across Gmail, Slack, Monday.com, meetings, and docs, then ranks the automations worth building and hands back a blueprint.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="agent browser browser automation for ai agents via a native rust cli: navigate pages, fill forms, click, screenshot, extract data, and test web apps from your terminal. automate this browser task fill out this form on the website take a screenshot of this page test this web app scrape data from this site click through this flow /agent-browser" data-type="skill" data-cat="coding" href="/skills/agent-browser/" data-amp-event="skill_clicked" data-amp-skill="Agent Browser" data-amp-slug="agent-browser" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Agent Browser</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Browser automation for AI agents via a native Rust CLI: navigate pages, fill forms, click, screenshot, extract data, and test web apps from your terminal.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: vercel-labs/agent-browser on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>vercel-labs/agent-browser</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="39065 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>39k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="agile product owner manage backlogs, write user stories, prioritize features, and run agile ceremonies as a product owner write user stories for prioritize this backlog plan a sprint help with agile ceremonies" data-type="skill" data-cat="productivity" href="/skills/agile-product-owner/" data-amp-event="skill_clicked" data-amp-skill="Agile Product Owner" data-amp-slug="agile-product-owner" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Agile Product Owner</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Manage backlogs, write user stories, prioritize features, and run agile ceremonies as a product owner</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="ai product design and plan ai-powered products with proper model selection, prompt engineering, and user experience considerations design an ai product plan an ai feature help me build an ai-powered app choose models for my product" data-type="skill" data-cat="coding" href="/skills/ai-product/" data-amp-event="skill_clicked" data-amp-skill="AI Product" data-amp-slug="ai-product" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">AI Product</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Design and plan AI-powered products with proper model selection, prompt engineering, and user experience considerations</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="ai wrapper product build and ship ai wrapper products quickly — api integration, prompt management, and monetization build an ai wrapper create an ai saas product monetize an ai api ship an ai product fast" data-type="skill" data-cat="coding" href="/skills/ai-wrapper-product/" data-amp-event="skill_clicked" data-amp-skill="AI Wrapper Product" data-amp-slug="ai-wrapper-product" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">AI Wrapper Product</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Build and ship AI wrapper products quickly — API integration, prompt management, and monetization</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="analytics tracking set up analytics tracking plans, implement event schemas, and configure measurement for products and marketing set up analytics tracking create a tracking plan implement event tracking configure analytics for my app" data-type="skill" data-cat="coding" href="/skills/analytics-tracking/" data-amp-event="skill_clicked" data-amp-skill="Analytics Tracking" data-amp-slug="analytics-tracking" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Analytics Tracking</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Set up analytics tracking plans, implement event schemas, and configure measurement for products and marketing</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="ap invoice processing watch an inbox for vendor invoices, extract the key fields, dedupe against the ap log, log each one for review, forward to your ap system, and file the email. it never approves and never pays; a human audits every row before money moves. process invoices ap invoice intake log this invoice scan the ap inbox accounts payable intake" data-type="skill" data-cat="finance" href="/skills/ap-invoice-processing/" data-amp-event="skill_clicked" data-amp-skill="AP Invoice Processing" data-amp-slug="ap-invoice-processing" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">AP Invoice Processing</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Watch an inbox for vendor invoices, extract the key fields, dedupe against the AP log, log each one for review, forward to your AP system, and file the email. It never approves and never pays; a human audits every row before money moves.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="app builder rapidly prototype and build full-stack applications with modern frameworks and deployment build me an app scaffold a new project prototype this idea create a web application" data-type="skill" data-cat="coding" href="/skills/app-builder/" data-amp-event="skill_clicked" data-amp-skill="App Builder" data-amp-slug="app-builder" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">App Builder</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Rapidly prototype and build full-stack applications with modern frameworks and deployment</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="app store optimization optimize app store listings for better rankings, visibility, and conversion rates optimize my app store listing improve app store rankings write app store description aso strategy" data-type="skill" data-cat="marketing" href="/skills/app-store-optimization/" data-amp-event="skill_clicked" data-amp-skill="App Store Optimization" data-amp-slug="app-store-optimization" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">App Store Optimization</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Optimize app store listings for better rankings, visibility, and conversion rates</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="brand guidelines (anthropic style) builds a full brand guidelines document in anthropic's clear, human-centered style: voice and tone, typography, color system, visual identity, and usage rules. create brand guidelines define our brand identity write brand voice guidelines build a brand book" data-type="skill" data-cat="marketing" href="/skills/brand-guidelines-anthropic/" data-amp-event="skill_clicked" data-amp-skill="Brand Guidelines (Anthropic Style)" data-amp-slug="brand-guidelines-anthropic" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Brand Guidelines (Anthropic Style)</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Builds a full brand guidelines document in Anthropic&#39;s clear, human-centered style: voice and tone, typography, color system, visual identity, and usage rules.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="brand guidelines (community) build brand guidelines for community-driven products and open-source projects brand guidelines for a community project open source brand identity developer community branding community brand standards" data-type="skill" data-cat="marketing" href="/skills/brand-guidelines-community/" data-amp-event="skill_clicked" data-amp-skill="Brand Guidelines (Community)" data-amp-slug="brand-guidelines-community" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Brand Guidelines (Community)</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Build brand guidelines for community-driven products and open-source projects</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="buy-side due diligence runs systematic buy-side due diligence on a private acquisition: normalizes ebitda, stress-tests the seller's story, and turns red flags into valuation hits. run diligence due diligence qoe this normalize this ebitda build a red flag matrix what's wrong with this cim" data-type="skill" data-cat="finance" href="/skills/buy-side-diligence/" data-amp-event="skill_clicked" data-amp-skill="Buy-Side Due Diligence" data-amp-slug="buy-side-diligence" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Buy-Side Due Diligence</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Runs systematic buy-side due diligence on a private acquisition: normalizes EBITDA, stress-tests the seller&#39;s story, and turns red flags into valuation hits.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="cancel subscriptions scans your gmail for recurring charges, maps your active subscriptions, and cancels the ones you don't want cancel my subscriptions what am i paying for every month find my recurring charges help me cut my subscriptions what subscriptions do i have i want to cancel some subscriptions audit my subscriptions" data-type="skill" data-cat="finance" href="/skills/cancel-subscriptions/" data-amp-event="skill_clicked" data-amp-skill="Cancel Subscriptions" data-amp-slug="cancel-subscriptions" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Cancel Subscriptions</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><p class="card__desc">Scans your Gmail for recurring charges, maps your active subscriptions, and cancels the ones you don&#39;t want</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="card receipt forwarding forward recurring corporate-card receipts to the card/ap system and keep those vendors out of invoice processing to avoid double-counting. use for known recurring card vendors only; flag anything off-list for review. forward this receipt card receipt route to the card system corporate card receipt receipt forwarding" data-type="skill" data-cat="finance" href="/skills/card-receipt-forwarding/" data-amp-event="skill_clicked" data-amp-skill="Card Receipt Forwarding" data-amp-slug="card-receipt-forwarding" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Card Receipt Forwarding</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Forward recurring corporate-card receipts to the card/AP system and keep those vendors out of invoice processing to avoid double-counting. Use for known recurring card vendors only; flag anything off-list for review.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="ceo advisor ceo-level strategic counsel on fundraising, hiring, board management, and the hard executive calls, drawn from how successful startups actually scaled. advise me as a ceo help with fundraising strategy strategic decision on startup leadership advice" data-type="skill" data-cat="productivity" href="/skills/ceo-advisor/" data-amp-event="skill_clicked" data-amp-skill="CEO Advisor" data-amp-slug="ceo-advisor" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">CEO Advisor</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">CEO-level strategic counsel on fundraising, hiring, board management, and the hard executive calls, drawn from how successful startups actually scaled.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="ceo to-do keeps one canonical markdown file as your single source of truth for everything you're on the hook for, and runs the getting things done loop over it — capture, clarify, organize, reflect, engage. run my to-do what am i on the hook for getting things done capture this into my todos weekly review single source of truth" data-type="skill" data-cat="productivity" href="/skills/ceo-todo/" data-amp-event="skill_clicked" data-amp-skill="CEO To-Do" data-amp-slug="ceo-todo" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">CEO To-Do</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Keeps one canonical markdown file as your single source of truth for everything you&#39;re on the hook for, and runs the Getting Things Done loop over it — capture, clarify, organize, reflect, engage.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="claude trading skills a claude skills toolkit for time-constrained individual investors: structured market review, risk management, trade planning, journaling, and continuous improvement across a core-plus-satellite workflow. /claude-trading-skills run my daily market check review my portfolio screen for swing trade candidates size this trade for me journal this closed trade what's the current market regime" data-type="skill" data-cat="finance" href="/skills/claude-trading-skills/" data-amp-event="skill_clicked" data-amp-skill="Claude Trading Skills" data-amp-slug="claude-trading-skills" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Claude Trading Skills</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><p class="card__desc">A Claude Skills toolkit for time-constrained individual investors: structured market review, risk management, trade planning, journaling, and continuous improvement across a core-plus-satellite workflow.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: tradermonty/claude-trading-skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>tradermonty/claude-trading-skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="2473 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>2.5k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="code reviewer reviews code for bugs, security issues, performance problems, and style — with specific, actionable feedback review this code what's wrong with this code code review check my code for issues find bugs in this" data-type="skill" data-cat="coding" href="/skills/code-reviewer/" data-amp-event="skill_clicked" data-amp-skill="Code Reviewer" data-amp-slug="code-reviewer" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Code Reviewer</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Reviews code for bugs, security issues, performance problems, and style — with specific, actionable feedback</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="competitive ads extractor extract and analyze competitor advertising strategies, creatives, and messaging across platforms analyze competitor ads extract competitor advertising competitive ad research what ads are competitors running" data-type="skill" data-cat="marketing" href="/skills/competitive-ads-extractor/" data-amp-event="skill_clicked" data-amp-skill="Competitive Ads Extractor" data-amp-slug="competitive-ads-extractor" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Competitive Ads Extractor</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Extract and analyze competitor advertising strategies, creatives, and messaging across platforms</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="competitor alternatives build alternatives-to and comparison content that positions your product against competitors create competitor comparison page write alternatives content position against competitors build a comparison landing page" data-type="skill" data-cat="marketing" href="/skills/competitor-alternatives/" data-amp-event="skill_clicked" data-amp-skill="Competitor Alternatives" data-amp-slug="competitor-alternatives" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Competitor Alternatives</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Build alternatives-to and comparison content that positions your product against competitors</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="competitor intel researches competitors in real-time — positioning, pricing, recent moves, strengths, and gaps research my competitors give me intel on what is [company] doing competitive analysis on how does [company] compare to us" data-type="skill" data-cat="research" href="/skills/competitor-intel/" data-amp-event="skill_clicked" data-amp-skill="Competitor Intel" data-amp-slug="competitor-intel" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Competitor Intel</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">Researches competitors in real-time — positioning, pricing, recent moves, strengths, and gaps</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="content calendar plans a content calendar for any channel — posts, topics, formats, and publishing cadence for weeks or months ahead create a content calendar plan my content for help me plan social media posts i need a content strategy what should i post this month" data-type="skill" data-cat="content" href="/skills/content-calendar/" data-amp-event="skill_clicked" data-amp-skill="Content Calendar" data-amp-slug="content-calendar" data-amp-category="content" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Content Calendar</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-export);"></span><span class="card__meta-cat">Content</span></div><p class="card__desc">Plans a content calendar for any channel — posts, topics, formats, and publishing cadence for weeks or months ahead</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="content creator create engaging content across formats — blog posts, social media, video scripts, and newsletters create content for write a blog post about create social media content write a video script" data-type="skill" data-cat="content" href="/skills/content-creator/" data-amp-event="skill_clicked" data-amp-skill="Content Creator" data-amp-slug="content-creator" data-amp-category="content" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Content Creator</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-export);"></span><span class="card__meta-cat">Content</span></div><p class="card__desc">Create engaging content across formats — blog posts, social media, video scripts, and newsletters</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="content research writer research topics deeply and produce well-sourced, authoritative long-form content research and write about create a whitepaper on write a research-backed article produce thought leadership content" data-type="skill" data-cat="content" href="/skills/content-research-writer/" data-amp-event="skill_clicked" data-amp-skill="Content Research Writer" data-amp-slug="content-research-writer" data-amp-category="content" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Content Research Writer</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-export);"></span><span class="card__meta-cat">Content</span></div><p class="card__desc">Research topics deeply and produce well-sourced, authoritative long-form content</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="contract review review a vendor, customer, payor, or partner contract before sign-off. extracts key terms with clause citations, flags risks ranked by severity, and drafts a decision-maker memo. review this contract contract review flag the risks in this agreement what are the key terms is this contract safe to sign review this msa" data-type="skill" data-cat="finance" href="/skills/contract-review/" data-amp-event="skill_clicked" data-amp-skill="Contract Review" data-amp-slug="contract-review" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Contract Review</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Review a vendor, customer, payor, or partner contract before sign-off. Extracts key terms with clause citations, flags risks ranked by severity, and drafts a decision-maker memo.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="copy editing professional copy editing — grammar, clarity, consistency, and style polish for any text edit this copy proofread this text improve this writing polish this draft" data-type="skill" data-cat="content" href="/skills/copy-editing/" data-amp-event="skill_clicked" data-amp-skill="Copy Editing" data-amp-slug="copy-editing" data-amp-category="content" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Copy Editing</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-export);"></span><span class="card__meta-cat">Content</span></div><p class="card__desc">Professional copy editing — grammar, clarity, consistency, and style polish for any text</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="copywriting write high-converting copy for landing pages, ads, emails, and product interfaces write copy for my landing page create ad copy write converting headlines improve this marketing copy" data-type="skill" data-cat="marketing" href="/skills/copywriting/" data-amp-event="skill_clicked" data-amp-skill="Copywriting" data-amp-slug="copywriting" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Copywriting</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Write high-converting copy for landing pages, ads, emails, and product interfaces</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="create a prd drafts a product requirements document using an 8-section template — summary, contacts, background, objective, market, value props, solution, and release plan write a prd create a product requirements document draft a prd i need to write a spec for help me document this feature prd for" data-type="skill" data-cat="productivity" href="/skills/pm-create-prd/" data-amp-event="skill_clicked" data-amp-skill="Create a PRD" data-amp-slug="pm-create-prd" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Create a PRD</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Drafts a Product Requirements Document using an 8-section template — summary, contacts, background, objective, market, value props, solution, and release plan</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: phuryn/pm-skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>phuryn/pm-skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="24329 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>24k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="cto advisor technical leadership advice on architecture, team building, technical debt, and engineering culture advise me as cto technical architecture decision engineering team structure manage technical debt" data-type="skill" data-cat="coding" href="/skills/cto-advisor/" data-amp-event="skill_clicked" data-amp-skill="CTO Advisor" data-amp-slug="cto-advisor" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">CTO Advisor</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Technical leadership advice on architecture, team building, technical debt, and engineering culture</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="customer interview script builds a mom test-style customer interview script with jtbd probing questions — warm-up, core exploration, wrap-up, plus a note-taking template write an interview script for customer interview questions user research script jtbd interview mom test script discovery interview" data-type="skill" data-cat="research" href="/skills/pm-interview-script/" data-amp-event="skill_clicked" data-amp-skill="Customer Interview Script" data-amp-slug="pm-interview-script" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Customer Interview Script</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">Builds a Mom Test-style customer interview script with JTBD probing questions — warm-up, core exploration, wrap-up, plus a note-taking template</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: phuryn/pm-skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>phuryn/pm-skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="24329 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>24k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="dispatching parallel agents splits work into independent tasks and farms them out to parallel agents when there's no shared state or sequential dependency between them these tasks are independent can we do these in parallel dispatch agents for this fan this work out run these at the same time" data-type="skill" data-cat="coding" href="/skills/dispatching-parallel-agents/" data-amp-event="skill_clicked" data-amp-skill="Dispatching Parallel Agents" data-amp-slug="dispatching-parallel-agents" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Dispatching Parallel Agents</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Splits work into independent tasks and farms them out to parallel agents when there&#39;s no shared state or sequential dependency between them</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: obra/superpowers on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>obra/superpowers</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="260004 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>260k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="document creator turns a short brief into a complete, professionally structured document: reports, proposals, executive memos, project briefs, and status updates, ready to send. create a document for me write a report on draft a proposal for i need a memo about help me write a business document" data-type="skill" data-cat="productivity" href="/skills/document-creator/" data-amp-event="skill_clicked" data-amp-skill="Document Creator" data-amp-slug="document-creator" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Document Creator</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Turns a short brief into a complete, professionally structured document: reports, proposals, executive memos, project briefs, and status updates, ready to send.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="drip api research drip's premium financial newsletters and podcasts: search topics, browse publications, resolve authors, list recent posts, fetch paid article summaries via x402/mpp micropayments, and get structured daily stock picks. search financial newsletters what are analysts saying about stock picks today browse drip publications research this topic on drip" data-type="skill" data-cat="research" href="/skills/drip-api/" data-amp-event="skill_clicked" data-amp-skill="Drip API" data-amp-slug="drip-api" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Drip API</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">Research Drip&#39;s premium financial newsletters and podcasts: search topics, browse publications, resolve authors, list recent posts, fetch paid article summaries via x402/MPP micropayments, and get structured daily stock picks.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: uristocrat/skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>uristocrat/skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="1 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>1</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="email drafter drafts professional emails from a quick brief — the right tone, length, and structure every time draft an email for me write an email to help me write this email i need to email someone about compose an email" data-type="skill" data-cat="comms" href="/skills/email-drafter/" data-amp-event="skill_clicked" data-amp-skill="Email Drafter" data-amp-slug="email-drafter" data-amp-category="comms" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Email Drafter</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-documents);"></span><span class="card__meta-cat">Comms</span></div><p class="card__desc">Drafts professional emails from a quick brief — the right tone, length, and structure every time</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="email sequence design and write multi-step email sequences — onboarding, nurture, sales, and re-engagement flows create an email sequence write an onboarding series design a nurture campaign build a sales email sequence" data-type="skill" data-cat="marketing" href="/skills/email-sequence/" data-amp-event="skill_clicked" data-amp-skill="Email Sequence" data-amp-slug="email-sequence" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Email Sequence</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Design and write multi-step email sequences — onboarding, nurture, sales, and re-engagement flows</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="email systems set up and optimize email infrastructure — deliverability, authentication, list management, and tooling set up email infrastructure fix email deliverability configure spf dkim dmarc email system setup" data-type="skill" data-cat="coding" href="/skills/email-systems/" data-amp-event="skill_clicked" data-amp-skill="Email Systems" data-amp-slug="email-systems" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Email Systems</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Set up and optimize email infrastructure — deliverability, authentication, list management, and tooling</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="emil design engineering emil kowalski's design-engineering craft as a claude skill: animation decisions, custom easing, spring physics, and details that make uis feel right. review this animation make this ui feel better what easing should i use design a drawer / toast / tooltip why does this animation feel off polish this component /emil-design-eng" data-type="skill" data-cat="coding" href="/skills/emil-design-eng/" data-amp-event="skill_clicked" data-amp-skill="Emil Design Engineering" data-amp-slug="emil-design-eng" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Emil Design Engineering</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Emil Kowalski&#39;s design-engineering craft as a Claude skill: animation decisions, custom easing, spring physics, and details that make UIs feel right.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: emilkowalski/skill on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>emilkowalski/skill</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="20187 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>20k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="equity reconciliation reconcile equity records against the hris to catch termination-date mismatches and active grants for terminated employees, and check that every grant has its source documents. reconcile equity equity reconciliation check cap table against hris find terminated employees with active grants audit equity records" data-type="skill" data-cat="finance" href="/skills/equity-reconciliation/" data-amp-event="skill_clicked" data-amp-skill="Equity Reconciliation" data-amp-slug="equity-reconciliation" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Equity Reconciliation</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Reconcile equity records against the HRIS to catch termination-date mismatches and active grants for terminated employees, and check that every grant has its source documents.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="equity reconciliation (carta mcp) live equity reconciliation powered by the carta mcp server. pulls cap-table data directly from carta, compares it against your hris export, and surfaces termination-date mismatches, active grants for terminated employees, lapsed exercise windows, and missing source documents. reconcile equity with carta carta equity reconciliation pull cap table from carta check carta against hris audit equity records from carta" data-type="skill" data-cat="finance" href="/skills/equity-reconciliation-carta/" data-amp-event="skill_clicked" data-amp-skill="Equity Reconciliation (Carta MCP)" data-amp-slug="equity-reconciliation-carta" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Equity Reconciliation (Carta MCP)</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Live equity reconciliation powered by the Carta MCP server. Pulls cap-table data directly from Carta, compares it against your HRIS export, and surfaces termination-date mismatches, active grants for terminated employees, lapsed exercise windows, and missing source documents.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="expense access audit generate the onboarding or offboarding checklist for the expense/card tool, and audit it against the hris to catch terminated people with active cards or missing approvers. audit expense access new hire expense setup offboard this person check for terminated employees with active cards expense access audit reconcile hris and expense tool" data-type="skill" data-cat="finance" href="/skills/expense-access-audit/" data-amp-event="skill_clicked" data-amp-skill="Expense Access Audit" data-amp-slug="expense-access-audit" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Expense Access Audit</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Generate the onboarding or offboarding checklist for the expense/card tool, and audit it against the HRIS to catch terminated people with active cards or missing approvers.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="expense policy check reviews expense reports against your written policy, flags violations with dual-sided citations, and drafts per-person missing-receipt chase messages. check these expenses run expense policy check flag policy violations draft missing receipt chase review this expense report" data-type="skill" data-cat="finance" href="/skills/expense-policy-check/" data-amp-event="skill_clicked" data-amp-skill="Expense Policy Check" data-amp-slug="expense-policy-check" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Expense Policy Check</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Reviews expense reports against your written policy, flags violations with dual-sided citations, and drafts per-person missing-receipt chase messages.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="expense tracker an mcp-powered expense tracker that pulls bank and card transactions, auto-categorizes spending, and produces a clear monthly expense report by category. track my expenses show me my spending where did my money go this month give me an expense report how much did i spend on" data-type="skill" data-cat="finance" href="/skills/expense-tracker/" data-amp-event="skill_clicked" data-amp-skill="Expense Tracker" data-amp-slug="expense-tracker" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Expense Tracker</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><p class="card__desc">An MCP-powered expense tracker that pulls bank and card transactions, auto-categorizes spending, and produces a clear monthly expense report by category.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="figma generate library build or update a design system library in figma from a codebase generate a figma library from my code sync my design system to figma create figma components from my codebase update the figma library build a component library in figma" data-type="skill" data-cat="coding" href="/skills/figma-generate-library/" data-amp-event="skill_clicked" data-amp-skill="Figma Generate Library" data-amp-slug="figma-generate-library" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Figma Generate Library</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Build or update a design system library in Figma from a codebase</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="figma implement design translate figma designs into production-ready code with 1:1 fidelity implement this figma design turn this design into code code this figma file build this from the figma convert this design to react implement the ui from figma" data-type="skill" data-cat="coding" href="/skills/figma-implement-design/" data-amp-event="skill_clicked" data-amp-skill="Figma Implement Design" data-amp-slug="figma-implement-design" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Figma Implement Design</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Translate Figma designs into production-ready code with 1:1 fidelity</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="figma use run figma plugin api scripts for canvas writes and inspections run a figma plugin script inspect this figma node batch update figma styles export assets from figma automate this in figma use figma plugin api" data-type="skill" data-cat="coding" href="/skills/figma-use/" data-amp-event="skill_clicked" data-amp-skill="Figma Use" data-amp-slug="figma-use" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Figma Use</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Run Figma Plugin API scripts for canvas writes and inspections</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="financial model qa scan a financial model for formula errors and logic defects, and check scenario outputs after input changes. cites the exact sheet and cell for every issue and never edits the model. audit this financial model check this model for errors financial model qa scan this spreadsheet for formula errors check scenario outputs" data-type="skill" data-cat="finance" href="/skills/financial-model-qa/" data-amp-event="skill_clicked" data-amp-skill="Financial Model QA" data-amp-slug="financial-model-qa" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Financial Model QA</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Scan a financial model for formula errors and logic defects, and check scenario outputs after input changes. Cites the exact sheet and cell for every issue and never edits the model.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="financial pulse analyzes transaction data from any source to produce a categorized 30-day spending breakdown and 3 specific things to look into based on 60-day trends financial pulse check my spending where's my money going run the pulse spending review what should i look into money audit" data-type="skill" data-cat="finance" href="/skills/financial-pulse/" data-amp-event="skill_clicked" data-amp-skill="Financial Pulse" data-amp-slug="financial-pulse" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Financial Pulse</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Analyzes transaction data from any source to produce a categorized 30-day spending breakdown and 3 specific things to look into based on 60-day trends</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="finishing a development branch once the work is done and tests pass, walks through the structured options for integrating a branch — merge, pr, or cleanup — instead of guessing i'm done with this branch how should i merge this wrap up this feature branch ready to integrate this work finish this branch" data-type="skill" data-cat="coding" href="/skills/finishing-a-development-branch/" data-amp-event="skill_clicked" data-amp-skill="Finishing a Development Branch" data-amp-slug="finishing-a-development-branch" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Finishing a Development Branch</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Once the work is done and tests pass, walks through the structured options for integrating a branch — merge, PR, or cleanup — instead of guessing</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: obra/superpowers on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>obra/superpowers</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="260004 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>260k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="firecrawl agent ai agent for autonomous web scraping research competitors' pricing collect all listings from this site gather data from multiple websites autonomously scrape and compile find and extract from across the web build a dataset from these sites" data-type="skill" data-cat="research" href="/skills/firecrawl-agent/" data-amp-event="skill_clicked" data-amp-skill="Firecrawl Agent" data-amp-slug="firecrawl-agent" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Firecrawl Agent</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">AI agent for autonomous web scraping</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="firecrawl browser browser-based web scraping and interaction scrape this javascript site extract from this spa scrape after scrolling get content behind interactions scrape this dynamic page browser scrape this url" data-type="skill" data-cat="research" href="/skills/firecrawl-browser/" data-amp-event="skill_clicked" data-amp-skill="Firecrawl Browser" data-amp-slug="firecrawl-browser" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Firecrawl Browser</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">Browser-based web scraping and interaction</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="firecrawl cli firecrawl cli for the terminal: pull clean, llm-ready markdown from any url by scraping pages, crawling sites, searching the web, and mapping site structure. scrape this website crawl this site extract data from this url search the web for map this website's structure get the content from this page" data-type="skill" data-cat="research" href="/skills/firecrawl-cli/" data-amp-event="skill_clicked" data-amp-skill="Firecrawl CLI" data-amp-slug="firecrawl-cli" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Firecrawl CLI</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">Firecrawl CLI for the terminal: pull clean, LLM-ready markdown from any URL by scraping pages, crawling sites, searching the web, and mapping site structure.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="form cro optimize forms for higher completion rates — field reduction, ux patterns, and friction removal optimize this form improve form conversion reduce form abandonment audit my signup form" data-type="skill" data-cat="marketing" href="/skills/form-cro/" data-amp-event="skill_clicked" data-amp-skill="Form CRO" data-amp-slug="form-cro" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Form CRO</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Optimize forms for higher completion rates — field reduction, UX patterns, and friction removal</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="free tool strategy plan and build free tools that drive organic traffic, backlinks, and qualified leads create a free tool for marketing plan a lead gen tool free tool strategy build a tool for organic traffic" data-type="skill" data-cat="marketing" href="/skills/free-tool-strategy/" data-amp-event="skill_clicked" data-amp-skill="Free Tool Strategy" data-amp-slug="free-tool-strategy" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Free Tool Strategy</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Plan and build free tools that drive organic traffic, backlinks, and qualified leads</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="frontend design the official anthropic frontend-design skill for claude: builds distinctive, production-grade uis that dodge generic ai-slop looks with bold type and motion. build a landing page design a frontend for make this ui look better style this component create a react component beautify this web page build a dashboard ui" data-type="skill" data-cat="coding" href="/skills/frontend-design/" data-amp-event="skill_clicked" data-amp-skill="Frontend Design" data-amp-slug="frontend-design" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Frontend Design</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">The official Anthropic frontend-design skill for Claude: builds distinctive, production-grade UIs that dodge generic AI-slop looks with bold type and motion.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: anthropics/skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>anthropics/skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="163700 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>164k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="github pr summarizer reads a github pull request and generates a clear summary of what changed, why, and what reviewers should focus on summarize this pr summarize pull request what does this pr do give me a pr summary explain these changes" data-type="skill" data-cat="coding" href="/skills/github-pr-summarizer/" data-amp-event="skill_clicked" data-amp-skill="GitHub PR Summarizer" data-amp-slug="github-pr-summarizer" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">GitHub PR Summarizer</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Reads a GitHub pull request and generates a clear summary of what changed, why, and what reviewers should focus on</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="gl to report turn a raw accounting/gl export into a clean reporting template (flash report) and draft variance commentary against prior actuals and budget. turn this gl into a flash report gl to report draft variance commentary reformat this gl export monthly close report" data-type="skill" data-cat="finance" href="/skills/gl-to-report/" data-amp-event="skill_clicked" data-amp-skill="GL to Report" data-amp-slug="gl-to-report" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">GL to Report</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Turn a raw accounting/GL export into a clean reporting template (flash report) and draft variance commentary against prior actuals and budget.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="gmail read, search, draft, and manage gmail email check my email draft an email to search my gmail for draft a reply to this email draft a gmail message manage my inbox" data-type="skill" data-cat="comms" href="/skills/gws-gmail/" data-amp-event="skill_clicked" data-amp-skill="Gmail" data-amp-slug="gws-gmail" data-amp-category="comms" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Gmail</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-documents);"></span><span class="card__meta-cat">Comms</span></div><p class="card__desc">Read, search, draft, and manage Gmail email</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="google calendar manage google calendar calendars and events what's on my calendar schedule an event when am i free create a calendar event show my schedule for block time for check my availability" data-type="skill" data-cat="productivity" href="/skills/gws-calendar/" data-amp-event="skill_clicked" data-amp-skill="Google Calendar" data-amp-slug="gws-calendar" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Google Calendar</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Manage Google Calendar calendars and events</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="google drive manager search, read, and create files across google drive and shared drives find a file in my drive read this drive document create a folder in drive search my drive for" data-type="skill" data-cat="productivity" href="/skills/gws-drive/" data-amp-event="skill_clicked" data-amp-skill="Google Drive Manager" data-amp-slug="gws-drive" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Google Drive Manager</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Search, read, and create files across Google Drive and shared drives</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="google sheets search, read, create, and copy google sheets files via drive find a spreadsheet read this spreadsheet create a new spreadsheet copy this google sheet" data-type="skill" data-cat="productivity" href="/skills/gws-sheets/" data-amp-event="skill_clicked" data-amp-skill="Google Sheets" data-amp-slug="gws-sheets" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Google Sheets</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Search, read, create, and copy Google Sheets files via Drive</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="google workspace workflow runs multi-step google workspace workflows across gmail, drive, docs, sheets, and calendar, turning an email thread into a scheduled meeting and a shared doc. create a workflow across google services pull data from sheets into a doc schedule meetings from this email thread set up a project folder with deadlines build a report from multiple google sources automate this across workspace" data-type="skill" data-cat="productivity" href="/skills/gws-workflow/" data-amp-event="skill_clicked" data-amp-skill="Google Workspace Workflow" data-amp-slug="gws-workflow" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Google Workspace Workflow</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Runs multi-step Google Workspace workflows across Gmail, Drive, Docs, Sheets, and Calendar, turning an email thread into a scheduled meeting and a shared doc.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="gstack yc founder stack recommendations for infra, tooling, and deployment what stack should i use recommend infrastructure for my startup what tools should i pick best deployment setup for a startup yc founder stack help me choose my tech stack what database should i use" data-type="skill" data-cat="coding" href="/skills/gstack/" data-amp-event="skill_clicked" data-amp-skill="GStack" data-amp-slug="gstack" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">GStack</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">YC founder stack recommendations for infra, tooling, and deployment</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="human tone makes claude write in a human tone: plain, direct, no fluff. strips banned ai phrases, em dashes, and marketing language so writing sounds like a person. write like a human sound natural don't sound like ai make it sound real write casually no corporate speak humanize this make this less robotic rewrite this naturally drop the fluff" data-type="skill" data-cat="comms" href="/skills/human-tone/" data-amp-event="skill_clicked" data-amp-skill="Human Tone" data-amp-slug="human-tone" data-amp-category="comms" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Human Tone</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-documents);"></span><span class="card__meta-cat">Comms</span></div><p class="card__desc">Makes Claude write in a human tone: plain, direct, no fluff. Strips banned AI phrases, em dashes, and marketing language so writing sounds like a person.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="imessage history searches and summarizes your mac's local imessage history so you can see past texts by keyword, sender, or date. read-only, on-device. macos only. summarize my texts with [contact] when did [person] mention x search my imessages for show me messages from last summer about find attachments from [contact] /imessage" data-type="skill" data-cat="productivity" href="/skills/imessage-history/" data-amp-event="skill_clicked" data-amp-skill="iMessage History" data-amp-slug="imessage-history" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">iMessage History</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Searches and summarizes your Mac&#39;s local iMessage history so you can see past texts by keyword, sender, or date. Read-only, on-device. macOS only.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="investor update drafts a founder's monthly or quarterly update to investors and lps, in the elad gil short or long format, from your tools or pasted material, for you to review and send draft my investor update investor update write my monthly update to investors lp update write my investor email monthly investor email update to our investors /investor-update" data-type="skill" data-cat="productivity" href="/skills/investor-update/" data-amp-event="skill_clicked" data-amp-skill="Investor Update" data-amp-slug="investor-update" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Investor Update</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Drafts a founder&#39;s monthly or quarterly update to investors and LPs, in the Elad Gil short or long format, from your tools or pasted material, for you to review and send</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="launch strategy builds a full product launch strategy: pre-launch buzz, launch-day coordination across channels, and post-launch momentum, product hunt to enterprise. plan a product launch launch strategy for product hunt launch plan coordinate a launch" data-type="skill" data-cat="marketing" href="/skills/launch-strategy/" data-amp-event="skill_clicked" data-amp-skill="Launch Strategy" data-amp-slug="launch-strategy" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Launch Strategy</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Builds a full product launch strategy: pre-launch buzz, launch-day coordination across channels, and post-launch momentum, Product Hunt to enterprise.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="lead research assistant research and qualify leads — find contact info, company details, and personalization angles research this lead find contacts at this company qualify this prospect lead research for outbound" data-type="skill" data-cat="research" href="/skills/lead-research-assistant/" data-amp-event="skill_clicked" data-amp-skill="Lead Research Assistant" data-amp-slug="lead-research-assistant" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Lead Research Assistant</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">Research and qualify leads — find contact info, company details, and personalization angles</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="learn quiz turns claude into a teacher that quizzes you until you actually understand the work it did, instead of rubber-stamping a diff you never read walk me through this teach me this code make sure i understand explain the changes quiz me on this /learn-quiz" data-type="skill" data-cat="coding" href="/skills/learn-quiz/" data-amp-event="skill_clicked" data-amp-skill="Learn Quiz" data-amp-slug="learn-quiz" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Learn Quiz</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Turns Claude into a teacher that quizzes you until you actually understand the work it did, instead of rubber-stamping a diff you never read</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: uristocrat/skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>uristocrat/skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="1 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>1</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="llm visibility agent reports your llm answer visibility: reads weekly amplitude or posthog ai visibility data, flags prompts where competitors win, and names posts to close gaps. check ai visibility how is my brand showing up in llms run the llm visibility report what ai prompts is my brand missing from ai search visibility brief am i showing up in ai search llm visibility audit what should i write to rank in chatgpt why is my brand not in ai answers /llm-visibility" data-type="skill" data-cat="research" href="/skills/llm-visibility-agent/" data-amp-event="skill_clicked" data-amp-skill="LLM Visibility Agent" data-amp-slug="llm-visibility-agent" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">LLM Visibility Agent</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">Reports your LLM answer visibility: reads weekly Amplitude or PostHog AI Visibility data, flags prompts where competitors win, and names posts to close gaps.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="local lead prospector assembles an outreach list of local businesses from an industry + region pair for sdrs. returns a csv with name, category, address, phone, website, rating, and review count, plus a markdown summary. listing data only, no decision-maker names. google places api (new) is the preferred path; a playwright scrape exists as an opt-in fallback because scraping google maps is against google's terms of service. find me dentists in austin build a lead list for hvac companies in denver i need contacts for law firms in chicago give me a prospecting list who should i cold-call in this market build me an outreach list pull a lead list for [industry] in [city]" data-type="skill" data-cat="marketing" href="/skills/local-lead-prospector/" data-amp-event="skill_clicked" data-amp-skill="Local Lead Prospector" data-amp-slug="local-lead-prospector" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Local Lead Prospector</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Assembles an outreach list of local businesses from an industry + region pair for SDRs. Returns a CSV with name, category, address, phone, website, rating, and review count, plus a markdown summary. Listing data only, no decision-maker names. Google Places API (New) is the preferred path; a Playwright scrape exists as an opt-in fallback because scraping Google Maps is against Google&#39;s Terms of Service.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="make interfaces feel better make interfaces feel better as an installable claude skill: jakub krehel's 16 rules for concentric radius, optical alignment, shadows, and animation polish. make this interface feel better review this ui fix the border radius improve this component's polish why does this look off audit this frontend code /make-interfaces-feel-better" data-type="skill" data-cat="coding" href="/skills/make-interfaces-feel-better/" data-amp-event="skill_clicked" data-amp-skill="Make Interfaces Feel Better" data-amp-slug="make-interfaces-feel-better" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Make Interfaces Feel Better</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Make Interfaces Feel Better as an installable Claude skill: Jakub Krehel&#39;s 16 rules for concentric radius, optical alignment, shadows, and animation polish.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: jakubkrehel/make-interfaces-feel-better on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>jakubkrehel/make-interfaces-feel-better</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="2451 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>2.5k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="marketing demand &amp; acquisition build demand generation and customer acquisition strategies across paid, organic, and owned channels build a demand gen strategy plan customer acquisition design a marketing funnel demand generation plan" data-type="skill" data-cat="marketing" href="/skills/marketing-demand-acquisition/" data-amp-event="skill_clicked" data-amp-skill="Marketing Demand &amp; Acquisition" data-amp-slug="marketing-demand-acquisition" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Marketing Demand &amp; Acquisition</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Build demand generation and customer acquisition strategies across paid, organic, and owned channels</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="marketing ideas generate creative marketing ideas, campaign concepts, and growth experiments tailored to your product give me marketing ideas brainstorm campaign concepts creative marketing strategies marketing ideas for my product" data-type="skill" data-cat="marketing" href="/skills/marketing-ideas/" data-amp-event="skill_clicked" data-amp-skill="Marketing Ideas" data-amp-slug="marketing-ideas" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Marketing Ideas</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Generate creative marketing ideas, campaign concepts, and growth experiments tailored to your product</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="marketing psychology apply behavioral psychology principles to marketing — persuasion, cognitive biases, and decision architecture apply psychology to my marketing use behavioral science in ads persuasion techniques for marketing psychology audit" data-type="skill" data-cat="marketing" href="/skills/marketing-psychology/" data-amp-event="skill_clicked" data-amp-skill="Marketing Psychology" data-amp-slug="marketing-psychology" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Marketing Psychology</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Apply behavioral psychology principles to marketing — persuasion, cognitive biases, and decision architecture</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="marketing strategy (pmm) product marketing strategy — positioning, messaging, gtm motions, and competitive differentiation develop product marketing strategy create positioning for messaging framework go-to-market plan" data-type="skill" data-cat="marketing" href="/skills/marketing-strategy-pmm/" data-amp-event="skill_clicked" data-amp-skill="Marketing Strategy (PMM)" data-amp-slug="marketing-strategy-pmm" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Marketing Strategy (PMM)</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Product marketing strategy — positioning, messaging, GTM motions, and competitive differentiation</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="meeting memo turns a meeting transcript into circulate-ready notes in your team's standard format, carries forward open action items, and flags missing owners rather than guessing. meeting memo meeting notes process this transcript write up the meeting carry forward action items" data-type="skill" data-cat="productivity" href="/skills/meeting-memo/" data-amp-event="skill_clicked" data-amp-skill="Meeting Memo" data-amp-slug="meeting-memo" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Meeting Memo</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Turns a meeting transcript into circulate-ready notes in your team&#39;s standard format, carries forward open action items, and flags missing owners rather than guessing.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="meeting notes distiller turns raw meeting notes or transcripts into clean summaries with decisions, action items, and owners distill my meeting notes summarize these meeting notes extract action items from this meeting clean up my meeting notes turn this transcript into a summary" data-type="skill" data-cat="productivity" href="/skills/meeting-notes-distiller/" data-amp-event="skill_clicked" data-amp-skill="Meeting Notes Distiller" data-amp-slug="meeting-notes-distiller" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Meeting Notes Distiller</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Turns raw meeting notes or transcripts into clean summaries with decisions, action items, and owners</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="meeting scheduler finds the best meeting time across calendars, drafts the invite, and sends it — all in one flow schedule a meeting with find time to meet with set up a call with book a meeting when can i meet with" data-type="skill" data-cat="productivity" href="/skills/meeting-scheduler/" data-amp-event="skill_clicked" data-amp-skill="Meeting Scheduler" data-amp-slug="meeting-scheduler" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Meeting Scheduler</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Finds the best meeting time across calendars, drafts the invite, and sends it — all in one flow</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="micro-saas launcher plan, build, and launch a micro-saas product from idea to first paying customers launch a micro-saas build a small saas product validate my saas idea indie hacker product plan" data-type="skill" data-cat="coding" href="/skills/micro-saas-launcher/" data-amp-event="skill_clicked" data-amp-skill="Micro-SaaS Launcher" data-amp-slug="micro-saas-launcher" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Micro-SaaS Launcher</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Plan, build, and launch a micro-SaaS product from idea to first paying customers</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="newsletter composer composes a complete newsletter issue from a brief — opening hook, main content, and sign-off in your voice help me write my newsletter draft a newsletter issue write my newsletter this week compose a newsletter i need to write my newsletter" data-type="skill" data-cat="content" href="/skills/newsletter-composer/" data-amp-event="skill_clicked" data-amp-skill="Newsletter Composer" data-amp-slug="newsletter-composer" data-amp-category="content" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Newsletter Composer</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-export);"></span><span class="card__meta-cat">Content</span></div><p class="card__desc">Composes a complete newsletter issue from a brief — opening hook, main content, and sign-off in your voice</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="office tells anti-ai quality gate that strips the visual, structural, and metadata tells from every powerpoint, word, and excel file claude generates make a deck build a pitch deck write a report create a spreadsheet build a financial model make a powerpoint" data-type="skill" data-cat="productivity" href="/skills/office-tells/" data-amp-event="skill_clicked" data-amp-skill="Office Tells" data-amp-slug="office-tells" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Office Tells</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Anti-AI quality gate that strips the visual, structural, and metadata tells from every PowerPoint, Word, and Excel file Claude generates</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="on-page seo auditor scored on-page seo audit of any url: grades title, meta, headers, keywords, internal links, images, and e-e-a-t, then returns a prioritized p0/p1/p2 fix plan. audit the on-page seo of check seo issues on this page on-page seo audit score this page's seo seo health check for" data-type="skill" data-cat="marketing" href="/skills/on-page-seo-auditor/" data-amp-event="skill_clicked" data-amp-skill="On-Page SEO Auditor" data-amp-slug="on-page-seo-auditor" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">On-Page SEO Auditor</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Scored on-page SEO audit of any URL: grades title, meta, headers, keywords, internal links, images, and E-E-A-T, then returns a prioritized P0/P1/P2 fix plan.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: aaron-he-zhu/seo-geo-claude-skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>aaron-he-zhu/seo-geo-claude-skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="105 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>105</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="onboarding cro optimize user onboarding flows for activation, engagement, and time-to-value improve onboarding flow optimize user activation reduce onboarding drop-off audit my onboarding" data-type="skill" data-cat="marketing" href="/skills/onboarding-cro/" data-amp-event="skill_clicked" data-amp-skill="Onboarding CRO" data-amp-slug="onboarding-cro" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Onboarding CRO</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Optimize user onboarding flows for activation, engagement, and time-to-value</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="page cro optimize landing pages and web pages for higher conversion rates optimize this landing page improve page conversion rate cro audit for this page increase conversions on my page" data-type="skill" data-cat="marketing" href="/skills/page-cro/" data-amp-event="skill_clicked" data-amp-skill="Page CRO" data-amp-slug="page-cro" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Page CRO</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Optimize landing pages and web pages for higher conversion rates</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="paid ads plan, create, and optimize paid advertising campaigns across google, meta, linkedin, and other platforms help with paid ads create an ad campaign optimize my google ads set up meta advertising" data-type="skill" data-cat="marketing" href="/skills/paid-ads/" data-amp-event="skill_clicked" data-amp-skill="Paid Ads" data-amp-slug="paid-ads" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Paid Ads</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Plan, create, and optimize paid advertising campaigns across Google, Meta, LinkedIn, and other platforms</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="paywall &amp; upgrade cro optimize paywalls, pricing pages, and upgrade flows for higher conversion to paid optimize my paywall improve upgrade conversion pricing page optimization increase free to paid conversion" data-type="skill" data-cat="marketing" href="/skills/paywall-upgrade-cro/" data-amp-event="skill_clicked" data-amp-skill="Paywall &amp; Upgrade CRO" data-amp-slug="paywall-upgrade-cro" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Paywall &amp; Upgrade CRO</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Optimize paywalls, pricing pages, and upgrade flows for higher conversion to paid</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="popup cro design and optimize popups, modals, and overlays for lead capture without hurting ux create a popup for lead capture optimize my exit intent popup design a non-annoying popup popup strategy for my site" data-type="skill" data-cat="marketing" href="/skills/popup-cro/" data-amp-event="skill_clicked" data-amp-skill="Popup CRO" data-amp-slug="popup-cro" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Popup CRO</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Design and optimize popups, modals, and overlays for lead capture without hurting UX</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="pre-mortem risk analysis runs a pre-mortem on a prd or launch plan — sorts risks into tigers, paper tigers, and elephants, then classifies each as launch-blocking, fast-follow, or track run a pre-mortem what could go wrong with this launch pre-mortem on this prd risk analysis for stress test this launch plan what risks am i missing" data-type="skill" data-cat="productivity" href="/skills/pm-pre-mortem/" data-amp-event="skill_clicked" data-amp-skill="Pre-Mortem Risk Analysis" data-amp-slug="pm-pre-mortem" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Pre-Mortem Risk Analysis</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Runs a pre-mortem on a PRD or launch plan — sorts risks into Tigers, Paper Tigers, and Elephants, then classifies each as launch-blocking, fast-follow, or track</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: phuryn/pm-skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>phuryn/pm-skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="24329 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>24k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="pricing strategy design pricing models, plans, and strategies that maximize revenue and align with value delivery help me price my product pricing strategy for design pricing tiers optimize my pricing" data-type="skill" data-cat="marketing" href="/skills/pricing-strategy/" data-amp-event="skill_clicked" data-amp-skill="Pricing Strategy" data-amp-slug="pricing-strategy" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Pricing Strategy</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Design pricing models, plans, and strategies that maximize revenue and align with value delivery</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="prioritization frameworks reference guide to 9 prioritization frameworks — rice, ice, opportunity score, kano, moscow, weighted decision matrix, and more — with formulas and when-to-use guidance which prioritization framework should i use rice vs ice how do i prioritize this backlog prioritization framework opportunity score kano model" data-type="skill" data-cat="productivity" href="/skills/pm-prioritization-frameworks/" data-amp-event="skill_clicked" data-amp-skill="Prioritization Frameworks" data-amp-slug="pm-prioritization-frameworks" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Prioritization Frameworks</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Reference guide to 9 prioritization frameworks — RICE, ICE, Opportunity Score, Kano, MoSCoW, Weighted Decision Matrix, and more — with formulas and when-to-use guidance</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: phuryn/pm-skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>phuryn/pm-skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="24329 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>24k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="product manager toolkit a product manager toolkit for prds, discovery interviews, roadmaps, metrics, specs, and prioritization: frameworks for the full product lifecycle. write a prd create a product roadmap help with product prioritization product management framework" data-type="skill" data-cat="productivity" href="/skills/product-manager-toolkit/" data-amp-event="skill_clicked" data-amp-skill="Product Manager Toolkit" data-amp-slug="product-manager-toolkit" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Product Manager Toolkit</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">A product manager toolkit for PRDs, discovery interviews, roadmaps, metrics, specs, and prioritization: frameworks for the full product lifecycle.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="product strategist define product strategy, vision, and roadmap direction based on market analysis and user insights define product strategy help with product vision strategic roadmap planning product direction advice" data-type="skill" data-cat="productivity" href="/skills/product-strategist/" data-amp-event="skill_clicked" data-amp-skill="Product Strategist" data-amp-slug="product-strategist" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Product Strategist</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Define product strategy, vision, and roadmap direction based on market analysis and user insights</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="programmatic seo build and scale programmatic seo pages that rank — templates, data sources, and automation build programmatic seo pages scale content with templates programmatic seo strategy automate seo page generation" data-type="skill" data-cat="marketing" href="/skills/programmatic-seo/" data-amp-event="skill_clicked" data-amp-skill="Programmatic SEO" data-amp-slug="programmatic-seo" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Programmatic SEO</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Build and scale programmatic SEO pages that rank — templates, data sources, and automation</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="receiving code review processes code-review feedback with technical rigor — verify each point before implementing, push back on what's wrong, no performative agreement i got code review feedback help me respond to this review work through these review comments address this pr feedback" data-type="skill" data-cat="coding" href="/skills/receiving-code-review/" data-amp-event="skill_clicked" data-amp-skill="Receiving Code Review" data-amp-slug="receiving-code-review" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Receiving Code Review</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Processes code-review feedback with technical rigor — verify each point before implementing, push back on what&#39;s wrong, no performative agreement</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: obra/superpowers on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>obra/superpowers</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="260004 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>260k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="referral program design and implement referral programs that drive word-of-mouth growth design a referral program create a referral system improve word of mouth growth referral incentive strategy" data-type="skill" data-cat="marketing" href="/skills/referral-program/" data-amp-event="skill_clicked" data-amp-skill="Referral Program" data-amp-slug="referral-program" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Referral Program</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Design and implement referral programs that drive word-of-mouth growth</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="replatformer migrate websites off hosted providers (shopify, webflow, wix, squarespace, wordpress) into static, source-controlled code /replatform-site replatform this site migrate my website migrate from shopify migrate from webflow migrate from wix convert website to static site move site to vercel" data-type="skill" data-cat="coding" href="/skills/replatformer/" data-amp-event="skill_clicked" data-amp-skill="Replatformer" data-amp-slug="replatformer" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Replatformer</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Migrate websites off hosted providers (Shopify, Webflow, Wix, Squarespace, WordPress) into static, source-controlled code</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: warpdotdev-demos/replatformer on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>warpdotdev-demos/replatformer</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="6 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>6</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="research brief turns any topic into a structured research brief: background, key players, what's contested, and a short reading list. get up to speed fast before a meeting. give me a research brief on brief me on i need to understand help me get up to speed on what do i need to know about" data-type="skill" data-cat="research" href="/skills/research-brief/" data-amp-event="skill_clicked" data-amp-skill="Research Brief" data-amp-slug="research-brief" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Research Brief</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">Turns any topic into a structured research brief: background, key players, what&#39;s contested, and a short reading list. Get up to speed fast before a meeting.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="schema markup adds schema.org structured data so your pages qualify for rich results in google: product listings, review stars, and breadcrumb snippets via valid json-ld. add schema markup implement structured data create json-ld for get rich snippets in search" data-type="skill" data-cat="coding" href="/skills/schema-markup/" data-amp-event="skill_clicked" data-amp-skill="Schema Markup" data-amp-slug="schema-markup" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Schema Markup</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Adds schema.org structured data so your pages qualify for rich results in Google: product listings, review stars, and breadcrumb snippets via valid JSON-LD.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="seo audit runs a full seo audit of any site: technical health, on-page tags, internal links, and competitive gaps, with every fix ranked by impact and effort. run an seo audit audit my site for seo check my seo health find seo issues on my site" data-type="skill" data-cat="marketing" href="/skills/seo-audit/" data-amp-event="skill_clicked" data-amp-skill="SEO Audit" data-amp-slug="seo-audit" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">SEO Audit</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Runs a full SEO audit of any site: technical health, on-page tags, internal links, and competitive gaps, with every fix ranked by impact and effort.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="seo fundamentals core seo principles, keyword research, on-page optimization, and content strategy for organic growth help with seo strategy keyword research for optimize content for search seo fundamentals for my site" data-type="skill" data-cat="marketing" href="/skills/seo-fundamentals/" data-amp-event="skill_clicked" data-amp-skill="SEO Fundamentals" data-amp-slug="seo-fundamentals" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">SEO Fundamentals</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Core SEO principles, keyword research, on-page optimization, and content strategy for organic growth</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="seo optimizer optimize existing content and pages for better search rankings — titles, structure, keywords, and links optimize this page for seo improve rankings for seo optimize this content make this page rank better" data-type="skill" data-cat="marketing" href="/skills/seo-optimizer/" data-amp-event="skill_clicked" data-amp-skill="SEO Optimizer" data-amp-slug="seo-optimizer" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">SEO Optimizer</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Optimize existing content and pages for better search rankings — titles, structure, keywords, and links</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="signup flow cro optimize signup and registration flows for maximum completion rates optimize my signup flow improve registration conversion reduce signup friction audit my signup process" data-type="skill" data-cat="marketing" href="/skills/signup-flow-cro/" data-amp-event="skill_clicked" data-amp-skill="Signup Flow CRO" data-amp-slug="signup-flow-cro" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Signup Flow CRO</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Optimize signup and registration flows for maximum completion rates</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="social content create platform-native social media content — posts, threads, carousels, and short-form video scripts write social media posts create a twitter thread linkedin content for social media content calendar" data-type="skill" data-cat="content" href="/skills/social-content/" data-amp-event="skill_clicked" data-amp-skill="Social Content" data-amp-slug="social-content" data-amp-category="content" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Social Content</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-export);"></span><span class="card__meta-cat">Content</span></div><p class="card__desc">Create platform-native social media content — posts, threads, carousels, and short-form video scripts</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="statement reconciliation check a vendor statement against the ap log to confirm every invoice is recorded, and draft a request for any that are missing. reconcile this statement check this vendor statement statement reconciliation match this statement to the ap log are we missing any invoices" data-type="skill" data-cat="finance" href="/skills/statement-reconciliation/" data-amp-event="skill_clicked" data-amp-skill="Statement Reconciliation" data-amp-slug="statement-reconciliation" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Statement Reconciliation</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Check a vendor statement against the AP log to confirm every invoice is recorded, and draft a request for any that are missing.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="unemployment guide walks you through filing for unemployment in your us state — agency info, application steps, required documents, weekly certification rules, and the pitfalls that get claims denied i just got laid off apply for unemployment file for unemployment i lost my job how do i file unemployment claim how do i get unemployment benefits /unemployment" data-type="skill" data-cat="finance" href="/skills/unemployment-guide/" data-amp-event="skill_clicked" data-amp-skill="Unemployment Guide" data-amp-slug="unemployment-guide" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Unemployment Guide</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><p class="card__desc">Walks you through filing for unemployment in your US state — agency info, application steps, required documents, weekly certification rules, and the pitfalls that get claims denied</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="user stories breaks a feature into invest user stories with the 3 c's — card, conversation, confirmation — and clear acceptance criteria for each write user stories for break this feature into stories create a backlog for user stories acceptance criteria for split this feature" data-type="skill" data-cat="productivity" href="/skills/pm-user-stories/" data-amp-event="skill_clicked" data-amp-skill="User Stories" data-amp-slug="pm-user-stories" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">User Stories</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">Breaks a feature into INVEST user stories with the 3 C&#39;s — Card, Conversation, Confirmation — and clear acceptance criteria for each</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: phuryn/pm-skills on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>phuryn/pm-skills</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="24329 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>24k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="using git worktrees sets up an isolated workspace for feature work via git worktrees (or native equivalents) so new work never collides with your current checkout set up a worktree for this i need an isolated workspace use git worktrees work on this without touching main" data-type="skill" data-cat="coding" href="/skills/using-git-worktrees/" data-amp-event="skill_clicked" data-amp-skill="Using Git Worktrees" data-amp-slug="using-git-worktrees" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Using Git Worktrees</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Sets up an isolated workspace for feature work via git worktrees (or native equivalents) so new work never collides with your current checkout</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: obra/superpowers on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>obra/superpowers</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="260004 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>260k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="vendor contract extraction extract key terms, risk provisions, cost obligations, renewal/termination clauses, and authorized user counts across a vendor portfolio into one risk-and-cost register. extract vendor contracts build a vendor register vendor contract extraction renewal and cost inventory sweep vendor portfolio" data-type="skill" data-cat="finance" href="/skills/vendor-contract-extraction/" data-amp-event="skill_clicked" data-amp-skill="Vendor Contract Extraction" data-amp-slug="vendor-contract-extraction" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Vendor Contract Extraction</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><div class="trust-badges" aria-label="Trust signals"><span class="trust-badge trust-badge--verified" title="First-party, reviewed by SkillsAndAgents.co Operations Engineers. Reserved for skills we author and stand behind.">Verified</span></div><p class="card__desc">Extract key terms, risk provisions, cost obligations, renewal/termination clauses, and authorized user counts across a vendor portfolio into one risk-and-cost register.</p><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="verification before completion bars you from claiming work is done, fixed, or passing until you've run the check and confirmed the output — evidence before assertions, always is this actually done verify before i commit confirm this is passing check the work is really fixed prove it works" data-type="skill" data-cat="coding" href="/skills/verification-before-completion/" data-amp-event="skill_clicked" data-amp-skill="Verification Before Completion" data-amp-slug="verification-before-completion" data-amp-category="coding" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Verification Before Completion</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-build);"></span><span class="card__meta-cat">Engineering</span></div><p class="card__desc">Bars you from claiming work is done, fixed, or passing until you&#39;ve run the check and confirmed the output — evidence before assertions, always</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: obra/superpowers on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>obra/superpowers</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="260004 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>260k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="viral generator builder build viral interactive tools and generators that drive shares, backlinks, and traffic build a viral generator create an interactive quiz design a shareable tool viral marketing tool" data-type="skill" data-cat="marketing" href="/skills/viral-generator-builder/" data-amp-event="skill_clicked" data-amp-skill="Viral Generator Builder" data-amp-slug="viral-generator-builder" data-amp-category="marketing" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Viral Generator Builder</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-design);"></span><span class="card__meta-cat">Marketing</span></div><p class="card__desc">Build viral interactive tools and generators that drive shares, backlinks, and traffic</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="x/twitter scraper extract and analyze twitter/x data — profiles, tweets, trends, and engagement patterns scrape twitter data analyze x/twitter account extract tweets from twitter audience research" data-type="skill" data-cat="research" href="/skills/x-twitter-scraper/" data-amp-event="skill_clicked" data-amp-skill="X/Twitter Scraper" data-amp-slug="x-twitter-scraper" data-amp-category="research" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">X/Twitter Scraper</h3><span class="badge badge--skill">Skill</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-knowledge);"></span><span class="card__meta-cat">Research</span></div><p class="card__desc">Extract and analyze Twitter/X data — profiles, tweets, trends, and engagement patterns</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: davila7/claude-code-templates on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>davila7/claude-code-templates</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="29860 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>30k</span></span><span class="btn btn--full btn--muted">Get this skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="ceo to-do — daily the automated version of ceo to-do. on a daily run it sweeps your gmail and slack read-only for new commitments, captures them into your canonical single-source-of-truth doc, runs the state transitions, and surfaces the day's p0/p1 shortlist. run my daily to-do sweep sweep my inbox and slack for commitments daily ceo to-do what did i commit to today" data-type="agent" data-cat="productivity" href="/agents/ceo-todo-daily/" data-amp-event="agent_clicked" data-amp-agent="CEO To-Do — Daily" data-amp-slug="ceo-todo-daily" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">CEO To-Do — Daily</h3><span class="badge badge--agent">Agent</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">The automated version of CEO To-Do. On a daily run it sweeps your Gmail and Slack read-only for new commitments, captures them into your canonical single-source-of-truth doc, runs the state transitions, and surfaces the day&#39;s P0/P1 shortlist.</p><span class="btn btn--full btn--muted">Get this agent <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="financial pulse — grasshopper connects to your grasshopper bank account via its mcp server, pulls transactions, and runs the financial pulse — categorized spending and 3 things to look into financial pulse check my grasshopper spending check my grasshopper account how's my business spending run the pulse" data-type="agent" data-cat="finance" href="/agents/financial-pulse-grasshopper/" data-amp-event="agent_clicked" data-amp-agent="Financial Pulse — Grasshopper" data-amp-slug="financial-pulse-grasshopper" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Financial Pulse — Grasshopper</h3><span class="badge badge--agent">Agent</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><p class="card__desc">Connects to your Grasshopper Bank account via its MCP server, pulls transactions, and runs the Financial Pulse — categorized spending and 3 things to look into</p><span class="btn btn--full btn--muted">Get this agent <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="financial pulse — mercury connects to your mercury bank account over its official mcp server to pull transactions and run a financial pulse: spending, burn rate, and 3 things to check. financial pulse check my mercury spending check my mercury account how's my burn rate run the pulse" data-type="agent" data-cat="finance" href="/agents/financial-pulse-mercury/" data-amp-event="agent_clicked" data-amp-agent="Financial Pulse — Mercury" data-amp-slug="financial-pulse-mercury" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Financial Pulse — Mercury</h3><span class="badge badge--agent">Agent</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><p class="card__desc">Connects to your Mercury Bank account over its official MCP server to pull transactions and run a Financial Pulse: spending, burn rate, and 3 things to check.</p><span class="btn btn--full btn--muted">Get this agent <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="financial pulse — ramp connects to your ramp corporate card account via its official mcp server, pulls card transactions and expense data, and runs the financial pulse — spending by department, cardholder anomalies, and 3 things to look into financial pulse check my ramp spending check my ramp account how's our corporate spend expense review run the pulse" data-type="agent" data-cat="finance" href="/agents/financial-pulse-ramp/" data-amp-event="agent_clicked" data-amp-agent="Financial Pulse — Ramp" data-amp-slug="financial-pulse-ramp" data-amp-category="finance" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Financial Pulse — Ramp</h3><span class="badge badge--agent">Agent</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-operations);"></span><span class="card__meta-cat">Finance</span></div><p class="card__desc">Connects to your Ramp corporate card account via its official MCP server, pulls card transactions and expense data, and runs the Financial Pulse — spending by department, cardholder anomalies, and 3 things to look into</p><span class="btn btn--full btn--muted">Get this agent <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="ghost seo agent pulls non-indexed urls from google search console, diagnoses each one, applies metadata fixes to ghost posts, and submits re-indexing requests — fully autonomous run seo audit for my ghost site audit my ghost site seo fix my ghost indexing check why my posts aren't indexed run the ghost seo skill ghost seo audit" data-type="agent" data-cat="content" href="/agents/ghost-seo-agent/" data-amp-event="agent_clicked" data-amp-agent="Ghost SEO Agent" data-amp-slug="ghost-seo-agent" data-amp-category="content" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">Ghost SEO Agent</h3><span class="badge badge--agent">Agent</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-export);"></span><span class="card__meta-cat">Content</span></div><p class="card__desc">Pulls non-indexed URLs from Google Search Console, diagnoses each one, applies metadata fixes to Ghost posts, and submits re-indexing requests — fully autonomous</p><span class="btn btn--full btn--muted">Get this agent <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a><a class="card glass" data-skill-row data-search="my brain is full: crew a conversational second-brain crew for an obsidian vault: 8 agents (capture, triage, search, knowledge-graph, maintenance, transcription, email/calendar) plus around 14 multi-step skills, all driven through chat. third-party, mit, by gnekt. initialize my vault save this: file all my inbox notes what did we decide about pricing? find connections for my latest note run a weekly review process my meeting recording /onboarding /vault-audit /weekly-agenda" data-type="agent" data-cat="productivity" href="/agents/my-brain-is-full-crew/" data-amp-event="agent_clicked" data-amp-agent="My Brain Is Full: Crew" data-amp-slug="my-brain-is-full-crew" data-amp-category="productivity" data-amp-location="home_grid"><div class="card__head"><h3 class="card__title">My Brain Is Full: Crew</h3><span class="badge badge--agent">Agent</span></div><div class="card__meta"><span class="card__cat-dot" style="background: var(--tint-presentation);"></span><span class="card__meta-cat">Productivity</span></div><p class="card__desc">A conversational second-brain crew for an Obsidian vault: 8 agents (capture, triage, search, knowledge-graph, maintenance, transcription, email/calendar) plus around 14 multi-step skills, all driven through chat. Third-party, MIT, by gnekt.</p><span class="thirdparty-pill thirdparty-pill--static" aria-label="Third-party source: gnekt/My-Brain-Is-Full-Crew on GitHub" data-astro-cid-7o2puqdx><span class="thirdparty-pill__tag" data-astro-cid-7o2puqdx>3rd-party</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__repo" data-astro-cid-7o2puqdx>gnekt/My-Brain-Is-Full-Crew</span><span class="thirdparty-pill__sep" data-astro-cid-7o2puqdx>·</span><span class="thirdparty-pill__stars" aria-label="3241 stars on GitHub" data-astro-cid-7o2puqdx><svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" data-astro-cid-7o2puqdx><path d="M12 .587l3.668 7.431L24 9.75l-6 5.847 1.416 8.265L12 19.771l-7.416 4.091L6 15.597 0 9.75l8.332-1.732z" data-astro-cid-7o2puqdx></path></svg>3.2k</span></span><span class="btn btn--full btn--muted">Get this agent <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></span></a></div><!-- Search empty-state (search contract parity with index.astro) --><p id="skills-search-empty" class="catalog-empty" hidden>No skills match &ldquo;<span id="skills-search-empty-query"></span>&rdquo;</p><!-- Filter empty-state (no matches for segment/category) --><div id="glass-empty" class="catalog-empty" hidden>No matches — try a different search or category.</div><!-- Load more --><div class="loadmore" id="glass-loadmore" hidden><button class="btn" id="glass-loadmore-btn" type="button">Load more</button></div><div class="endcap" id="glass-endcap" hidden>You've reached the end of the catalog.</div><!-- Start here band --><section class="start" id="faq"><div class="start__intro"><div class="start__eyebrow">Start here</div><h2 class="start__title">New to Skills? Start here.</h2><p class="start__lede">A Skill is a plain-text instruction file you hand to Claude or another AI. It teaches the AI to do one job really well — with no software to install.</p></div><div class="start__steps"><div class="step glass"><div class="step__n">1</div><div class="step__body"><div class="step__t">Pick a Skill</div><div class="step__d">Browse the library above and open the one that fits your task.</div></div></div><div class="step glass"><div class="step__n">2</div><div class="step__body"><div class="step__t">Follow its setup steps</div><div class="step__d">Each page has plain-English steps. Most take about five minutes, and you only do them once.</div></div></div><div class="step glass"><div class="step__n">3</div><div class="step__body"><div class="step__t">Say a trigger phrase</div><div class="step__d">Type one of the listed phrases in your AI chat, and the Skill takes over.</div></div></div></div><div class="faqs__list start__faqs"><div class="faq glass"><button class="faq__q" type="button" data-faq-toggle aria-expanded="false" aria-controls="glass-faq-a-0"><span>What is the difference between a Skill and an Agent?</span><span class="faq__chev"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"></path></svg></span></button><div class="faq__a" id="glass-faq-a-0" aria-hidden="true"><p>A Skill is a single capability you add to your AI. An Agent is a worker that runs a whole job end to end and usually connects to outside tools, so it needs a little more setup. Skills are the simplest place to start.</p></div></div><div class="faq glass"><button class="faq__q" type="button" data-faq-toggle aria-expanded="false" aria-controls="glass-faq-a-1"><span>Do I need to be technical to use a Skill?</span><span class="faq__chev"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"></path></svg></span></button><div class="faq__a" id="glass-faq-a-1" aria-hidden="true"><p>No. Most Skills just ask you to copy a block of text into Claude and start chatting. Every skill page lists the exact steps in plain language — if a skill needs more, the page says so up front.</p></div></div><div class="faq glass"><button class="faq__q" type="button" data-faq-toggle aria-expanded="false" aria-controls="glass-faq-a-2"><span>How do I add a Skill to Claude?</span><span class="faq__chev"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"></path></svg></span></button><div class="faq__a" id="glass-faq-a-2" aria-hidden="true"><p>Open the skill&#39;s page and use its setup steps. The usual path: sign in at claude.ai, create a Project, and paste the skill&#39;s instructions into the Project. After that, the Skill is ready every time you open that Project.</p></div></div><div class="faq glass"><button class="faq__q" type="button" data-faq-toggle aria-expanded="false" aria-controls="glass-faq-a-3"><span>Is my data safe?</span><span class="faq__chev"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"></path></svg></span></button><div class="faq__a" id="glass-faq-a-3" aria-hidden="true"><p>Skills run inside your own AI session — your data stays between you and your AI, and Skills &amp; Agents never sees it. The finance skills are designed to be read-only and to keep full account and card numbers hidden.</p></div></div><div class="faq glass"><button class="faq__q" type="button" data-faq-toggle aria-expanded="false" aria-controls="glass-faq-a-4"><span>What does it cost?</span><span class="faq__chev"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"></path></svg></span></button><div class="faq__a" id="glass-faq-a-4" aria-hidden="true"><p>The Skills and Agents in this library are free to use. You only need access to an AI assistant such as Claude, which has a free tier.</p></div></div><div class="faq glass"><button class="faq__q" type="button" data-faq-toggle aria-expanded="false" aria-controls="glass-faq-a-5"><span>Which AI assistants do Skills work with?</span><span class="faq__chev"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 9l6 6 6-6"></path></svg></span></button><div class="faq__a" id="glass-faq-a-5" aria-hidden="true"><p>Skills are plain text, so they work with Claude, Cursor, ChatGPT, GitHub Copilot, and Codex. Every skill page now has tabbed setup steps for each of these platforms, so you can install the skill on whichever AI you use. Agents that connect to outside tools (MCPs) work best with Claude.</p></div></div></div></section><!-- Articles strip --><section class="articles"><div class="articles__head"><div><h2 class="articles__title">Latest from Skills &amp; Agents</h2></div><a class="articles__all" href="/news/">View all <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></a></div><div class="articles__grid"><a class="article glass" href="/news/build-your-own-claude-skill/"><h3 class="article__title">Build your own Claude skill: a finance leader&#39;s guide</h3><div class="article__meta">Jul 23, 2026</div><div class="article__more">Read more <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></div></a><a class="article glass" href="/news/seo-agent-case-study/"><h3 class="article__title">The Ghost SEO Skill That Grew Search Traffic 14x</h3><div class="article__meta">Jul 8, 2026</div><div class="article__more">Read more <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></div></a><a class="article glass" href="/news/investor-update-emails/"><h3 class="article__title">Draft your investor update from Slack and email</h3><div class="article__meta">Jul 6, 2026</div><div class="article__more">Read more <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></div></a></div></section></main></div><!-- ===================== FOOTER ===================== --><footer class="foot"><div class="foot__top"><div class="foot__brand"><div class="foot__brandline"><span class="foot__word">Skills &amp; Agents</span></div><p class="foot__tag">Capabilities for Claude, ChatGPT, and your IDE to save you time - packaged and ready to use</p></div><div class="foot__studios-block"><nav class="foot__nav" aria-label="Footer"><a href="/contribute/">Contribute</a><a href="/hire/">Hire an Agent</a><a href="/about/">About</a><a href="/help/">Help</a><a href="/contact/">Contact</a></nav><div class="foot__meta">skillsandagents.co</div></div></div><div class="foot__bar"><div class="foot__copy">&copy; 2026 Anlo Ventures LLC DBA Skills and Agents Company</div><nav class="foot__links" aria-label="Legal"><a href="/terms/">Terms</a><a href="/privacy/">Privacy</a></nav></div></footer><!-- ===================== MOBILE DRAWER ===================== --><div id="glass-drawer-scrim" class="scrim"></div><aside id="glass-drawer" class="drawer" aria-hidden="true" inert><div class="drawer__head"><h2 class="drawer__title">Categories</h2><button id="glass-drawer-close" class="drawer__close" aria-label="Close" type="button"><svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" aria-hidden="true"><path d="M6 6l12 12M18 6L6 18"></path></svg></button></div><div class="cat-list"><button class="cat-row cat-row--active" data-cat-filter="" type="button"><span class="cat-row__dot" style="background: var(--ink-deep);"></span><span class="cat-row__name">All</span></button><button class="cat-row" data-cat-filter="comms" type="button"><span class="cat-row__dot" style="background: var(--tint-documents);"></span><span class="cat-row__name">Comms</span><span class="cat-row__count">3</span></button><button class="cat-row" data-cat-filter="content" type="button"><span class="cat-row__dot" style="background: var(--tint-export);"></span><span class="cat-row__name">Content</span><span class="cat-row__count">7</span></button><button class="cat-row" data-cat-filter="coding" type="button"><span class="cat-row__dot" style="background: var(--tint-build);"></span><span class="cat-row__name">Engineering</span><span class="cat-row__count">25</span></button><button class="cat-row" data-cat-filter="finance" type="button"><span class="cat-row__dot" style="background: var(--tint-operations);"></span><span class="cat-row__name">Finance</span><span class="cat-row__count">20</span></button><button class="cat-row" data-cat-filter="marketing" type="button"><span class="cat-row__dot" style="background: var(--tint-design);"></span><span class="cat-row__name">Marketing</span><span class="cat-row__count">31</span></button><button class="cat-row" data-cat-filter="productivity" type="button"><span class="cat-row__dot" style="background: var(--tint-presentation);"></span><span class="cat-row__name">Productivity</span><span class="cat-row__count">23</span></button><button class="cat-row" data-cat-filter="research" type="button"><span class="cat-row__dot" style="background: var(--tint-knowledge);"></span><span class="cat-row__name">Research</span><span class="cat-row__count">10</span></button></div><div class="drawer__foot"><p class="drawer__upsell">Need help picking the right skill?</p><a class="btn btn--primary btn--full" href="https://app.skillsandagents.co/onboarding?utm_source=skillsandagents.co&amp;utm_medium=sidebar_cta&amp;utm_content=drawer" data-amp-event="nav_link_clicked" data-amp-cta="skill_matcher" data-amp-target="onboarding" data-amp-location="drawer">Find my skill <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></a></div></aside></div><script type="module" src="/_astro/GlassCatalog.astro_astro_type_script_index_0_lang.Dyl5my-x.js"></script><!-- Cloudflare Pages Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "92fa86b384554d04b581f831f6eb6014"}'></script><!-- Cloudflare Pages Analytics --></body></html>