🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

agentbuilders

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agentbuilders

CLI for AgentBuilders.app

latest
npmnpm
Version
0.6.1
Version published
Maintainers
1
Created
Source

AgentBuilders CLI

Deploy full-stack web apps with one command. Database, file storage, user auth, and RBAC included.

Install

npm install -g agentbuilders

Quick Start

# Set your API key
export AB_KEY=your_api_key_here

# Deploy current directory
ab deploy

# Deploy specific directory with name
ab deploy ./my-app --name cool-app --public

# List your apps
ab list

Commands

CommandDescription
ab deploy [dir] [--name <n>] [--public]Deploy app from directory
ab listList all your apps
ab get <name>Get app details (JSON)
ab delete <name>Delete an app
ab key <name>Get app viewKey
ab statusPlatform status
ab healthAPI health check
ab subscriptionYour tier and limits
ab upgrade <tier>Upgrade (opens Stripe checkout)
ab domainsList custom domains
ab domains add <host> <app>Add custom domain
ab domains remove <host>Remove custom domain
ab domains status <host>Check domain verification
ab init [dir]Create ab.json config file
ab whoamiShow current account info
ab versionShow CLI version

Configuration (ab.json)

Create an ab.json in your project root to configure database, auth, and RBAC:

{
  "name": "my-app",
  "public": false,
  "storage": {
    "database": {
      "tables": {
        "items": { "name": "TEXT", "value": "TEXT", "created_at": "TEXT" }
      }
    },
    "files": true
  },
  "auth": { "enabled": true },
  "rbac": {
    "roles": {
      "admin": { "permissions": ["*"] },
      "editor": { "permissions": ["data:read", "data:write", "files:read", "files:write"] },
      "viewer": { "permissions": ["data:read", "files:read"] }
    },
    "default_role": "viewer"
  }
}

Run ab init to generate a starter config.

Tiers

TierPriceAppsDB RowsStorage
Free$035K50MB
Hobby$9/mo1050K500MB
Pro$19/mo25500K2GB
Studio$49/mo502M5GB
Founder$99+502M5GB (lifetime)
  • Docs
  • Pricing
  • Status
  • API

Keywords

agent

FAQs

Package last updated on 03 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts