product-feedback-sim

Installation
SKILL.md

Product Feedback Sim

Thin scenario wrapper around persona-sim. Runs SGO on a product/copy candidate against a target user panel.

Recipe

import sys
sys.path.insert(0, str(__import__('pathlib').Path.home() / '.claude/skills/persona-sim'))
from lib import sampler, sim_engine

# 1. Define target audience
panel = sampler.sample_personas(
    n=30,                                              # 30-50 is cost-effective
    filters={"occupation_isco": "software", "age": (25, 50)},  # substring match on occupation
    source="nemotron_usa",
    mode="stream",
)
Installs
6
GitHub Stars
33
First Seen
May 26, 2026
product-feedback-sim — yrzhe/claude-skills