@dallay/agentsync 1.28.0 → 1.30.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 +3 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Effortlessly synchronize AI agent configurations across tools like Copilot, Clau
|
|
|
13
13
|
## ✨ Key Features
|
|
14
14
|
|
|
15
15
|
- **Simple CLI**: Manage symbolic links with minimal setup.
|
|
16
|
-
- **Multi-assistant support**: Compatible across Copilot, Claude, Gemini, Cursor, VS Code and
|
|
16
|
+
- **Multi-assistant support**: Compatible across Copilot, Claude, Gemini, Cursor, VS Code, OpenCode and 25+ more assistants.
|
|
17
17
|
See the full list and file locations in the main documentation: https://dallay.github.io/agentsync/ (or the repo README).
|
|
18
18
|
- **Cross-platform binaries**: Available for Linux, MacOS, and Windows.
|
|
19
19
|
- **Node.js integration**: Use programmatically within your applications.
|
|
@@ -107,7 +107,7 @@ agentsync clean
|
|
|
107
107
|
## MCP & Skills
|
|
108
108
|
|
|
109
109
|
- AgentSync supports MCP generation for multiple agents (Claude, Copilot, Gemini, Cursor, VS Code, OpenCode). The canonical list and file locations live in the repo README and in the docs site (guides/mcp).
|
|
110
|
-
- Skills live under `.agents/skills/` in the project.
|
|
110
|
+
- Skills live under `.agents/skills/` in the project.
|
|
111
111
|
|
|
112
112
|
---
|
|
113
113
|
|
|
@@ -118,7 +118,7 @@ This package is part of the [AgentSync mono-repo](https://github.com/dallay/agen
|
|
|
118
118
|
### Prerequisites
|
|
119
119
|
|
|
120
120
|
- [pnpm](https://pnpm.io/): Dependency manager.
|
|
121
|
-
- [Node.js](https://nodejs.org/) >=
|
|
121
|
+
- [Node.js](https://nodejs.org/) >= 22.22.0 (for development).
|
|
122
122
|
- [Rust](https://www.rust-lang.org/): For building the core CLI.
|
|
123
123
|
|
|
124
124
|
### Steps
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dallay/agentsync",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.30.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",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"typescript": "^5.9.3"
|
|
42
42
|
},
|
|
43
43
|
"optionalDependencies": {
|
|
44
|
-
"@dallay/agentsync-linux-x64": "1.
|
|
45
|
-
"@dallay/agentsync-linux-arm64": "1.
|
|
46
|
-
"@dallay/agentsync-darwin-x64": "1.
|
|
47
|
-
"@dallay/agentsync-darwin-arm64": "1.
|
|
48
|
-
"@dallay/agentsync-windows-x64": "1.
|
|
49
|
-
"@dallay/agentsync-windows-arm64": "1.
|
|
44
|
+
"@dallay/agentsync-linux-x64": "1.30.0",
|
|
45
|
+
"@dallay/agentsync-linux-arm64": "1.30.0",
|
|
46
|
+
"@dallay/agentsync-darwin-x64": "1.30.0",
|
|
47
|
+
"@dallay/agentsync-darwin-arm64": "1.30.0",
|
|
48
|
+
"@dallay/agentsync-windows-x64": "1.30.0",
|
|
49
|
+
"@dallay/agentsync-windows-arm64": "1.30.0"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=18"
|