Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

bknd-modify-schemabknd 修改架构

Agent Skill

bknd-modify-schema 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

306

周安装

13

GitHub Stars

3

下载量

107
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bknd-modify-schema(bknd 修改架构)
来源仓库:https://github.com/cameronapak/bknd-skills
仓库路径:skills/bknd-modify-schema
安装命令:
npx skills add https://github.com/cameronapak/bknd-skills --skill bknd-modify-schema
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cameronapak/bknd-skills --skill bknd-modify-schema

简介

用于修改现有 Bknd schema,包括重命名字段或调整约束条件。

  • 支持添加字段、变更类型和索引,但需注意破坏性操作风险。
  • 建议先备份数据库,并通过代码模式执行变更脚本。
  • 非破坏性变更如新增可选字段可直接同步,避免数据丢失。
  • bknd-modify-schema 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Modify Schema

Modify existing schema in Bknd: rename entities/fields, change field types, or alter constraints.

Prerequisites

  • Existing Bknd app with entities (see bknd-create-entity)
  • For code mode: Access to bknd.config.ts
  • Backup your database before destructive changes

Critical Concept: Destructive vs Non-Destructive Changes

Bknd's schema sync detects differences between your code and database. Some changes are safe; others cause data loss.

Non-Destructive (Safe)

  • Adding new entities
  • Adding new fields (nullable or with default)
  • Adding new indices
  • Loosening constraints (removing .required())

Destructive (Data Loss Risk)

  • Renaming entities (treated as drop old + create new)
  • Renaming fields (treated as drop old + create new)
  • Changing field types (may fail or truncate data)
  • Removing fields (drops column and data)
  • Removing entities (drops table and all data)
  • Tightening constraints on existing data

When to Use UI vs Code

Use UI Mode When

  • Exploring schema changes interactively
  • Quick prototyping (data loss acceptable)
  • No version control needed

Use Code Mode When

  • Production schema changes
  • Version control required
  • Team collaboration
  • Reproducible deployments

Renaming an Entity

Warning: Bknd has no native rename. Renaming = DROP old + CREATE new = DATA LOSS.

Safe Approach: Data Migration

  1. Create new entity with desired name
  2. Migrate data from old to new
  3. Update code references
  4. Delete old entity

Code Approach

// Step 1: Add new entity alongside old
const schema = em({
  // OLD - will be removed later
  posts: entity("posts", {
    title: text().required(),
    content: text(),
  }),
  // NEW - desired name
  articles: entity("articles", {
    title: text().required(),
    content: text(),
  }),
});
// Step 2: Migrate data (run once via script or CLI)
const api = app.getApi();
const oldData = await api.data.readMany("posts", { limit: 10000 });

for (const item of oldData.data) {
  await api.data.createOne("articles", {
    title: item.title,
    content: item.content,
  });
}
// Step 3: Remove old entity from schema
const schema = em({
  articles: entity("articles", {
    title: text().required(),
    content: text(),
  }),
});
# Step 4: Sync with force to drop old table
npx bknd sync --force

