用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CodySwannGT/lisa --skill harper-schema-graphql命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | harper-schema-graphql |
| description | editing a Harper (HarperDB/Fabri… |
Harper defines its database tables and types from GraphQL schema files, loaded
by the graphqlSchema extension (default *.graphql; this project uses
harper-app/schema.graphql). The schema is the source of truth for the data model:
the tables it declares are what resources extend ([[harper-resources]]) and what
the REST/GraphQL surface exposes.
A table is a GraphQL type. Harper-specific directives mark a type as a persisted
table and control exposure, primary keys, indexes, audit timestamps, sealed
records, and relationships. Lisa's Harper Fabric template pins harperdb to the
Harper 4 line (^4.7.29), so use this v4 directive reference for template
projects:
type Dog @table @export(name: "dogs") {
id: Long @primaryKey
name: String @indexed
breed: String
ownerId: Long @indexed
owner: Owner @relationship(from: ownerId)
createdAt: Long @createdTime
updatedAt: Long @updatedTime
}
| Directive | Scope | Syntax | Use |
|---|---|---|---|
@table | Type | type Product @table { ... } | Creates a persisted table named after the type. Optional arguments: table: "products" to override the table name, database: "commerce" to choose a database, expiration: 3600 for TTL-style records, and audit: true to force audit logging. |
@export | Type | type Product @table @export(name: "products") { ... } | Exposes the table as a resource endpoint for REST/MQTT and related surfaces. name is optional; without it the type name is the path segment. |
@sealed | Type | type Product @table @sealed { ... } | Rejects undeclared properties. Omit it when the table intentionally accepts extra record fields. |
@primaryKey | Field | id: Long @primaryKey | Marks the unique table key. If omitted on insert, Harper v4 can auto-generate a UUID for String/ID keys or an auto-incrementing integer for Int/Long/Any keys. Prefer Long or Any for generated numeric keys. |
@indexed | Field | sku: String @indexed | Adds a secondary index used by REST filters, SQL, and NoSQL/search paths. Array fields index each element. For vectors in Harper v4.6+, use embedding: [Float] @indexed(type: "HNSW"). |
@createdTime | Field | createdAt: Long @createdTime | Writes Unix epoch milliseconds when the record is created. |
@updatedTime | Field | updatedAt: Long @updatedTime | Writes Unix epoch milliseconds whenever the record is updated. |
@relationship(from: field) | Field | owner: Owner @relationship(from: ownerId) |
Use v5 docs only when the downstream project has intentionally moved off the Lisa
template's Harper 4 dependency; do not mix v5-only syntax into a harperdb
^4.7.29 project.
graphqlSchema extension creates/migrates tables from the schema on load.rest: true exposes exported tables/resources as REST endpoints; the GraphQL
surface is generated from the same schema.extends tables.X depend on X existing in the schema. A rename
or removal in the schema is a breaking change for every resource and verify path
that references it.Schema changes are deploy-time data-model changes, not just type edits. Harper's
graphqlSchema extension ensures declared tables and attributes exist when the
component loads, but it does not perform semantic data migrations such as
renaming tables, copying field values, or rewriting existing rows for you.
Classify each change before editing:
| Change | Compatibility | What Harper does | Required agent work |
|---|---|---|---|
| Add optional field | Usually safe | Adds the declared attribute shape; existing rows read as missing/null until written. | Update resources, seeds, and verification that should include the field. |
| Add required/non-null field | Breaking for existing rows and writers | The schema can declare the field, but existing records do not magically gain valid values. | Backfill first or deploy as optional, populate, then tighten in a later deploy. |
Add @indexed | Usually safe, operationally sensitive | Creates/uses a secondary index for the attribute. Large tables may pay rebuild cost. | Verify filtered REST/search paths and note index build risk in the deploy runbook. |
Add @sealed | Breaking when rows or writers use extra properties | Future writes with undeclared properties are rejected. | Audit current data/writers, declare needed fields, or migrate callers before sealing. |
| Rename field | Breaking | Treated as a new field; the old field and its values are not transformed. | Add the new field, copy values with a migration, update code, verify, then remove old usage. |
| Rename type/table | Breaking | Harper v4 does not rename tables; changing the type name creates a new empty table and leaves the old table/data untouched. | Create the new table, copy data, update resources/routes, verify both read/write paths, then retire the old table intentionally. |
| Change field type | Breaking | Existing stored values are not coerced into the new type in a controlled migration. | Add a replacement field/table, transform data with code, verify, then remove old usage. |
| Remove field/type | Breaking | Schema no longer declares it, but dependent resources, routes, queries, seeds, and clients can still reference it. | Delete references first, run a migration/cleanup if needed, and verify old API paths fail or redirect intentionally. |
Migration recipe for production data:
bun run verify or the project
smoke path cannot prove the migrated read/write behavior.schema.graphql is source and lives at the component root that Fabric
packages (harper-app/schema.graphql). Keep it there.After a schema change, boot the app (harper dev harper-app or the project run
command) and confirm tables migrate cleanly and the dependent endpoints respond.
Run any verify path that asserts row counts or joins against the changed model.
| The foreign key is on this table and references the target table primary key. If the foreign key field is an array, the relationship is many-to-many. |
@relationship(to: field) | Field | dogs: [Dog] @relationship(to: ownerId) | The foreign key is on the target table. The relationship field must be an array. |
@relationship(from: field, to: field) | Field | product: Product @relationship(from: productSku, to: sku) | Joins this table's field to a non-primary-key field on the target table. Index both join fields. |