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

crowvault

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crowvault

CrowVault CLI — 325 AI-powered dev tools from your terminal. Generate schemas, Dockerfiles, K8s configs, OpenAPI specs, Terraform modules, run multi-step workflows, and more.

latest
npmnpm
Version
2.3.0
Version published
Weekly downloads
23
-68.92%
Maintainers
1
Weekly downloads
 
Created
Source

crowvault

325 AI-powered dev tools from your terminal. Zero dependencies.

Generate database schemas, Dockerfiles, K8s deployments, OpenAPI specs, Terraform modules, DDD aggregates, run multi-step workflows, and more.

Install

npm install -g crowvault

Or run without installing:

npx crowvault help

Requires Node.js 18+.

Quick Start

# Authenticate
crowvault login

# Generate a Prisma schema
crowvault schema Order --format prisma --output ./prisma/order.prisma

# Generate a Dockerfile
crowvault dockerfile node --version 20 --output Dockerfile

# Generate an OpenAPI spec
crowvault openapi --title "My API" --format yaml --output api.yaml

# Generate a Terraform module
crowvault terraform aws --env production --output main.tf

# Run a multi-step workflow
crowvault workflow run microservice-scaffold --arg name=orders --arg language=node

Commands

Auth

CommandDescription
crowvault loginAuthenticate with API key or email/password
crowvault logoutRemove saved credentials
crowvault whoamiShow current auth status

Discovery

CommandDescription
crowvault serversList all 9 MCP servers (325 tools)
crowvault toolsBrowse/search all tools
crowvault tools --server database-mcp --search schemaFilter by server or keyword

Workflows (Multi-Step Pipelines)

CommandDescription
crowvault workflow listList available workflows
crowvault workflow show <name>Show workflow steps
crowvault workflow run <name> --arg key=valueExecute a workflow

Available workflows:

  • microservice-scaffold — Microservice + schema + migration + Docker + K8s (5 steps)
  • api-full-stack — OpenAPI + endpoint + tests + contracts (4 steps)
  • ddd-complete — Bounded context + model + aggregate + entity + repo + schema (6 steps)
  • event-driven — Kafka + event handler + DLQ (3 steps)
  • deploy-stack — Dockerfile + Compose + K8s + Helm (4 steps)
  • database-setup — Schema + ORM + migration + seed (4 steps)

Shortcuts

CommandDescription
crowvault schema <name>Generate database schema (Prisma/SQL)
crowvault dockerfile <runtime>Generate optimized Dockerfile
crowvault openapiGenerate OpenAPI/Swagger spec
crowvault terraform <provider>Generate Terraform module

General

CommandDescription
crowvault call <server> <tool> --arg key=valueCall any tool directly
crowvault batch <requests.json>Execute multiple tools in parallel (up to 10)

9 Servers, 325 Tools

ServerToolsCoverage
AWS53EC2, S3, Lambda, RDS, ECS, CloudFormation, IAM
GCP41Compute, GKE, Cloud Run, BigQuery, Pub/Sub
Full Stack38Express, NestJS, React, Vue, Next.js, FastAPI
Frontend36Components, state, routing, forms, accessibility
Database34PostgreSQL, MySQL, MongoDB, Prisma, migrations
Testing31Jest, Vitest, Cypress, load tests, mocks
Security31Auth, RBAC, encryption, OWASP, scanning
DevOps31Docker, K8s, Terraform, Helm, CI/CD, Prometheus
API30OpenAPI, GraphQL, gRPC, Kafka, webhooks, OAuth

Authentication

API Key (recommended for CI/CD):

export CROWVAULT_API_KEY=cv_your_key_here
crowvault servers

Interactive login:

crowvault login

Credentials stored in ~/.crowvault/config.json.

Environment Variables

VariableDescription
CROWVAULT_API_KEYAPI key (overrides saved config)
CROWVAULT_API_URLAPI URL (default: https://api.crowvault.ai)

Pricing

  • Free: 50 calls/month, 2 API keys — Sign up free
  • Developer: $49/month, 1,000 calls, 5 keys
  • Team: $199/month, 10,000 calls, 10 keys
  • Enterprise: Custom

License

MIT. Copyright TechSynergy Corp.

Keywords

crowvault

FAQs

Package last updated on 06 May 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