@yottagraph-app/aether-instructions 1.1.7 → 1.1.8

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.
@@ -73,10 +73,10 @@ Then read these files to understand what's available:
73
73
  1. `DESIGN.md` -- project vision and current status
74
74
  2. `broadchurch.yaml` -- project config (name, gateway URL, etc.)
75
75
  3. **The `api` cursor rule** -- this is critical. It describes the Query Server, the platform's primary data source. Build against platform APIs, not external sources.
76
- 4. The **elemental-api skill docs** in `skills/elemental-api/` -- start with `SKILL.md` for API overview, then `entities.md`, `schema.md`, etc.
76
+ 4. **`.cursor/skills/`** Each subdirectory is one skill. List them, open each skill’s entry (usually `SKILL.md`) and follow its structure to learn what is documented (APIs, schemas, helpers, etc.).
77
77
  5. `.cursor/rules/` -- scan rule names to know what other patterns are available
78
78
 
79
- **Important: Use the platform's data.** This app runs on the Lovelace platform, which provides a Query Server with entities, news, filings, sentiment, relationships, events, and more. Read the `api` rule and the skill docs to understand what data is available. Use `getSchema()` to discover entity types and properties at runtime.
79
+ **Important: Use the platform's data.** This app runs on the Lovelace platform, which provides a Query Server with entities, news, filings, sentiment, relationships, events, and more. Read the `api` rule and the skills under `.cursor/skills/` to understand what data is available. Use `getSchema()` to discover entity types and properties at runtime.
80
80
 
81
81
  Key capabilities:
82
82
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yottagraph-app/aether-instructions",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Cursor rules, commands, and skills for Aether development",
5
5
  "files": [
6
6
  "rules",
package/rules/aether.mdc CHANGED
@@ -8,7 +8,7 @@ alwaysApply: true
8
8
 
9
9
  **Structure:** `pages/` (file-based routing), `components/`, `composables/`, `server/api/`, `agents/` (Python ADK), `mcp-servers/` (Python FastMCP).
10
10
 
11
- **Data:** The Query Server (Elemental API) is the primary data source -- entities, news, filings, sentiment, relationships, events. Use `useElementalClient()` from `@yottagraph-app/elemental-api/client`. Do NOT call external APIs for data the platform provides. Discovery-first: use `getSchema()` to discover entity types and properties at runtime. Skill docs in `skills/elemental-api/` (run `npm install` if empty). Lovelace MCP servers may also be configured (see `api` rule) but are optional — check your tool list before assuming they're available.
11
+ **Data:** The Query Server (Elemental API) is the primary data source -- entities, news, filings, sentiment, relationships, events. Use `useElementalClient()` from `@yottagraph-app/elemental-api/client`. Do NOT call external APIs for data the platform provides. Discovery-first: use `getSchema()` to discover entity types and properties at runtime. Skill docs: `skills/elemental-api/` (API endpoints) and `skills/data-model/` (Lovelace entity types, properties, relationships, YAML schemas per fetch source; `SKILL.md` first). Run `npm install` if those directories are empty. Lovelace MCP servers may also be configured (see `api` rule) but are optional — check your tool list before assuming they're available.
12
12
 
13
13
  **Storage:** KV (Upstash Redis) for preferences and lightweight state via `Pref<T>` from `usePrefsStore()`. Supabase for relational data if connected (check `.env`).
14
14
 
package/rules/api.mdc CHANGED
@@ -16,21 +16,16 @@ regularly — use the discovery-first pattern to find what's available.
16
16
 
17
17
  ## Skill Documentation
18
18
 
19
- For full endpoint documentation, read the **elemental-api skill** in
20
- `skills/elemental-api/`. Start with `SKILL.md`, then `overview.md`.
21
- These files are copied from `@yottagraph-app/elemental-api-skill` during
22
- `npm install` (postinstall step) — if the directory is empty, run
23
- `npm install` first. The skill docs contain detailed response shapes and
24
- edge cases that go beyond this rule's quick reference **run `npm install`
25
- early** to make them available during initial exploration.
26
-
27
- Key files:
28
- - `entities.md` entity search, details, and properties
29
- - `find.md` — expression language for searching by type, property, and relationships
30
- - `schema.md` — entity types (flavors), properties (PIDs), and schema endpoints
31
- - `relationships.md` — entity connections
32
- - `events.md` — events involving entities
33
- - `articles.md` — news mentions and article content
19
+ For endpoint reference, response shapes, and edge cases, **read the
20
+ elemental-api skill** in `skills/elemental-api/` (start with `SKILL.md` and
21
+ follow the skill’s own structure). Files are copied from
22
+ `@yottagraph-app/elemental-api-skill` during `npm install` (see
23
+ `skill-packages.json`); if the directory is empty, run `npm install` first —
24
+ **run it early** during initial exploration so the skill is available.
25
+
26
+ ## Data model skill
27
+
28
+ For Lovelace **entity types, properties, relationships, and per-source schemas** (EDGAR, FRED, FDIC, etc.), read the **data-model skill** in `skills/data-model/`. Start with `SKILL.md`, then `overview.md` and the source-specific folders. These files are copied from `@yottagraph-app/data-model-skill` during `npm install` (same postinstall; both skills are listed in `skill-packages.json`).
34
29
 
35
30
  ## Client Usage
36
31