@synapsync/cli 0.1.9 → 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 CHANGED
@@ -47,11 +47,11 @@ npx @synapsync/cli
47
47
  # Initialize a new project
48
48
  synapsync init
49
49
 
50
- # Search for cognitives
51
- synapsync search code review
50
+ # Browse available cognitives
51
+ synapsync list --remote
52
52
 
53
- # Install a cognitive
54
- synapsync install code-reviewer
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 search [query]` | Search for cognitives in the registry |
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 --install` | Learn about installation sources |
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 install code-reviewer
130
+ synapsync add code-reviewer
132
131
 
133
132
  # From local path
134
- synapsync install ./my-cognitive
133
+ synapsync add ./my-cognitive
135
134
 
136
135
  # From GitHub (shorthand)
137
- synapsync install github:user/repo
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 install https://github.com/user/repo
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