npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

kiro-frontend-engineer-mcp

v1.0.0

Published

MCP server integrating a 7-stage agentic frontend workflow: design audit → component gen → E2E test → self-healing CI

Readme

kiro-frontend-engineer-mcp

A Model Context Protocol (MCP) server implementing a 7-stage agentic frontend workflow:

  1. Design Audit — Web design inspection checklist (accessibility, layout stability, edge cases)
  2. Component Blueprint — AI-driven component generation with full interactive states
  3. Best Practices — React/Next.js guidelines applied before code generation
  4. Browser Validation — Real browser run via kane-cli
  5. E2E Testing — Playwright test execution with pass/fail capture
  6. CI Self-Healing — Auto-fetch GitHub Actions failures and generate fixes
  7. PR Review Loop — Auto-resolve PR review comments

Quick Start — Add to Your Project

Option 1: Kiro (recommended)

Add this to your project's .kiro/settings/mcp.json:

{
  "mcpServers": {
    "frontend-engineer": {
      "command": "node",
      "args": ["<path-to-this-repo>/dist/index.js"]
    }
  }
}

Option 2: npx (after publishing to npm)

{
  "mcpServers": {
    "frontend-engineer": {
      "command": "npx",
      "args": ["-y", "kiro-frontend-engineer-mcp"]
    }
  }
}

Option 3: Clone and build locally

git clone https://github.com/<your-username>/kiro-frontend-engineer-mcp.git
cd kiro-frontend-engineer-mcp
npm install
npm run build

Then point your MCP config to the built output:

{
  "mcpServers": {
    "frontend-engineer": {
      "command": "node",
      "args": ["./kiro-frontend-engineer-mcp/dist/index.js"]
    }
  }
}

What It Provides

Resources (context the agent reads)

| URI | Description | |-----|-------------| | mcp://research/web-design-guidelines | WCAG AA checklist, layout stability, responsive breakpoints | | mcp://research/react-best-practices | Server/Client components, TypeScript patterns, performance |

Prompts (agent personas)

| Name | Description | |------|-------------| | ui-ux-pro-max | Generates production-ready component blueprints from layout specs |

Tools (agent actions)

| Name | Description | |------|-------------| | run_kane_cli | Visual browser validation via kane-cli | | execute_playwright_test | Run Playwright E2E tests | | github_fetch_ci_logs | Fetch CI failure logs for self-healing | | github_address_review_comments | Fetch and resolve PR review comments |

Orchestration Flow

The agent should chain calls in this order:

Read web-design-guidelines → Call ui-ux-pro-max prompt → Read react-best-practices
→ Generate code → run_kane_cli → execute_playwright_test
→ (if CI fails) github_fetch_ci_logs → fix → push
→ (if PR comments) github_address_review_comments → resolve → push

Prerequisites

  • Node.js ≥ 18
  • gh CLI (for CI logs and PR comment tools) — gh auth login
  • Playwright installed in your project (for E2E tool)
  • kane-cli (optional, for browser validation tool)

License

MIT