@kardoe/quickback 0.5.14 → 0.5.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/create.js +6 -7
- package/dist/commands/create.js.map +1 -1
- package/dist/docs/content.d.ts.map +1 -1
- package/dist/docs/content.js +11 -6
- package/dist/docs/content.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/lib/api-client.d.ts.map +1 -1
- package/dist/lib/api-client.js +30 -16
- package/dist/lib/api-client.js.map +1 -1
- package/dist/lib/file-loader.d.ts +2 -2
- package/dist/lib/file-loader.js +8 -8
- package/dist/lib/file-loader.js.map +1 -1
- package/package.json +1 -1
- package/src/skill/SKILL.md +267 -444
- package/src/skill/agents/quickback-specialist/AGENT.md +2 -2
|
@@ -38,7 +38,7 @@ You deeply understand:
|
|
|
38
38
|
|
|
39
39
|
## Code Generation
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
Schema + security config in a single file using `defineTable()`.
|
|
42
42
|
|
|
43
43
|
Generate files in `quickback/features/{name}/`:
|
|
44
44
|
- `{table}.ts` - Drizzle schema + security config via `defineTable()` (DO NOT add audit fields - they're auto-injected)
|
|
@@ -196,7 +196,7 @@ Before finishing, verify:
|
|
|
196
196
|
- [ ] Validation rules for constrained fields (if needed)
|
|
197
197
|
- [ ] Layouts for CMS record page field grouping (if needed)
|
|
198
198
|
- [ ] No audit fields in schema (auto-injected)
|
|
199
|
-
- [ ] Using `defineTable()`
|
|
199
|
+
- [ ] Using `defineTable()` (not separate schema.ts + resource.ts)
|
|
200
200
|
- [ ] Actions use `defineActions()` with Zod schemas (not JSON schema)
|
|
201
201
|
|
|
202
202
|
## Accessing Documentation
|