@jskit-ai/agent-docs 0.1.177 → 0.1.179

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.
Files changed (38) hide show
  1. package/guide/agent/app-setup/upgrading-jskit.md +15 -0
  2. package/guide/agent/framework/application-operations.md +13 -14
  3. package/package.json +1 -1
  4. package/patterns/feature-package/example/booking-engine/package.json +1 -1
  5. package/patterns/minimal-foundation/PATTERN.md +10 -0
  6. package/patterns/minimal-foundation/example/index.html +15 -1
  7. package/patterns/minimal-foundation/example/package.json +9 -8
  8. package/patterns/minimal-foundation/example/src/main.js +4 -0
  9. package/patterns/minimal-foundation/example/tests/e2e/startup.spec.ts +35 -0
  10. package/patterns/shell-foundation/PATTERN.md +10 -0
  11. package/patterns/shell-foundation/example/index.html +15 -1
  12. package/patterns/shell-foundation/example/package.json +10 -9
  13. package/patterns/shell-foundation/example/packages/main/package.json +1 -1
  14. package/patterns/shell-foundation/example/src/main.js +4 -0
  15. package/patterns/shell-foundation/example/tests/e2e/startup.spec.ts +35 -0
  16. package/reference/autogen/PATTERN_INDEX.md +35 -35
  17. package/skills/jskit/references/app-operations.md +13 -14
  18. package/skills/jskit/references/pattern-index.md +35 -35
  19. package/skills/jskit/references/patterns/app/minimal-foundation/PATTERN.md +10 -0
  20. package/skills/jskit/references/patterns/app/minimal-foundation/example/index.html +15 -1
  21. package/skills/jskit/references/patterns/app/minimal-foundation/example/package.json +9 -8
  22. package/skills/jskit/references/patterns/app/minimal-foundation/example/src/main.js +4 -0
  23. package/skills/jskit/references/patterns/app/minimal-foundation/example/tests/e2e/startup.spec.ts +35 -0
  24. package/skills/jskit/references/patterns/app/shell-foundation/PATTERN.md +10 -0
  25. package/skills/jskit/references/patterns/app/shell-foundation/example/index.html +15 -1
  26. package/skills/jskit/references/patterns/app/shell-foundation/example/package.json +10 -9
  27. package/skills/jskit/references/patterns/app/shell-foundation/example/packages/main/package.json +1 -1
  28. package/skills/jskit/references/patterns/app/shell-foundation/example/src/main.js +4 -0
  29. package/skills/jskit/references/patterns/app/shell-foundation/example/tests/e2e/startup.spec.ts +35 -0
  30. package/skills/jskit/references/patterns/auth/supabase-auth/example/package.json +1 -1
  31. package/skills/jskit/references/patterns/connectors/calendar-cli/example/package.json +4 -4
  32. package/skills/jskit/references/patterns/crud/json-api-resource-package/example/packages/books/package.json +2 -2
  33. package/skills/jskit/references/patterns/database/mysql-application/example/package.json +1 -1
  34. package/skills/jskit/references/patterns/database/postgres-application/example/package.json +1 -1
  35. package/skills/jskit/references/patterns/realtime/realtime-application/example/package.json +2 -2
  36. package/skills/jskit/references/patterns/server/feature-package/example/booking-engine/package.json +1 -1
  37. package/skills/jskit/references/patterns/users/user-administration-server/example/packages/users/package.json +2 -2
  38. package/skills/jskit/references/patterns/users/user-administration-server/example/packages/users-workspace/package.json +3 -3
@@ -9,8 +9,8 @@
9
9
  "./shared": "./src/shared/index.js"
10
10
  },
11
11
  "dependencies": {
12
- "@jskit-ai/crud-core": "0.1.216",
13
- "@jskit-ai/resource-crud-core": "0.1.147"
12
+ "@jskit-ai/crud-core": "0.1.218",
13
+ "@jskit-ai/resource-crud-core": "0.1.149"
14
14
  },
15
15
  "jskit": {
16
16
  "kind": "runtime",
@@ -9,9 +9,9 @@
9
9
  "./shared": "./src/shared/index.js"
10
10
  },
11
11
  "dependencies": {
12
- "@jskit-ai/crud-core": "0.1.216",
13
- "@jskit-ai/resource-crud-core": "0.1.147",
14
- "@jskit-ai/workspaces-core": "0.1.183"
12
+ "@jskit-ai/crud-core": "0.1.218",
13
+ "@jskit-ai/resource-crud-core": "0.1.149",
14
+ "@jskit-ai/workspaces-core": "0.1.185"
15
15
  },
16
16
  "jskit": {
17
17
  "kind": "runtime",