bknd-crud-create

Create single or bulk records in Bknd datastores via SDK or REST API.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables developers to create new records in a Bknd datastore via the SDK or REST API, handling relationship linking and basic validation to accelerate data entry.

Core Features & Use Cases

  • Create single records with field validation and defaults.
  • Create with relations using $set to link to related records (one-to-one and one-to-many).
  • Perform bulk creation for multiple records efficiently in batch operations, with error handling and retry strategies.

Quick Start

Use the bknd-crud-create skill to insert a new record into a Bknd entity, for example api.data.createOne("posts", { title: "Sample", content: "Hello" }).

Frequently Asked Questions about bknd-crud-create

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

FAQPage Schema
How do I create a single record in a Bknd datastore using the REST API?

To create a single record in a Bknd datastore, call the SDK or REST API with your entity name and field values, for example api.data.createOne("posts", { title: "Sample" }). This handles field validation and applies default values per the Bknd entity schema.

Can I link relations when creating a new record in Bknd?

Yes, you can link relations when creating a Bknd record by using the $set operator to connect to related records. This supports both one-to-one and one-to-many relationship linking during the creation process.

What is the best way to perform bulk record creation in Bknd?

The best way to perform bulk creation in Bknd is by executing batch operations through the SDK or REST API. This approach is efficient for inserting multiple records simultaneously and includes error handling and retry strategies for failed inserts.

Does Bknd handle data validation and defaults automatically on record creation?

Yes, Bknd automatically handles data validation and default values during record creation according to the defined Bknd entity schemas. This ensures data integrity across both UI and server-side workflows.

How does error handling work for Bknd record creation across server and UI workflows?

Error handling for Bknd record creation is managed across both UI and server-side workflows to catch validation issues and operational failures. During bulk creation, error handling and retry strategies are applied to manage batch insert failures.