bknd-local-setup

Automate local BKND project setup with CLI installation and config generation.

1|Updated Jan 23, 2026
One-click install
npx skills add https://github.com/cameronapak/melos --skill bknd-local-setup
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bknd-local-setup
Source: https://github.com/cameronapak/melos/tree/main/.agents/skills/bknd-local-setup
Command: npx skills add https://github.com/cameronapak/melos --skill bknd-local-setup

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill accelerates setting up a BKND project locally by automating project scaffolding, configuration, and development server setup.

Core Features & Use Cases

  • Interactive project creation with bknd create my-app.
  • Automatic generation of bknd.config.ts and initial project structure.
  • Support for Bun and Node runtimes with configurable dev server options.
  • Clear guidance for both interactive and manual setup workflows.

Quick Start

npx bknd create my-app Follow prompts to configure project name, database type (SQLite recommended for local dev), and whether to include an example schema.

cd my-app npm install

or bun install or pnpm install

npx bknd run

Frequently Asked Questions about bknd-local-setup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a BKND project locally?

To set up a BKND project locally, run npx bknd create my-app to interactively scaffold the project, install dependencies, and start the development server using npx bknd run.

Can I use Bun instead of Node for local BKND development?

Yes, BKND local setup supports both Bun and Node runtime adapters, allowing you to configure the development server and install dependencies using either environment.

What is the bknd.config.ts file used for?

The bknd.config.ts file provides the standard configuration setup for your BKND project, automatically generated during project creation to define runtime and server options.

Do I need to install the BKND CLI globally before creating a project?

No, you do not need a global CLI installation; you can use npx bknd create to run the interactive project creation and scaffolding process directly.

Which database should I choose for local BKND development?

SQLite is recommended for local BKND development, and the interactive creation prompt guides you through configuring the database type and optionally including an example schema.