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

@supaku/agentfactory-nextjs

v0.7.2

Published

Next.js API route handlers for AgentFactory — webhook processor, worker/session management, public stats

Downloads

2,062

Readme

@supaku/agentfactory-nextjs

Next.js route handlers, webhook processor, middleware, and OAuth for AgentFactory. Drop-in API routes that turn a Next.js app into a full agent fleet server.

Installation

npm install @supaku/agentfactory-nextjs

Or scaffold a complete project:

npx @supaku/create-agentfactory-app my-agent

Quick Start

1. Configure routes

// src/lib/config.ts
import { createAllRoutes, createDefaultLinearClientResolver } from '@supaku/agentfactory-nextjs'

export const routes = createAllRoutes({
  linearClient: createDefaultLinearClientResolver(),
})

2. Add webhook route

// src/app/webhook/route.ts
import { routes } from '@/lib/config'
export const POST = routes.webhook.POST
export const GET = routes.webhook.GET

3. Add middleware

// src/middleware.ts
import { createAgentFactoryMiddleware } from '@supaku/agentfactory-nextjs'

const { middleware } = createAgentFactoryMiddleware()
export { middleware }

export const config = {
  matcher: ['/api/:path*', '/webhook', '/dashboard', '/sessions/:path*', '/'],
}

What's Included

createAllRoutes() generates 21+ route handlers from a single config:

| Route Group | Endpoints | Purpose | |-------------|-----------|---------| | Webhook | POST /webhook | Receive Linear events, dispatch agents | | Workers | /api/workers/* | Worker registration, heartbeat, polling | | Sessions | /api/sessions/* | Session management, status, activity | | Public | /api/public/* | Public stats, session list | | Cleanup | /api/cleanup | Orphaned resource cleanup | | OAuth | /callback | Linear OAuth callback |

Each route file is a 2-line re-export:

import { routes } from '@/lib/config'
export const GET = routes.sessions.list.GET

Configuration

const routes = createAllRoutes({
  // Required: how to resolve a Linear API client
  linearClient: createDefaultLinearClientResolver(),

  // Optional: customize prompts, detection, priority
  generatePrompt: (identifier, workType, mentionContext) => string,
  detectWorkTypeFromPrompt: (prompt, validWorkTypes) => AgentWorkType | undefined,
  getPriority: (workType) => number,

  // Optional: auto-trigger QA/acceptance
  autoTrigger: {
    enableAutoQA: true,
    enableAutoAcceptance: false,
    autoQARequireAgentWorked: true,
    autoAcceptanceRequireAgentWorked: true,
    autoQAProjects: [],
    autoAcceptanceProjects: [],
    autoQAExcludeLabels: [],
    autoAcceptanceExcludeLabels: [],
  },

  // Optional: OAuth
  oauth: { clientId: '...', clientSecret: '...' },
})

Middleware

Handles API key auth, rate limiting, and webhook signature verification:

const { middleware } = createAgentFactoryMiddleware({
  routes: {
    public: ['/api/public/', '/dashboard', '/'],
    protected: ['/api/sessions', '/api/workers'],
    webhook: '/webhook',
  },
  rateLimits: {
    public: { max: 60, windowMs: 60_000 },
    webhook: { max: 10, windowMs: 1_000 },
  },
})

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | LINEAR_ACCESS_TOKEN | Yes | Linear API key | | LINEAR_WEBHOOK_SECRET | For webhooks | Webhook signature verification | | REDIS_URL | For distributed | Redis connection URL |

Related Packages

| Package | Description | |---------|-------------| | @supaku/agentfactory | Core orchestrator | | @supaku/agentfactory-linear | Linear integration | | @supaku/agentfactory-server | Redis infrastructure | | @supaku/agentfactory-cli | CLI tools |

License

MIT