ソース情報
- リポジトリ
- CodySwannGT/lisa
- ソースの最終更新活動
- 2026年7月10日 13:59
- 検出された SKILL.md の言語
- 英語
- スター
- 3
- フォーク
- 3
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/CodySwannGT/lisa --skill harper-schema-graphqlコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| 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. |