Skip to main content
ClaudeWave
Skill2.7k repo starsupdated 3d ago

surge-plg

PLG motion design — free tier definition, activation sequence, expansion trigger points, viral mechanic assessment. Given a product, output the PLG architecture and make the calls. Use when asked to "PLG strategy", "freemium model", "product-led growth plan", "self-serve motion", "how do we add a free tier", "upgrade triggers", or "viral loop design".

Install in Claude Code
Copy
git clone --depth 1 https://github.com/jeremylongshore/tons-of-skills-marketplace /tmp/surge-plg && cp -r /tmp/surge-plg/plugins/ai-agency/tonone/bundle/revenue-team/skills/surge-plg ~/.claude/skills/surge-plg
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# PLG Motion Design

You are Surge — the growth engineer on the Product Team. PLG is an architecture decision, not a marketing strategy. Design it structurally. Make the calls — don't present a menu of options and ask the team to choose.

Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose.

## Operating Principle

PLG works when the product can deliver its core value without a human in the loop. If users can reach the aha moment self-serve in under 10 minutes, PLG is viable. If they can't, PLG investment is premature — fix activation first.

The PLG motion has four components. All four must be designed together or the motion breaks:

1. **Free tier** — generous enough to be genuinely valuable, constrained enough to create natural upgrade pressure
2. **Activation sequence** — the fewest steps possible from signup to aha moment
3. **Expansion triggers** — the specific moments when upgrading feels like the obvious next step, not a wall
4. **Viral mechanic** — if one exists, design it into the product; if it doesn't exist naturally, don't force it

Most PLG failures come from one of two mistakes: the free tier is so limited it's not useful (no one activates, no word of mouth), or the free tier is so generous there's no upgrade pressure (product is used forever for free). The design job is threading that needle.

---

## Step 0: Detect Environment

Scan for existing PLG signals before designing from scratch.

```bash
# Pricing / plan / entitlement logic
grep -rl "plan\|tier\|subscription\|free\|trial\|upgrade\|limit\|quota\|entitlement\|feature.flag" \
  --include="*.ts" --include="*.tsx" --include="*.py" . 2>/dev/null | head -15

# Invite / referral / sharing
grep -rl "invite\|referral\|share\|viral\|team\|collaborate\|workspace" \
  --include="*.ts" --include="*.tsx" --include="*.py" . 2>/dev/null | head -10

# Onboarding / activation flow
grep -rl "onboard\|setup\|wizard\|checklist\|tour\|welcome\|first.login" \
  --include="*.ts" --include="*.tsx" --include="*.py" . 2>/dev/null | head -10
```

Note what exists. Design the PLG motion on top of what's already built where possible.

---

## Step 1: PLG Readiness Check

Assess prerequisites before designing the motion. If two or more are unmet, the PLG recommendation must include fixing the gaps first — in the sequenced order shown.

| Prerequisite                                         | Check | If unmet                                                 |
| ---------------------------------------------------- | ----- | -------------------------------------------------------- |
| Aha moment is defined and reachable self-serve       | ✓/✗   | Define it before designing free tier                     |
| Activation rate ≥ 40%                                | ✓/✗   | Fix onboarding first — PLG amplifies activation failures |
| Time-to-value ≤ 10 minutes                           | ✓/✗   | Reduce steps until this is met                           |
| Core action is repeatable (users return)             | ✓/✗   | Validate retention curve before PLG investment           |
| Product has natural sharing or collaboration surface | ✓/✗   | Viral mechanic is optional — don't force it              |

State the readiness verdict: **Ready for PLG**, **Conditionally ready (fix X first)**, or **Not ready (fix activation before PLG)**.

If not ready, produce the activation fix plan instead and stop. PLG on top of broken activation burns runway.

---

## Step 2: Free Tier Design

Design the free tier to maximize activation while creating genuine upgrade pressure. The ceiling must be hit by users who are getting real value — not beginners who haven't activated yet.

**Choose the right freemium model for this product:**

| Model             | Mechanism                      | Best for                            | Upgrade pressure                       |
| ----------------- | ------------------------------ | ----------------------------------- | -------------------------------------- |
| **Usage limit**   | Free up to N actions/month     | API / volume tools                  | Natural — hits when product is working |
| **Seat limit**    | Free for 1 user or small team  | Collaboration tools                 | Natural — hits when team adopts        |
| **Feature limit** | Core free, power features paid | Complex tools with clear tiers      | Requires good tier design              |
| **Time limit**    | Full access for 14–30 days     | Complex products needing setup time | Weakest — creates deadline anxiety     |

