@dallay/agentsync 1.35.0 → 1.37.0
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/README.md +7 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -68,6 +68,10 @@ Run the following to create symbolic links across your AI coding assistants:
|
|
|
68
68
|
agentsync apply
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
+
AgentSync defaults to managed `.gitignore` mode (`[gitignore].enabled = true`), which is the recommended starting point for most teams. If your team intentionally wants to commit AgentSync-managed destinations, treat `[gitignore].enabled = false` as an opt-out workflow instead of a new default. Full guide: https://dallay.github.io/agentsync/guides/gitignore-team-workflows/
|
|
72
|
+
|
|
73
|
+
Running from Windows? Use the setup guide for native symlink prerequisites, WSL as an optional lower-friction path, and verification steps: https://dallay.github.io/agentsync/guides/windows-symlink-setup/
|
|
74
|
+
|
|
71
75
|
#### Clean Configurations:
|
|
72
76
|
|
|
73
77
|
Remove previously created symbolic links:
|
|
@@ -98,10 +102,12 @@ agentsync clean
|
|
|
98
102
|
"scripts": {
|
|
99
103
|
"precommit": "pnpm exec agentsync apply --dry-run",
|
|
100
104
|
"prepare": "pnpm exec agentsync apply"
|
|
101
|
-
|
|
105
|
+
}
|
|
102
106
|
}
|
|
103
107
|
```
|
|
104
108
|
|
|
109
|
+
If your team also wants `agentsync apply` to run after branch switches, merges, or rebases, see the Git hook automation guide for Lefthook, Husky, `simple-git-hooks`, and native Git hook examples: https://dallay.github.io/agentsync/guides/git-hook-automation/
|
|
110
|
+
|
|
105
111
|
- For complex workflows, see the [detailed API documentation](https://dallay.github.io/agentsync/).
|
|
106
112
|
|
|
107
113
|
## MCP & Skills
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dallay/agentsync",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.37.0",
|
|
4
4
|
"description": "A fast CLI tool to sync AI agent configurations and MCP servers across Claude, Copilot, Cursor, and more using symbolic links.",
|
|
5
5
|
"author": "Yuniel Acosta <yunielacosta738@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"lib"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@types/node": "^
|
|
41
|
-
"typescript": "^
|
|
40
|
+
"@types/node": "^25.5.0",
|
|
41
|
+
"typescript": "^6.0.0"
|
|
42
42
|
},
|
|
43
43
|
"optionalDependencies": {
|
|
44
|
-
"@dallay/agentsync-
|
|
45
|
-
"@dallay/agentsync-
|
|
46
|
-
"@dallay/agentsync-
|
|
47
|
-
"@dallay/agentsync-
|
|
48
|
-
"@dallay/agentsync-windows-
|
|
49
|
-
"@dallay/agentsync-windows-
|
|
44
|
+
"@dallay/agentsync-darwin-arm64": "1.37.0",
|
|
45
|
+
"@dallay/agentsync-darwin-x64": "1.37.0",
|
|
46
|
+
"@dallay/agentsync-linux-arm64": "1.37.0",
|
|
47
|
+
"@dallay/agentsync-linux-x64": "1.37.0",
|
|
48
|
+
"@dallay/agentsync-windows-arm64": "1.37.0",
|
|
49
|
+
"@dallay/agentsync-windows-x64": "1.37.0"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=18"
|