@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
|
-
|
|
55
|
-
|
|
56
|
-
[ -e .
|
|
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:
|