@neuraparse/synaptik 0.1.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 +52 -0
- package/dist/cli.js +80983 -0
- package/package.json +57 -0
package/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Synaptik
|
|
2
|
+
|
|
3
|
+
Provider-agnostic, Bun-first coding runtime.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
Planned npm package target:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @neuraparse/synaptik
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
This installs the `synaptik` and `syn` commands globally.
|
|
14
|
+
|
|
15
|
+
## Commands
|
|
16
|
+
|
|
17
|
+
- `bun run start`
|
|
18
|
+
- `bun run dev`
|
|
19
|
+
- `bun run build`
|
|
20
|
+
- `bun test`
|
|
21
|
+
- `bun run src/index.tsx doctor`
|
|
22
|
+
- `bun run src/index.tsx auth status`
|
|
23
|
+
- `bun run src/index.tsx auth login claude-code`
|
|
24
|
+
- `bun run src/index.tsx auth login codex-cli`
|
|
25
|
+
- `synaptik`
|
|
26
|
+
- `syn`
|
|
27
|
+
|
|
28
|
+
## Publish Readiness
|
|
29
|
+
|
|
30
|
+
- package name prepared for scoped publish: `@neuraparse/synaptik`
|
|
31
|
+
- unscoped `synaptik` is already taken on npm
|
|
32
|
+
- `prepublishOnly` runs typecheck, tests, and build before publish
|
|
33
|
+
- package payload is limited to `dist/` and `README.md`
|
|
34
|
+
|
|
35
|
+
## Config
|
|
36
|
+
|
|
37
|
+
Global config path: `~/.synaptik/config.json`
|
|
38
|
+
|
|
39
|
+
Project config path: `.synaptik.json`
|
|
40
|
+
|
|
41
|
+
Legacy compatibility:
|
|
42
|
+
|
|
43
|
+
- `~/.synaptik-mvp/config.json` is still read as a fallback
|
|
44
|
+
- `.synaptik-mvp.json` is still read as a fallback
|
|
45
|
+
- `synaptik-mvp` and `synmvp` remain available as aliases
|
|
46
|
+
|
|
47
|
+
## Provider Modes
|
|
48
|
+
|
|
49
|
+
- `anthropic`: direct API key flow
|
|
50
|
+
- `openai-compatible`: direct API key flow
|
|
51
|
+
- `claude-code`: account-backed bridge via official `claude` CLI
|
|
52
|
+
- `codex-cli`: account-backed bridge via official `codex` CLI
|