@synapsync/cli 0.1.7 → 0.1.10
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 +17 -23
- package/dist/index.js +687 -661
- package/dist/index.js.map +1 -1
- package/package.json +18 -18
package/README.md
CHANGED
|
@@ -47,11 +47,11 @@ npx @synapsync/cli
|
|
|
47
47
|
# Initialize a new project
|
|
48
48
|
synapsync init
|
|
49
49
|
|
|
50
|
-
#
|
|
51
|
-
synapsync
|
|
50
|
+
# Browse available cognitives
|
|
51
|
+
synapsync list --remote
|
|
52
52
|
|
|
53
|
-
#
|
|
54
|
-
synapsync
|
|
53
|
+
# Add a cognitive
|
|
54
|
+
synapsync add code-reviewer
|
|
55
55
|
|
|
56
56
|
# List installed cognitives
|
|
57
57
|
synapsync list
|
|
@@ -85,9 +85,9 @@ synapsync sync
|
|
|
85
85
|
|
|
86
86
|
| Command | Description |
|
|
87
87
|
| ------------------------------ | ------------------------------------- |
|
|
88
|
-
| `synapsync
|
|
89
|
-
| `synapsync install <source>` | Install a cognitive |
|
|
88
|
+
| `synapsync add <source>` | Add a cognitive from registry or path |
|
|
90
89
|
| `synapsync list` | List installed cognitives |
|
|
90
|
+
| `synapsync list --remote` | Browse all cognitives in the registry |
|
|
91
91
|
| `synapsync uninstall <name>` | Uninstall a cognitive |
|
|
92
92
|
| `synapsync update [cognitive]` | Update cognitives to latest versions |
|
|
93
93
|
| `synapsync update --all` | Update all cognitives |
|
|
@@ -116,10 +116,9 @@ synapsync sync
|
|
|
116
116
|
| ----------------------------- | -------------------------------- |
|
|
117
117
|
| `synapsync help [command]` | Display help for a command |
|
|
118
118
|
| `synapsync version` | Show version information |
|
|
119
|
-
| `synapsync version --check` | Check for updates |
|
|
120
119
|
| `synapsync info` | Show SynapSync concepts |
|
|
121
120
|
| `synapsync info --cognitives` | Learn about cognitive types |
|
|
122
|
-
| `synapsync info --
|
|
121
|
+
| `synapsync info --add` | Learn about installation sources |
|
|
123
122
|
| `synapsync info --providers` | Learn about supported providers |
|
|
124
123
|
|
|
125
124
|
## Installation Sources
|
|
@@ -128,22 +127,16 @@ SynapSync supports multiple installation sources:
|
|
|
128
127
|
|
|
129
128
|
```bash
|
|
130
129
|
# From registry
|
|
131
|
-
synapsync
|
|
130
|
+
synapsync add code-reviewer
|
|
132
131
|
|
|
133
132
|
# From local path
|
|
134
|
-
synapsync
|
|
133
|
+
synapsync add ./my-cognitive
|
|
135
134
|
|
|
136
135
|
# From GitHub (shorthand)
|
|
137
|
-
synapsync
|
|
138
|
-
|
|
139
|
-
# From GitHub with path
|
|
140
|
-
synapsync install github:user/repo/cognitives/skill
|
|
141
|
-
|
|
142
|
-
# From GitHub with branch
|
|
143
|
-
synapsync install github:user/repo#develop
|
|
136
|
+
synapsync add github:user/repo
|
|
144
137
|
|
|
145
138
|
# From GitHub URL
|
|
146
|
-
synapsync
|
|
139
|
+
synapsync add https://github.com/user/repo
|
|
147
140
|
```
|
|
148
141
|
|
|
149
142
|
## Cognitive Types
|
|
@@ -184,6 +177,7 @@ your-project/
|
|
|
184
177
|
| Claude | ✅ Supported | `.claude/commands/` |
|
|
185
178
|
| Cursor | ✅ Supported | `.cursor/` |
|
|
186
179
|
| OpenAI | ✅ Supported | `.openai/` |
|
|
180
|
+
| Windsurf | ✅ Supported | `.windsurf/` |
|
|
187
181
|
| Gemini | 🔜 Planned | `.gemini/` |
|
|
188
182
|
| Copilot | 🔜 Planned | `.github/copilot/` |
|
|
189
183
|
|
|
@@ -267,8 +261,8 @@ synapsync --verbose <command>
|
|
|
267
261
|
|
|
268
262
|
```bash
|
|
269
263
|
# Clone the repository
|
|
270
|
-
git clone https://github.com/
|
|
271
|
-
cd cli
|
|
264
|
+
git clone https://github.com/SynapSync/synapse-cli.git
|
|
265
|
+
cd synapse-cli
|
|
272
266
|
|
|
273
267
|
# Install dependencies
|
|
274
268
|
npm install
|
|
@@ -292,7 +286,7 @@ MIT License - see [LICENSE](LICENSE) for details.
|
|
|
292
286
|
|
|
293
287
|
## Links
|
|
294
288
|
|
|
295
|
-
- [Documentation](https://synapsync.github.io/synapse-
|
|
289
|
+
- [Documentation](https://synapsync.github.io/synapse-cli/)
|
|
296
290
|
- [Registry](https://registry.synapsync.dev)
|
|
297
|
-
- [GitHub](https://github.com/
|
|
298
|
-
- [Issues](https://github.com/
|
|
291
|
+
- [GitHub](https://github.com/SynapSync/synapse-cli)
|
|
292
|
+
- [Issues](https://github.com/SynapSync/synapse-cli/issues)
|