bknd-crud-delete

Delete single or bulk records from BKND entities via SDK or REST API.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables safe deletion of records from BKND-backed entities using the SDK or REST API, covering single-record deletions, bulk deletions, soft-delete workflows, and safeguards.

Core Features & Use Cases

  • Single-record deletion: Remove a specific item by ID with proper validation and error handling.
  • Bulk deletion with safeguards: Delete multiple records using a precise filter while preventing accidental mass deletes.
  • Soft-delete patterns: Mark records as deleted rather than permanently removing them, with restore options.
  • Cascade considerations: Manage child records to satisfy FK constraints before deleting a parent.

Quick Start

Authenticate, then delete a record with the BKND SDK or REST, and finally verify the record is removed.

Frequently Asked Questions about bknd-crud-delete

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

FAQPage Schema
How do I delete records from BKND entities using the REST API or SDK?

To delete BKND records, use the deleteOne or deleteMany methods via the SDK or REST API, applying precise filters to target specific records and verifying removal after the request completes.

Can I perform a bulk deletion on BKND records without accidentally removing the wrong data?

Yes, bulk deletion is supported through deleteMany, but it requires strict safeguards like applying precise filters to prevent accidental mass removals of unintended BKND records.

Does BKND support soft-delete workflows for recoverable record removal?

Yes, BKND supports soft-delete patterns that mark records as deleted rather than permanently removing them, providing options to restore the records later if needed.

How do cascade considerations work when deleting parent records in BKND?

Cascade management handles child records to satisfy foreign key constraints before deleting a parent record, ensuring referential integrity is maintained during the deletion process.

What's the best way to handle the response after deleting a single BKND record?

The best way to handle single-record deletion is to use deleteOne with proper validation and error handling, then verify the record is fully removed to confirm a successful response.

When should I not use permanent deletion instead of soft-delete in BKND?

You should avoid permanent deletion when future recovery is needed or foreign key constraints require child records to remain intact, opting instead for soft-delete patterns.