From typescript-plugin
Runs tests using Bun's built-in test runner with optimized output like dots for quick feedback, bail on first failure, coverage, and watch mode. Reports summaries, failures, and coverage.
npx claudepluginhub laurigates/claude-plugins --plugin typescript-pluginThis skill uses the workspace's default tool permissions.
Run tests using Bun's built-in test runner with optimized output.
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.
Run tests using Bun's built-in test runner with optimized output.
pattern (optional): Test file or name pattern--coverage: Enable code coverage reporting--bail: Stop on first failure--watch: Watch mode for developmentQuick feedback (default for agentic use):
bun test --dots --bail=1 $PATTERN
With coverage:
bun test --dots --coverage $PATTERN
Watch mode:
bun test --watch $PATTERN
CI mode (JUnit output):
bun test --reporter=junit --reporter-outfile=junit.xml $PATTERN
| Symbol | Meaning |
|---|---|
. | Test passed |
F | Test failed |
S | Test skipped |