@neuraparse/synaptik 0.1.1 → 0.1.2
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 +8 -0
- package/dist/cli.js +18070 -8665
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -14,12 +14,20 @@ public open-source repository.
|
|
|
14
14
|
|
|
15
15
|
## Install
|
|
16
16
|
|
|
17
|
+
Install Synaptik globally:
|
|
18
|
+
|
|
17
19
|
```bash
|
|
18
20
|
npm install -g @neuraparse/synaptik
|
|
19
21
|
```
|
|
20
22
|
|
|
21
23
|
This installs the `synaptik` and `syn` commands globally.
|
|
22
24
|
|
|
25
|
+
If you install the package locally instead of globally, run it with:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx @neuraparse/synaptik
|
|
29
|
+
```
|
|
30
|
+
|
|
23
31
|
## What Synaptik Does
|
|
24
32
|
|
|
25
33
|
- Works across multiple AI providers in one coding workflow
|