@yottagraph-app/aether-instructions 1.1.11 → 1.1.13

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yottagraph-app/aether-instructions",
3
- "version": "1.1.11",
3
+ "version": "1.1.13",
4
4
  "description": "Cursor rules, commands, and skills for Aether development",
5
5
  "files": [
6
6
  "rules",
package/rules/design.mdc CHANGED
@@ -32,7 +32,7 @@ asks to keep specific parts.
32
32
 
33
33
  If `DESIGN.md` has a `## Vision` section, it contains the project creator's original description of what they want to build — written during project setup in the Broadchurch Portal.
34
34
 
35
- When a user opens the project for the first time and hasn't started building yet (the `## Status` section says "Run `/build-my-app`"), suggest running that command. If they ask "what should I build?" or similar, read the Vision section of DESIGN.md first.
35
+ When a user opens the project for the first time and hasn't started building yet (the `## Status` section says "Run `/build_my_app`"), suggest running that command. If they ask "what should I build?" or similar, read the Vision section of DESIGN.md first.
36
36
 
37
37
  # Feature docs
38
38
 
@@ -13,10 +13,7 @@ const FORM_ENCODED_ENDPOINTS = ['/elemental/find', '/elemental/entities/properti
13
13
 
14
14
  function loadEnvFile() {
15
15
  // Try current working directory first (project .env), then script directory
16
- const envPaths = [
17
- path.join(process.cwd(), '.env'),
18
- path.join(__dirname, '.env'),
19
- ];
16
+ const envPaths = [path.join(process.cwd(), '.env'), path.join(__dirname, '.env')];
20
17
 
21
18
  for (const envPath of envPaths) {
22
19
  try {