@dallay/agentsync 1.14.5 → 1.20.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.
Files changed (2) hide show
  1. package/README.md +56 -4
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![license](https://img.shields.io/npm/l/@dallay/agentsync.svg)](https://github.com/dallay/agentsync/blob/main/LICENSE)
5
5
  [![repository](https://img.shields.io/badge/repo-dallay%2Fagentsync-blue)](https://github.com/dallay/agentsync)
6
6
 
7
- **Version:** 1.14.2
7
+ **Version:** 1.19.0
8
8
  **License:** MIT
9
9
 
10
10
  Effortlessly synchronize AI agent configurations across tools like Copilot, Claude, Cursor, and other MCP-compatible servers using symbolic links and an intuitive CLI.
@@ -16,7 +16,8 @@ Effortlessly synchronize AI agent configurations across tools like Copilot, Clau
16
16
  ## ✨ Key Features
17
17
 
18
18
  - **Simple CLI**: Manage symbolic links with minimal setup.
19
- - **Multi-assistant support**: Compatible across Copilot, Claude, Gemini, and more.
19
+ - **Multi-assistant support**: Compatible across Copilot, Claude, Gemini, Cursor, VS Code and OpenCode.
20
+ See the full list and file locations in the main documentation: https://dallay.github.io/agentsync/ (or the repo README).
20
21
  - **Cross-platform binaries**: Available for Linux, MacOS, and Windows.
21
22
  - **Node.js integration**: Use programmatically within your applications.
22
23
 
@@ -27,26 +28,31 @@ Effortlessly synchronize AI agent configurations across tools like Copilot, Clau
27
28
  Make sure you have Node.js (>=18) installed.
28
29
 
29
30
  ### Using `pnpm` (recommended):
31
+
30
32
  ```bash
31
33
  pnpm install -g @dallay/agentsync
32
34
  ```
33
35
 
34
36
  ### Using `npm`:
37
+
35
38
  ```bash
36
39
  npm install -g @dallay/agentsync
37
40
  ```
38
41
 
39
42
  ### Using `yarn`:
43
+
40
44
  ```bash
41
45
  yarn global add @dallay/agentsync
42
46
  ```
43
47
 
44
48
  ### Using `bun`:
49
+
45
50
  ```bash
46
51
  bun add -g @dallay/agentsync
47
52
  ```
48
53
 
49
54
  Verify installation:
55
+
50
56
  ```bash
51
57
  agentsync --help
52
58
  ```
@@ -58,13 +64,17 @@ agentsync --help
58
64
  ### Managing Configurations
59
65
 
60
66
  #### Sync Configurations:
67
+
61
68
  Run the following to create symbolic links across your AI coding assistants:
69
+
62
70
  ```bash
63
71
  agentsync apply
64
72
  ```
65
73
 
66
74
  #### Clean Configurations:
75
+
67
76
  Remove previously created symbolic links:
77
+
68
78
  ```bash
69
79
  agentsync clean
70
80
  ```
@@ -72,6 +82,7 @@ agentsync clean
72
82
  🎯 **Example Workflows**:
73
83
 
74
84
  - **Programmatic Usage in Node.js**:
85
+
75
86
  ```javascript
76
87
  const { main } = require('@dallay/agentsync');
77
88
 
@@ -84,6 +95,7 @@ agentsync clean
84
95
  - **Integrate with npm scripts**:
85
96
  Add configuration syncing to your npm scripts to automate process workflows.
86
97
  For example, in your `package.json`:
98
+
87
99
  ```json
88
100
  {
89
101
  "scripts": {
@@ -95,36 +107,76 @@ agentsync clean
95
107
 
96
108
  - For complex workflows, see the [detailed API documentation](https://dallay.github.io/agentsync/).
97
109
 
110
+ ## MCP & Skills
111
+
112
+ - 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).
113
+ - Skills live under `.agents/skills/` in the project. See the repository README for an example SKILL.md path and the `specs/001-skills-sh-integration` directory for ongoing work around skills integrations.
114
+
98
115
  ---
99
116
 
100
117
  ## 👷 Development
101
118
 
119
+ This package is part of the [AgentSync mono-repo](https://github.com/dallay/agentsync). It serves as a Node.js wrapper for the high-performance Rust core.
120
+
102
121
  ### Prerequisites
122
+
103
123
  - [pnpm](https://pnpm.io/): Dependency manager.
104
- - [Node.js](https://nodejs.org/) >= 18.
124
+ - [Node.js](https://nodejs.org/) >= 24.13.0 (for development).
125
+ - [Rust](https://www.rust-lang.org/): For building the core CLI.
105
126
 
106
127
  ### Steps
128
+
107
129
  1. Clone the repository:
130
+
108
131
  ```bash
109
132
  git clone https://github.com/dallay/agentsync.git
110
133
  cd agentsync
111
134
  ```
112
135
 
113
136
  2. Install dependencies:
137
+
114
138
  ```bash
115
139
  pnpm install
116
140
  ```
117
141
 
118
142
  3. Build:
143
+
119
144
  ```bash
145
+ make js-build
146
+ # or
120
147
  pnpm run build
121
148
  ```
122
149
 
123
- 4. Run type checks:
150
+ 4. Run tests and type checks:
151
+
124
152
  ```bash
153
+ make js-test
154
+ # or
125
155
  pnpm run typecheck
126
156
  ```
127
157
 
158
+ 5. Format:
159
+
160
+ ```bash
161
+ make fmt
162
+ ```
163
+
164
+ ---
165
+
166
+ ## 🛠️ Troubleshooting
167
+
168
+ ### `PNPM_NO_MATURE_MATCHING_VERSION`
169
+
170
+ If `pnpm install` fails with this error, it's likely due to a strict package release age policy. You can try installing with `--ignore-scripts` or wait for the package to "mature" in the registry.
171
+
172
+ ### Lefthook installation failure
173
+
174
+ If `pnpm install` fails during the `lefthook` setup, you can try:
175
+
176
+ ```bash
177
+ pnpm install --ignore-scripts
178
+ ```
179
+
128
180
  ---
129
181
 
130
182
  ## 🌐 Resources
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dallay/agentsync",
3
- "version": "1.14.5",
3
+ "version": "1.20.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.14.5",
45
- "@dallay/agentsync-linux-arm64": "1.14.5",
46
- "@dallay/agentsync-darwin-x64": "1.14.5",
47
- "@dallay/agentsync-darwin-arm64": "1.14.5",
48
- "@dallay/agentsync-windows-x64": "1.14.5",
49
- "@dallay/agentsync-windows-arm64": "1.14.5"
44
+ "@dallay/agentsync-linux-x64": "1.20.0",
45
+ "@dallay/agentsync-linux-arm64": "1.20.0",
46
+ "@dallay/agentsync-darwin-x64": "1.20.0",
47
+ "@dallay/agentsync-darwin-arm64": "1.20.0",
48
+ "@dallay/agentsync-windows-x64": "1.20.0",
49
+ "@dallay/agentsync-windows-arm64": "1.20.0"
50
50
  },
51
51
  "engines": {
52
52
  "node": ">=18"