@yottagraph-app/aether-instructions 1.1.45 → 1.1.46

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.
@@ -50,10 +50,12 @@ elif [ -d .cursor ]; then
50
50
  echo "Migrated .cursor/ → .agents/"
51
51
  fi
52
52
 
53
- # Create symlinks if absent
54
- [ -e .cursor ] || ln -s .agents .cursor
55
- [ -e .claude ] || ln -s .agents .claude
56
- [ -e .mcp.json ] || ln -s .agents/mcp.json .mcp.json
53
+ # Create symlinks if absent. Test -L first so a symlink with a not-yet-created
54
+ # target (e.g. .mcp.json -> .agents/mcp.json before init populates it) doesn't
55
+ # trigger an `ln: File exists` error. Plain -e follows symlinks.
56
+ [ -L .cursor ] || [ -e .cursor ] || ln -s .agents .cursor
57
+ [ -L .claude ] || [ -e .claude ] || ln -s .agents .claude
58
+ [ -L .mcp.json ] || [ -e .mcp.json ] || ln -s .agents/mcp.json .mcp.json
57
59
  ```
58
60
 
59
61
  Report to user:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yottagraph-app/aether-instructions",
3
- "version": "1.1.45",
3
+ "version": "1.1.46",
4
4
  "description": "Cursor commands and skills for Aether development",
5
5
  "files": [
6
6
  "commands",