@yottagraph-app/aether-instructions 1.1.14 → 1.1.15

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 (2) hide show
  1. package/package.json +1 -1
  2. package/rules/server.mdc +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yottagraph-app/aether-instructions",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "Cursor rules, commands, and skills for Aether development",
5
5
  "files": [
6
6
  "rules",
package/rules/server.mdc CHANGED
@@ -69,10 +69,10 @@ Returns `null` if KV is not configured (env vars missing). Always check.
69
69
 
70
70
  ## Neon Postgres
71
71
 
72
- If a Neon database is connected to the project, Vercel auto-injects
73
- `DATABASE_URL` (pooled) and `DATABASE_URL_UNPOOLED` (direct). For local
74
- development, copy the connection string from Vercel project settings into
75
- `.env`.
72
+ If a Neon database is connected to the project, `DATABASE_URL` (pooled) and
73
+ `DATABASE_URL_UNPOOLED` (direct) are available. Vercel auto-injects them for
74
+ deployed builds; for local dev they are populated in `.env` during project
75
+ init. Check `.env` for `DATABASE_URL` — if present, Postgres is ready to use.
76
76
 
77
77
  ### Utility pattern
78
78