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

hilda-agent

v1.0.0

Published

AI-Powered DevOps Deployment Agent

Downloads

3

Readme

HILDA

Human In the Loop Deployment Agent

HILDA is an intelligent deployment workflow system built with Next.js 15, TypeScript, and Tailwind CSS. It leverages LangGraph for orchestrating complex deployment processes with human oversight and approval checkpoints.

🚀 Features

  • 🤖 LangGraph Workflows: State-based deployment orchestration with AI-powered decision making
  • 👥 Human-in-the-Loop: Critical deployment steps require human approval
  • 🔗 GitHub Integration: Seamless webhook integration for deployment triggers
  • 🗄️ Supabase Backend: Persistent storage for deployment state and approval history
  • ⚡ Next.js 15: Built with the latest Next.js features including App Router and Server Actions
  • 🎨 Tailwind CSS: Modern, responsive UI components

📁 Project Structure

hilda/
├── ai/                      # LangGraph workflows and agent logic
│   ├── workflows/          # Workflow definitions
│   ├── nodes/             # Individual workflow nodes
│   └── README.md
├── lib/                    # Shared libraries and clients
│   ├── supabase.ts        # Supabase client configuration
│   ├── octokit.ts         # GitHub Octokit client
│   └── README.md
├── components/             # React UI components
│   ├── ui/                # Reusable UI components
│   └── README.md
├── types/                  # TypeScript type definitions
│   ├── database.ts        # Database schema types
│   ├── agent-state.ts     # AgentState for LangGraph
│   └── README.md
├── app/                    # Next.js App Router
│   ├── api/
│   │   └── webhooks/      # Webhook endpoints
│   │       └── github/    # GitHub webhook handler
│   ├── actions/           # Server Actions
│   │   └── deployments.ts # Deployment management actions
│   ├── layout.tsx
│   └── page.tsx
└── .env.example           # Environment variables template

🛠️ Setup

Prerequisites

  • Node.js 20.x or higher
  • npm or yarn
  • A Supabase account
  • A GitHub Personal Access Token
  • An Anthropic API key (for Claude)

Installation

  1. Clone the repository:
git clone https://github.com/harshit110927/hilda.git
cd hilda
  1. Install dependencies:
npm install
  1. Set up environment variables:
cp .env.example .env.local
  1. Edit .env.local with your credentials:
SUPABASE_URL=your-supabase-project-url
SUPABASE_KEY=your-supabase-anon-key
ANTHROPIC_API_KEY=your-anthropic-api-key
GITHUB_TOKEN=your-github-personal-access-token
  1. Run the development server:
npm run dev
  1. Open http://localhost:3000 in your browser.

🔧 Development

Available Scripts

  • npm run dev - Start development server with Turbopack
  • npm run build - Build for production
  • npm run start - Start production server
  • npm run lint - Run ESLint

Building for Production

npm run build
npm run start

🌐 Deployment

Vercel (Recommended)

The easiest way to deploy HILDA is using Vercel:

Deploy with Vercel

Make sure to configure your environment variables in the Vercel dashboard.

Other Platforms

HILDA can be deployed to any platform that supports Next.js applications:

  • Netlify
  • Railway
  • AWS Amplify
  • Self-hosted with Docker

🔐 Environment Variables

| Variable | Description | Required | |----------|-------------|----------| | SUPABASE_URL | Your Supabase project URL | Yes | | SUPABASE_KEY | Your Supabase anon/public key | Yes | | ANTHROPIC_API_KEY | Anthropic API key for Claude | Yes | | GITHUB_TOKEN | GitHub Personal Access Token | Yes |

📚 Technologies

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📄 License

This project is licensed under the terms specified in the LICENSE file.

🙏 Acknowledgments

Built with ❤️ using modern web technologies and AI orchestration frameworks.