From bun-agent
Analyze project health, dependencies, code quality, and structure. TRIGGER when: user asks about project status, health, dependency audit, dead code, bundle size, outdated packages, architecture overview, or says 'analyze', 'audit', 'health check'.
npx claudepluginhub aphrody-code/bun-agentThis skill is limited to using the following tools:
Run a comprehensive analysis of the current project. Adapt the checks based on what's present in the project.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Retrieves current documentation, API references, and code examples for libraries, frameworks, SDKs, CLIs, and services via Context7 CLI. Ideal for API syntax, configs, migrations, and setup queries.
Run a comprehensive analysis of the current project. Adapt the checks based on what's present in the project.
git status --short
git log --oneline -5
# Check for outdated packages
bun outdated 2>/dev/null || npm outdated 2>/dev/null || echo "No package manager detected"
bunx tsc --noEmit 2>&1 | tail -20
grep -rn "TODO\|FIXME\|HACK\|XXX" --include="*.ts" --include="*.tsx" src/ | head -20bun audit 2>/dev/null || npm audit 2>/dev/nullReport findings grouped by category with severity indicators:
$ARGUMENTS