From magic-powers
Use when load testing APIs, profiling bottlenecks, or validating performance SLAs before release
npx claudepluginhub kienbui1995/magic-powers --plugin magic-powersThis skill uses the workspace's default tool permissions.
When you need to validate that a system can handle expected load, find bottlenecks before users do, or establish performance baselines.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
When you need to validate that a system can handle expected load, find bottlenecks before users do, or establish performance baselines.
Before testing, specify:
Without these, you don't know if your test passed.
k6 example:
import http from 'k6/http';
import { check, sleep } from 'k6';
export const options = {
stages: [
{ duration: '2m', target: 50 }, // ramp up to 50 users
{ duration: '5m', target: 50 }, // stay at 50
{ duration: '2m', target: 100 }, // ramp to 100
{ duration: '5m', target: 100 }, // stay at 100
{ duration: '2m', target: 0 }, // ramp down
],
};
export default function () {
const res = http.get('https://api.example.com/users');
check(res, { 'status was 200': (r) => r.status === 200 });
sleep(1);
}
During the test, watch:
The throughput "knee" = where latency starts degrading rapidly. Don't target above this.
When tests fail: