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

@auto-engineer/component-implementer

v1.8.0

Published

AI-powered component implementation that generates production-ready React components from IA schema definitions.

Readme

@auto-engineer/component-implementer

AI-powered component implementation that generates production-ready React components from IA schema definitions.


Purpose

Without @auto-engineer/component-implementer, you would have to manually translate IA specifications into React components, handle dependency resolution between atoms/molecules/organisms, and iterate through TypeScript errors without AI assistance.

This package bridges the gap between design specifications and working code. It reads component specs from an IA schema, resolves the full dependency tree, and generates type-safe React/TypeScript code via AI with automatic retry on compilation errors.


Installation

pnpm add @auto-engineer/component-implementer

Quick Start

Register the handler and implement a component:

1. Register the handlers

import { COMMANDS } from '@auto-engineer/component-implementer';
import { createMessageBus } from '@auto-engineer/message-bus';

const bus = createMessageBus();
COMMANDS.forEach(cmd => bus.registerCommand(cmd));

2. Send a command

const result = await bus.dispatch({
  type: 'ImplementComponent',
  data: {
    projectDir: './client',
    iaSchemeDir: './.context',
    designSystemPath: './design-system.md',
    componentType: 'molecule',
    componentName: 'SurveyCard',
    filePath: 'client/src/components/molecules/SurveyCard.tsx',
  },
  requestId: 'req-123',
});

console.log(result);
// → { type: 'ComponentImplemented', data: { filePath: '...', composition: ['Button', 'Badge'] } }

The command generates a React component file with TypeScript types and GraphQL integration.


How-to Guides

Run via CLI

pnpm ai-agent ./client ./.context ./design-system.md

Run Programmatically

import { implementComponentHandler } from '@auto-engineer/component-implementer';

const result = await implementComponentHandler.handle({
  type: 'ImplementComponent',
  data: {
    projectDir: './client',
    iaSchemeDir: './.context',
    designSystemPath: './design-system.md',
    componentType: 'organism',
    componentName: 'SurveyList',
    filePath: 'client/src/components/organisms/SurveyList.tsx',
  },
  requestId: 'req-123',
});

Handle Errors

if (result.type === 'ComponentImplementationFailed') {
  console.error(result.data.error);
}

Enable Debug Logging

DEBUG=auto:client-implementer:* pnpm ai-agent ./client ./.context ./design-system.md

API Reference

Exports

import { COMMANDS, implementComponentHandler } from '@auto-engineer/component-implementer';

import type {
  ImplementComponentCommand,
  ComponentImplementedEvent,
  ComponentImplementationFailedEvent,
} from '@auto-engineer/component-implementer';

Commands

| Command | Description | |---------|-------------| | ImplementComponent | Generates a React component from IA schema definition |

ImplementComponentCommand

type ImplementComponentCommand = Command<
  'ImplementComponent',
  {
    projectDir: string;
    iaSchemeDir: string;
    designSystemPath: string;
    componentType: 'atom' | 'molecule' | 'organism' | 'page';
    filePath: string;
    componentName: string;
    failures?: string[];
    aiOptions?: { temperature?: number; maxTokens?: number };
  }
>;

ComponentImplementedEvent

type ComponentImplementedEvent = Event<
  'ComponentImplemented',
  {
    filePath: string;
    componentType: string;
    componentName: string;
    composition: string[];
    specs: string[];
  }
>;

ComponentImplementationFailedEvent

type ComponentImplementationFailedEvent = Event<
  'ComponentImplementationFailed',
  {
    error: string;
    componentType: string;
    componentName: string;
    filePath: string;
  }
>;

Architecture

src/
├── index.ts
├── commands/
│   └── implement-component.ts
├── agent.ts
└── agent-cli.ts

The following diagram shows the implementation flow:

flowchart TB
    A[ImplementComponentCommand] --> B[Load IA Schema]
    B --> C[Build Component Registry]
    C --> D[Resolve Dependencies]
    D --> E[Generate via AI]
    E --> F{TypeScript Valid?}
    F -->|Yes| G[ComponentImplementedEvent]
    F -->|No| H{Retries < 3?}
    H -->|Yes| E
    H -->|No| I[ComponentImplementationFailedEvent]

Flow: Command loads schema, builds registry, resolves dependencies, generates code via AI, validates with TypeScript, and retries up to 3 times on failure.

Dependencies

| Package | Usage | |---------|-------| | @auto-engineer/ai-gateway | AI text generation for code synthesis | | @auto-engineer/message-bus | Command/event infrastructure | | zod | Schema validation | | jsdom | DOM parsing for component analysis |