@yottagraph-app/aether-instructions 1.1.13 → 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.
- package/package.json +1 -1
- package/rules/api.mdc +4 -5
- package/rules/server.mdc +4 -4
package/package.json
CHANGED
package/rules/api.mdc
CHANGED
|
@@ -17,15 +17,14 @@ regularly — use the discovery-first pattern to find what's available.
|
|
|
17
17
|
## Skill Documentation
|
|
18
18
|
|
|
19
19
|
For endpoint reference, response shapes, and edge cases, **read the
|
|
20
|
-
elemental-api skill** in
|
|
20
|
+
elemental-api skill** in `.cursor/skills/elemental-api/` (start with `SKILL.md` and
|
|
21
21
|
follow the skill’s own structure). Files are copied from
|
|
22
|
-
`@yottagraph-app/
|
|
23
|
-
|
|
24
|
-
**run it early** during initial exploration so the skill is available.
|
|
22
|
+
`@yottagraph-app/aether-instructions` (installed during project init). If
|
|
23
|
+
the directory is missing, run `/update_instructions` to install it.
|
|
25
24
|
|
|
26
25
|
## Data model skill
|
|
27
26
|
|
|
28
|
-
For Lovelace **entity types, properties, relationships, and per-source schemas** (EDGAR, FRED, FDIC, etc.), read the **data-model skill** in
|
|
27
|
+
For Lovelace **entity types, properties, relationships, and per-source schemas** (EDGAR, FRED, FDIC, etc.), read the **data-model skill** in `.cursor/skills/data-model/`. Start with `SKILL.md`, then `overview.md` and the source-specific folders. Both skills are distributed via `@yottagraph-app/aether-instructions` and installed during project init.
|
|
29
28
|
|
|
30
29
|
## Client Usage
|
|
31
30
|
|
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,
|
|
73
|
-
`
|
|
74
|
-
|
|
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
|
|