원클릭으로
benchmark
Performance baseline measurement. Captures page load times, Core Web Vitals, and resource sizes. Compare before/after on every PR.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Performance baseline measurement. Captures page load times, Core Web Vitals, and resource sizes. Compare before/after on every PR.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Builds production-grade Claude Projects and CustomGPTs, improves AI output quality using meta-thinking prompts, and architects self-improving AI systems. Use proactively when a founder wants to build a reliable AI workflow, automate a repeatable task with AI, improve the quality of AI outputs they're getting, feels stuck with generic AI responses, or wants to build internal tools powered by Claude. Trigger for "build a Claude project", "my AI outputs are generic", "how do I make Claude more specific", "build an AI workflow", "automate this with AI", or "my prompts aren't working".
One-command review pipeline. Chains CEO review → design review → eng review automatically. Surfaces only taste decisions for PD approval. Everything else runs autonomously.
Playbook for bootstrapped and early-stage SaaS founders based on proven case studies ($0 to $5M ARR with 6 people, and creator-to-business flywheel models). Use proactively when a founder is bootstrapped or capital-efficient, needs to grow without paid acquisition, is facing a churn crisis, wants to build a freemium or usage-based model, or asks "how do I grow without VC money". Also trigger for "PLG", "inbound-led outbound", "creator-led growth", "build in public", or "how did [bootstrapped company] grow".
Real browser automation for testing, QA, and demo verification. Provides Playwright-based browser control for navigating the live app, clicking elements, filling forms, taking screenshots, and verifying visual state.
Post-deploy monitoring. After release-engineer pushes to production, canary watches the live site for errors, performance regressions, and page failures.
The CEO's private brainstorming room and strategic sparring partner. Thinks WITH the founder before anything gets executed. Challenges assumptions, stress-tests ideas, validates strategic direction, runs thought experiments, and helps the founder decide what to command to subagents — and what NOT to. Use this BEFORE spawning any subagent swarm. Trigger for "I'm thinking about...", "does this make sense?", "help me think through...", "am I going in the right direction?", "stress test this idea", "play devil's advocate", "should I do X or Y", "I want to brainstorm", or any time the founder needs to think out loud before acting. This is not an execution agent — it never spawns other agents. It only thinks.
| name | benchmark |
| description | Performance baseline measurement. Captures page load times, Core Web Vitals, and resource sizes. Compare before/after on every PR. |
| used_by | ["qa-engineer","release-engineer"] |
Load skills/public/browse/SKILL.md for browser commands.
Run on each key page:
const page = await browser.newPage();
await page.goto(url, { waitUntil: 'networkidle' });
const timing = await page.evaluate(() => {
const nav = performance.getEntriesByType('navigation')[0];
return {
ttfb: nav.responseStart - nav.requestStart,
domContentLoaded: nav.domContentLoadedEventEnd - nav.startTime,
load: nav.loadEventEnd - nav.startTime,
domInteractive: nav.domInteractive - nav.startTime,
};
});
const resources = await page.evaluate(() => {
return performance.getEntriesByType('resource').map(r => ({
name: r.name.split('/').pop(),
type: r.initiatorType,
size: r.transferSize,
duration: r.duration
}));
});
/ (homepage)/[DOMAIN_ENTITY_PLURAL] (listing page)/login/profile (if authenticated)Save to docs/BENCHMARK.md:
Performance Benchmark — [date]
| Page | TTFB | DOM Content Loaded | Full Load | Resources | Total Size |
|------|------|-------------------|-----------|-----------|------------|
| / | Xms | Xms | Xms | N | X KB |
Comparison to Previous
| Metric | Previous | Current | Delta | Status |
|--------|----------|---------|-------|--------|
Delta > 20% regression → flag to CEO.