@ornexus/synapse-cli 4.2.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/.env.example +18 -0
- package/LICENSE +127 -0
- package/README.md +662 -0
- package/install.js +323 -0
- package/package.json +111 -0
- package/sync-version.js +186 -0
package/.env.example
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Synapse CLI Configuration
|
|
2
|
+
# Copy this file to .env and fill in the values
|
|
3
|
+
|
|
4
|
+
# ── Build Security ───────────────────────────────────────────────────────────
|
|
5
|
+
# Required for production/CI builds (prompt obfuscation key).
|
|
6
|
+
# Generate with: openssl rand -hex 32
|
|
7
|
+
# In development, a default test key is used automatically.
|
|
8
|
+
BUILD_SECRET=
|
|
9
|
+
|
|
10
|
+
# ── MCP Configuration ────────────────────────────────────────────────────────
|
|
11
|
+
# Context7 MCP API Key (optional - for enhanced documentation lookups)
|
|
12
|
+
CONTEXT7_API_KEY=your_context7_api_key_here
|
|
13
|
+
|
|
14
|
+
# Health check timeout in milliseconds (default: 2000ms)
|
|
15
|
+
MCP_HEALTH_CHECK_TIMEOUT=2000
|
|
16
|
+
|
|
17
|
+
# Cache TTL for MCP status in seconds (default: 300s = 5 minutes)
|
|
18
|
+
MCP_CACHE_TTL=300
|
package/LICENSE
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
Functional Source License, Version 1.1, MIT Future License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 OrNexus AI
|
|
4
|
+
|
|
5
|
+
Parameters
|
|
6
|
+
|
|
7
|
+
Licensor: OrNexus AI
|
|
8
|
+
Licensed Work: Synapse CLI
|
|
9
|
+
The Licensed Work is (c) 2026 OrNexus AI.
|
|
10
|
+
Additional Use Grant: You may make production use of the Licensed Work,
|
|
11
|
+
provided such use does not include offering the
|
|
12
|
+
Licensed Work to third parties on a hosted or
|
|
13
|
+
embedded basis in a manner that competes with
|
|
14
|
+
OrNexus AI's paid products or services.
|
|
15
|
+
Change Date: February 20, 2029
|
|
16
|
+
Change License: MIT
|
|
17
|
+
|
|
18
|
+
Notice
|
|
19
|
+
|
|
20
|
+
The Functional Source License, Version 1.1 (this document, or the "License")
|
|
21
|
+
is not an Open Source license. However, the Licensed Work will eventually be
|
|
22
|
+
made available under an Open Source license, as stated in this License.
|
|
23
|
+
|
|
24
|
+
License Terms
|
|
25
|
+
|
|
26
|
+
1. Grant of Rights
|
|
27
|
+
|
|
28
|
+
(a) Subject to the terms and conditions of this License, the Licensor
|
|
29
|
+
hereby grants you a non-exclusive, worldwide, non-transferable,
|
|
30
|
+
non-sublicensable license to use, copy, modify, and distribute the
|
|
31
|
+
Licensed Work for any Permitted Purpose.
|
|
32
|
+
|
|
33
|
+
(b) "Permitted Purpose" means any purpose other than a Competing Use.
|
|
34
|
+
|
|
35
|
+
(c) "Competing Use" means making the Licensed Work available to third
|
|
36
|
+
parties on a hosted or embedded basis as a commercial offering that
|
|
37
|
+
competes with the Licensor's paid products or services that include
|
|
38
|
+
the Licensed Work.
|
|
39
|
+
|
|
40
|
+
2. Limitations
|
|
41
|
+
|
|
42
|
+
You may not move, change, disable, or circumvent the license key
|
|
43
|
+
functionality in the Licensed Work, and you may not remove or
|
|
44
|
+
obscure any functionality in the Licensed Work that is protected
|
|
45
|
+
by the license key.
|
|
46
|
+
|
|
47
|
+
3. Patents
|
|
48
|
+
|
|
49
|
+
The Licensor grants you a license, under any patent claims the Licensor
|
|
50
|
+
can license or becomes able to license, to make, have made, use, sell,
|
|
51
|
+
offer for sale, import and have imported the Licensed Work, in each case
|
|
52
|
+
subject to the limitations and conditions in this License. This patent
|
|
53
|
+
license applies only to those patent claims licensable by the Licensor
|
|
54
|
+
that are necessarily infringed by the Licensed Work. If you institute
|
|
55
|
+
patent litigation against any entity (including a cross-claim or
|
|
56
|
+
counterclaim in a lawsuit) alleging that the Licensed Work constitutes
|
|
57
|
+
direct or contributory patent infringement, then any patent licenses
|
|
58
|
+
granted to you under this License shall terminate as of the date such
|
|
59
|
+
litigation is filed.
|
|
60
|
+
|
|
61
|
+
4. Redistribution
|
|
62
|
+
|
|
63
|
+
You may redistribute copies of the Licensed Work, provided that:
|
|
64
|
+
|
|
65
|
+
(a) Each copy includes a copy of this License; and
|
|
66
|
+
|
|
67
|
+
(b) Each copy clearly states the Licensed Work's copyright notice; and
|
|
68
|
+
|
|
69
|
+
(c) You do not alter or remove the license key functionality.
|
|
70
|
+
|
|
71
|
+
5. Disclaimer of Warranty
|
|
72
|
+
|
|
73
|
+
THE LICENSED WORK IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
74
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
75
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
76
|
+
IN NO EVENT SHALL THE LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
77
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
78
|
+
FROM, OUT OF OR IN CONNECTION WITH THE LICENSED WORK OR THE USE OR
|
|
79
|
+
OTHER DEALINGS IN THE LICENSED WORK.
|
|
80
|
+
|
|
81
|
+
6. Termination
|
|
82
|
+
|
|
83
|
+
If you violate the terms of this License, your rights will terminate
|
|
84
|
+
automatically and will not be reinstated without the prior written
|
|
85
|
+
consent of the Licensor. Any such violation may also be enforced by
|
|
86
|
+
the Licensor.
|
|
87
|
+
|
|
88
|
+
Change License after Change Date
|
|
89
|
+
|
|
90
|
+
Effective on the Change Date, or the fourth anniversary of the first
|
|
91
|
+
publicly available distribution of a specific version of the Licensed Work
|
|
92
|
+
under this License, whichever comes first, the Licensor hereby grants you
|
|
93
|
+
rights under the terms of the Change License, and the rights granted under
|
|
94
|
+
this License will terminate.
|
|
95
|
+
|
|
96
|
+
The Change License is: MIT License
|
|
97
|
+
|
|
98
|
+
On and after the Change Date, the Licensed Work will be provided under
|
|
99
|
+
the following license:
|
|
100
|
+
|
|
101
|
+
MIT License
|
|
102
|
+
|
|
103
|
+
Copyright (c) 2026 OrNexus AI
|
|
104
|
+
|
|
105
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
106
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
107
|
+
in the Software without restriction, including without limitation the rights
|
|
108
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
109
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
110
|
+
furnished to do so, subject to the following conditions:
|
|
111
|
+
|
|
112
|
+
The above copyright notice and this permission notice shall be included in all
|
|
113
|
+
copies or substantial portions of the Software.
|
|
114
|
+
|
|
115
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
116
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
117
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
118
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
119
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
120
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
121
|
+
SOFTWARE.
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
For more information about the Functional Source License, visit:
|
|
126
|
+
https://fsl.software/
|
|
127
|
+
https://fair.io/
|