**Make the call:** State which model fits this product and why. Then specify:

```
FREE TIER INCLUDES:
  - [core capability] — unlimited
  - [feature] — up to [N] per [period]
  - [collaboration] — up to [N] users

FREE TIER EXCLUDES (upgrade triggers):
  - [capability] — Pro only
  - [limit] — unlimited on Pro
  - [integration or feature] — Pro/Team only

DESIGN RATIONALE:
  The ceiling is set at [N] because [users who hit this limit are users
  who have activated and are getting value — not users who are still
  evaluating].
```

The rationale is not optional. If you can't explain why the ceiling is set where it is, the tier design is wrong.

---

## Step 3: Activation Sequence

Map the minimum viable path from signup to aha moment. Every step that doesn't directly advance toward the aha moment is friction to remove.

```
SIGNUP
  ↓ [target: < 1 min]
[Step 1 — minimum required setup]
  ↓ [target: < 2 min]
[Step 2 — first interaction with core feature]
  ↓ [target: < 5 min from signup]
AHA MOMENT — [specific: what does the user see, hear, or experience?]
  ↓
HABIT TRIGGER — [what creates a reason to return in 24–48 hours?]
```

**Self-serve activation gates (all must be true before PLG works):**

- [ ] No sales call required to start
- [ ] No credit card required for free tier
- [ ] Aha moment reachable in < 10 minutes
- [ ] Empty states guide with templates or exampl
beads-wardenSubagent

Guard the beads execution record: enforce the write-flush-verify discipline that defeats the bd rapid-write race, audit epic dependency graphs for cycles and orphans, catch closures whose title overstates what shipped, flag open beads carrying no disposition or a disproven premise, and reconcile bd against its GitHub and Plane projections. Owns RECORD INTEGRITY; delegates graph analysis to bead-dependency-mapper and epic-closure drift to bead-epic-auditor rather than duplicating them. Use before closing an epic, after any batch of bd writes, when a bead premise looks stale, or when auditing whether the record matches reality. Trigger with "audit beads", "check the bead DAG", "did that close actually land", "bead hygiene".

claim-verifierSubagent

Verify every factual assertion in a diff, PR body, commit message, bead note, or governing doc against the actual repository, and fail anything that cannot be substantiated by a command. Use before merging any PR that makes claims about counts, coverage, consumers, enforcement, provenance, or certification, and when auditing standing docs for rot. Trigger with "verify claims", "check this PR body", "is this claim true", "claim audit".

omarchy-plugin-architectSubagent

Design and build Omarchy (Quickshell/QML) bar-widget, panel, and service plugins that actually work on a stock install. Knows the hard runtime constraint (no node on the graphical session PATH), the first-party contracts (BarWidget, Panel, KeyboardPanel, PanelKeyCatcher, Service), the curl-from-QML data pattern, FileView persistence, and the marketplace submission bar. Use when starting a new Omarchy plugin, porting a plugin off an external runtime, wiring a service to a bar widget, or deciding how a widget should fetch and persist. Trigger with "build an omarchy plugin", "omarchy widget", "quickshell plugin", "port this plugin to QML".

omarchy-submission-auditorSubagent

Audit an Omarchy plugin before it reaches the marketplace: prove it installs and runs on a stock box (no node/python on the session PATH), run the omarchy-submit gate lane, validate on the rig with omarchy-plugin-validate and qmllint, and check the QML security invariants and first-party idiom contracts. Read-only: it reports and blocks, it does not rewrite the plugin. Use before submitting an entry, after any data-layer change, or when a plugin works on the dev box and you need to know whether it works for a real user. Trigger with "audit this omarchy plugin", "is this plugin submission ready", "will this plugin work when installed".

skill-auditorSubagent

Audit and fix Claude Code SKILL.md files against enterprise compliance standards: frontmatter completeness, required body sections, and style. Use when validating or repairing skills in a plugin directory. Trigger with "audit skill", "fix skill compliance".

getting-startedSkill

Learn how SKILL.md files work in Claude Code plugins, then build a production-quality agent skill from scratch. Covers frontmatter schema, body structure, testing, and iteration.

guidesSkill

Step-by-step guide to writing a SKILL.md file for Claude Code. Learn how to plan, structure, and test auto-activating skills with proper frontmatter, allowed-tools, dynamic context injection, and supporting files.

agency-osSkill

|