UI Approach

  1. Open admin panel (http://localhost:1337)
  2. Go to Data section
  3. Create new entity with desired name
  4. Copy field definitions manually
  5. Export data from old entity (if needed)
  6. Import data to new entity
  7. Delete old entity

Renaming a Field

Warning: Bknd treats field renames as drop + create = DATA LOSS on that column.

Safe Approach: Data Migration

// Step 1: Add new field alongside old
const schema = em({
  users: entity("users", {
    name: text(),           // OLD - will be removed
    full_name: text(),      // NEW - desired name
  }),
});
// Step 2: Migrate data
const api = app.getApi();
const users = await api.data.readMany("users", { limit: 10000 });

for (const user of users.data) {
  if (user.name && !user.full_name) {
    await api.data.updateOne("users", user.id, {
      full_name: user.name,
    });
  }
}
// Step 3: Remove old field
const schema = em({
  users: entity("users", {
    full_name: text(),
  }),
});
# Step 4: Sync with force to drop old column
npx bknd sync --force

UI Approach

  1. Add new field with desired name
  2. Write script or manually copy data
  3. Delete old field

Changing Field Type

Type changes are risky. Some conversions work; others fail or truncate.

Compatible Type Changes

FromToNotes
texttext (with different constraints)Usually safe
numbertextSafe (numbers become strings)
booleannumberSafe (0/1 values)
booleantextSafe ("true"/"false")

Incompatible Type Changes

FromToRisk
textnumberFails if non-numeric data
textbooleanFails if not "true"/"false"/0/1
textdateFails if not valid date format
jsontextMay truncate; loses structure

Safe Approach for Type Change

// Step 1: Add new field with new type
const schema = em({
  products: entity("products", {
    price: text(),            // OLD - string prices
    price_cents: number(),    // NEW - integer cents
  }),
});
// Step 2: Transform and migrate data
const api = app.getApi();
const products = await api.data.readMany("products", { limit: 10000 });

for (const product of products.data) {
  if (product.price && !product.price_cents) {
    const cents = Math.round(parseFloat(product.price) * 100);
    await api.data.updateOne("products", product.id, {
      price_cents: cents,
    });
  }
}
// Step 3: Remove old field, rename new if desired
const schema = em({
  products: entity("products", {
    price_cents: number(),
  }),
});

Changing Field Constraints

Making a Field Required

Risk: Fails if existing records have null values.

// Before
entity("users", {
  email: text(),  // Optional
});

// After
entity("users", {
  email: text().required(),  // Now required
});

Safe approach:

  1. Update all null values first
  2. Then add .required()
// Step 1: Fill nulls with default
const api = app.getApi();
const usersWithNull = await api.data.readMany("users", {
  where: { email: { $isnull: true } },
});

for (const user of usersWithNull.data) {
  await api.data.updateOne("users", user.id, {
    email: "unknown@example.com",
  });
}

// Step 2: Now safely add .required()

Making a Field Unique

Risk: Fails if duplicates exist.

// Before
entity("users", {
  username: text(),
});

// After
entity("users", {
  username: text().unique(),
});

Safe approach:

  1. Find and resolve duplicates
  2. Then add .unique()
// Check for duplicates via raw SQL or manual inspection
// Resolve duplicates by updating or deleting
// Then add .unique() constraint

Removing Required/Unique

Generally safe:

// Before
entity("users", {
  email: text().required().unique(),
});

// After - loosening constraints is safe
entity("users", {
  email: text(),  // Now optional, non-unique
});

The Sync Workflow

Preview Changes (Dry Run)

# See what sync would do without applying
npx bknd sync

Output shows:

  • New entities/fields to create
  • Entities/fields to drop
  • Index changes

Apply Non-Destructive Changes

# Applies only additive changes
npx bknd sync

Apply All Changes (Including Drops)

# WARNING: This will drop tables/columns
npx bknd sync --force

Apply Drops Only

# Specifically enables drop operations
npx bknd sync --drop

UI Approach: Field Modifications

Change Field Type

  1. Open entity in Data section
  2. Click on field to edit
  3. Note: Type dropdown may be locked for existing fields
  4. If locked: Create new field with correct type, migrate data, delete old

Change Constraints

  1. Open entity in Data section
  2. Click on field to edit
  3. Toggle Required/Unique as needed
  4. Click Save
  5. Click Sync Database

Rename Field

  1. Create new field with desired name
  2. Manually copy data or write migration script
  3. Delete old field
  4. Sync database

Common Pitfalls

Sync Fails on Type Change

Error: Cannot convert column type from X to Y

Fix: Use migration approach - create new field, copy data, drop old.

Sync Fails on Required Constraint

Error: Column contains null values, cannot add NOT NULL

Fix: Update all null values to non-null first, then re-sync.

Sync Fails on Unique Constraint

Error: Duplicate values exist for column

Fix: Remove duplicates before adding unique constraint.

Data Lost After Rename

Problem: Renamed entity/field and lost all data.

Fix: Unfortunately, data is gone. Restore from backup. Use migration approach next time.

Force Flag Ignored

Problem: --force doesn't seem to apply changes.

Fix: Check sync output for actual errors. May be validation issue, not permission.


Migration Script Template

For complex migrations, create a standalone script:

// scripts/migrate-schema.ts
import { App } from "bknd";

async function migrate() {
  const app = new App({
    connection: { url: process.env.DB_URL! },
  });
  await app.build();

  const api = app.getApi();

  console.log("Starting migration...");

  // Read all records from old structure
  const records = await api.data.readMany("old_entity", { limit: 100000 });
  console.log(`Found ${records.data.length} records`);

  // Transform and insert into new structure
  let migrated = 0;
  for (const record of records.data) {
    await api.data.createOne("new_entity", {
      // Transform fields as needed
      new_field: record.old_field,
    });
    migrated++;
    if (migrated % 100 === 0) {
      console.log(`Migrated ${migrated}/${records.data.length}`);
    }
  }

  console.log("Migration complete!");
  process.exit(0);
}

migrate().catch(console.error);

Run with:

npx bun scripts/migrate-schema.ts
# or
npx ts-node scripts/migrate-schema.ts

Verification

After Schema Modification

# 1. Check sync status
npx bknd sync

# 2. Verify schema in debug output
npx bknd schema --pretty

Via Code

const api = app.getApi();

// Verify field exists by querying
const result = await api.data.readMany("entity_name", { limit: 1 });
console.log(result.data[0]);  // Check field names/values

Via UI

  1. Open entity in Data section
  2. Verify fields appear correctly
  3. Create test record with new schema
  4. Query existing records to verify data

DOs and DON'Ts

DO:

  • Back up database before destructive changes
  • Use migration approach for renames
  • Preview with npx bknd sync before forcing
  • Test on development database first
  • Keep old structure until data migrated

DON'T:

  • Rename entities/fields directly (data loss)
  • Use --force without previewing first
  • Change types without migration plan
  • Add .required() to fields with null data
  • Add .unique() to fields with duplicates

Related Skills

  • bknd-create-entity - Create new entities
  • bknd-add-field - Add fields to entities
  • bknd-delete-entity - Safely remove entities
  • bknd-seed-data - Populate migrated data
  • bknd-crud-update - Update records during migration

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.98%
按下载量换算37

Claude

26.57%
按下载量换算28

Cursor

19.84%
按下载量换算21

Gemini CLI

9.37%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills