@everystack/mcp 0.4.3 → 0.4.4

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/index.cjs CHANGED
@@ -22411,7 +22411,9 @@ function registerDesignSchemaPrompt(server) {
22411
22411
  "Declare each table with `defineModel`, following these conventions:",
22412
22412
  "- UUID primary keys: `id: field.uuid().primaryKey().defaultRandom()`",
22413
22413
  "- Timestamps: `createdAt: field.timestamptz().defaultNow().notNull()`",
22414
- "- Soft delete: a `deletedAt: field.timestamptz()` field opts the table into soft-delete",
22414
+ "- Soft delete: a `deletedAt: field.timestamptz()` field PLUS `softDelete: true` \u2014 the flag is what",
22415
+ " excludes soft-deleted rows from public reads and the data API. The field alone does nothing:",
22416
+ " visibility is declared, never inferred from a column name",
22415
22417
  "- Foreign keys via relations: `field.uuid().references(() => Author)` / `belongsTo`/`hasMany`",
22416
22418
  "- Sensitive columns: `.private()` (hidden from the API); write-guarded: `.readonly()`",
22417
22419
  "- Named exports (PascalCase model var, e.g. `export const Post = defineModel('posts', \u2026)`)",
@@ -23733,7 +23735,7 @@ async function runGovernanceCli(argv) {
23733
23735
  }
23734
23736
 
23735
23737
  // src/index.ts
23736
- var version2 = (true ? "0.4.3" : null) ?? "0.3.0-dev";
23738
+ var version2 = (true ? "0.4.4" : null) ?? "0.3.0-dev";
23737
23739
  var INSTRUCTIONS = [
23738
23740
  "You govern how any agent builds everystack \u2014 a self-hosted application stack for Expo apps on AWS.",
23739
23741
  "Your job is not only to advise but to keep the build on-script: the architecture the maintainer",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everystack/mcp",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Governance layer that governs how any agent builds everystack — grounding, cheat gates, and Model-aware tooling over MCP",
5
5
  "license": "AGPL-3.0-only",
6
6
  "author": "Scalable Technology, Inc. <licensing@scalable.technology>",
@@ -40,8 +40,8 @@
40
40
  "tsx": "4.21.0",
41
41
  "typescript": "5.9.3",
42
42
  "zod": "3.25.67",
43
- "@everystack/cli": "0.4.38",
44
- "@everystack/model": "0.4.5",
43
+ "@everystack/model": "0.4.8",
44
+ "@everystack/cli": "0.4.43",
45
45
  "@everystack/server": "0.4.15"
46
46
  },
47
47
  "scripts": {
@@ -41,7 +41,9 @@ export function registerDesignSchemaPrompt(server: McpServer): void {
41
41
  'Declare each table with `defineModel`, following these conventions:',
42
42
  '- UUID primary keys: `id: field.uuid().primaryKey().defaultRandom()`',
43
43
  '- Timestamps: `createdAt: field.timestamptz().defaultNow().notNull()`',
44
- '- Soft delete: a `deletedAt: field.timestamptz()` field opts the table into soft-delete',
44
+ '- Soft delete: a `deletedAt: field.timestamptz()` field PLUS `softDelete: true` — the flag is what',
45
+ ' excludes soft-deleted rows from public reads and the data API. The field alone does nothing:',
46
+ ' visibility is declared, never inferred from a column name',
45
47
  '- Foreign keys via relations: `field.uuid().references(() => Author)` / `belongsTo`/`hasMany`',
46
48
  '- Sensitive columns: `.private()` (hidden from the API); write-guarded: `.readonly()`',
47
49
  '- Named exports (PascalCase model var, e.g. `export const Post = defineModel(\'posts\', …)`)',