@skylence-ai/skyline-linux-arm64 1.0.62 → 1.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/LICENSE.md +175 -0
- package/README.md +3 -1
- package/package.json +7 -5
- package/skyline +0 -0
- package/skylore +0 -0
- package/skyrift +0 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
# skyline Beta License Agreement
|
|
2
|
+
|
|
3
|
+
**Licensor:** skylence-be ("skylence", "we")
|
|
4
|
+
**Software:** the skyline binary, its installers, and the npm packages that
|
|
5
|
+
distribute it
|
|
6
|
+
**Version of these terms:** identified by the content hash of this file
|
|
7
|
+
|
|
8
|
+
skyline is licensed, not sold, and this beta is by invitation. Read this before
|
|
9
|
+
you activate. If you do not agree with it, do not activate the software, and
|
|
10
|
+
delete the copies you hold.
|
|
11
|
+
|
|
12
|
+
## 1. Your license
|
|
13
|
+
|
|
14
|
+
While you hold an activation key we issued to you, and that key has not been
|
|
15
|
+
revoked, skylence grants you a personal, non-exclusive, non-transferable,
|
|
16
|
+
revocable license to install and run the software, in binary form, on machines
|
|
17
|
+
you own or control, for your own work.
|
|
18
|
+
|
|
19
|
+
That is the whole grant. It is conditional on the key, on your acceptance under
|
|
20
|
+
section 2, and on you staying within section 3. It gives you no rights to the
|
|
21
|
+
source code, and it transfers ownership of nothing.
|
|
22
|
+
|
|
23
|
+
## 2. Acceptance
|
|
24
|
+
|
|
25
|
+
You accept these terms by running `skyline license accept`: it shows you the
|
|
26
|
+
terms and asks for your explicit assent, and `skyline license accept --yes` in
|
|
27
|
+
a script is the same assent given expressly. Until you accept, the software's
|
|
28
|
+
tools are unavailable, and gated commands refuse with a pointer to this step.
|
|
29
|
+
Beta activation (`skyline license unlock`) is a separate step that only validates your
|
|
30
|
+
key; it neither asks for nor implies acceptance.
|
|
31
|
+
|
|
32
|
+
Acceptance is recorded. The record is the content hash of the terms you
|
|
33
|
+
accepted, the moment you accepted them, and the activation key you held at the
|
|
34
|
+
time, when one exists; it is stored with your local state as proof of
|
|
35
|
+
acceptance. The hash is also how the software knows the terms
|
|
36
|
+
changed: it asks you again only when this file's content changes (section 9),
|
|
37
|
+
never on routine runs.
|
|
38
|
+
|
|
39
|
+
## 3. What you must not do
|
|
40
|
+
|
|
41
|
+
- Do not redistribute, publish, sell, rent, lease, or host the software for
|
|
42
|
+
others; do not sublicense it.
|
|
43
|
+
- Do not share or transfer your activation key, or use one key beyond the
|
|
44
|
+
people or machines it was issued for.
|
|
45
|
+
- Do not reverse engineer, decompile, or disassemble the software or otherwise
|
|
46
|
+
attempt to derive its source. Where the law of your jurisdiction grants you a
|
|
47
|
+
narrow right to do some of this despite this clause (the EU's
|
|
48
|
+
interoperability and error-correction rights, for example), that right stands
|
|
49
|
+
and this clause does not shrink it.
|
|
50
|
+
- Do not circumvent or tamper with activation, license enforcement, acceptance,
|
|
51
|
+
or usage limits.
|
|
52
|
+
- Do not remove copyright, license, or attribution notices.
|
|
53
|
+
|
|
54
|
+
## 4. Ownership and third-party components
|
|
55
|
+
|
|
56
|
+
skylence and its licensors own the software and every intellectual-property
|
|
57
|
+
right in it; everything not expressly granted is reserved. Open-source
|
|
58
|
+
components inside the binary remain under their own licenses, which continue to
|
|
59
|
+
govern those components.
|
|
60
|
+
|
|
61
|
+
## 5. Beta reality
|
|
62
|
+
|
|
63
|
+
This is pre-release software. It may break, change, or lose features without
|
|
64
|
+
notice; its formats and interfaces are not stable; treat it as one tool in your
|
|
65
|
+
workflow, not the safety net. Keep backups and version control; skyline's own
|
|
66
|
+
guidance says the same.
|
|
67
|
+
|
|
68
|
+
The beta is free. We may end it, or begin charging, on notice.
|
|
69
|
+
|
|
70
|
+
## 6. What the software sends, and when
|
|
71
|
+
|
|
72
|
+
Four channels exist. None of them carries your code, file contents, file
|
|
73
|
+
names, repository names, or command arguments. Each is described exactly as the
|
|
74
|
+
shipped release behaves; if a later release changes any of this, this section
|
|
75
|
+
changes in the same release.
|
|
76
|
+
|
|
77
|
+
**The acceptance record** (section 2) is written locally with your activation
|
|
78
|
+
state and stays on your machine; it is not transmitted.
|
|
79
|
+
|
|
80
|
+
**The update check.** Unless you turn it off (`auto_update = false` in the
|
|
81
|
+
config), the software asks GitHub's public releases API
|
|
82
|
+
(api.github.com, repository skylence-be/binary-skyline) at most once every
|
|
83
|
+
24 hours whether a newer version exists, and caches the answer in a local
|
|
84
|
+
file. The request carries no key, no identifiers, and none of your data;
|
|
85
|
+
like any network request, the connection itself shows GitHub your IP
|
|
86
|
+
address. This check also runs before you have accepted these terms: it is
|
|
87
|
+
how an installation learns that an update exists at all.
|
|
88
|
+
|
|
89
|
+
**License activation and heartbeat.** With a key configured, the software sends
|
|
90
|
+
one heartbeat over HTTPS when the daemon starts and one when you run the
|
|
91
|
+
`license` command. A paid-tier heartbeat carries exactly four values: the key,
|
|
92
|
+
the tier, the software version, and a coarse day number (days since 1 January
|
|
93
|
+
1970, dated to the day and no finer). A free-tier key sends the same ping minus
|
|
94
|
+
the tier field; it exists to meter the free tier's usage cap. With no key
|
|
95
|
+
configured, nothing is sent at all. The endpoint must be HTTPS: the software
|
|
96
|
+
refuses to send a key over a plaintext connection. Like any network request,
|
|
97
|
+
the connection itself shows the server your IP address; the message does not
|
|
98
|
+
contain it.
|
|
99
|
+
|
|
100
|
+
**Research telemetry** is off until you turn it on, and the software ships with
|
|
101
|
+
no telemetry endpoint built in; both the consent and the destination are
|
|
102
|
+
yours to configure. Opted in, it sends a roughly monthly aggregate: counts of
|
|
103
|
+
which built-in tools ran, latency and size buckets, per-language-category
|
|
104
|
+
counts, and internal counters, with every name drawn from a fixed list in the
|
|
105
|
+
code rather than from your data. `skyline config telemetry show` prints the exact
|
|
106
|
+
bytes that would upload, produced by the same serializer that uploads them.
|
|
107
|
+
Turning it off closes the channel.
|
|
108
|
+
|
|
109
|
+
**Crash reporting** is a separate opt-in consent. When enabled, a crash may
|
|
110
|
+
send a technical report (a stack backtrace and version information), and the
|
|
111
|
+
software shows you the exact report before it is sent. Without that consent,
|
|
112
|
+
crashes send nothing.
|
|
113
|
+
|
|
114
|
+
## 7. Feedback
|
|
115
|
+
|
|
116
|
+
Feedback, bug reports, and suggestions you send us may be used to improve
|
|
117
|
+
skylence products, with no obligation or payment to you; you keep your own
|
|
118
|
+
rights in your material. Never include confidential information in feedback.
|
|
119
|
+
|
|
120
|
+
## 8. Termination
|
|
121
|
+
|
|
122
|
+
This license ends automatically if you breach it. We may revoke keys or end
|
|
123
|
+
beta access at any time, with or without cause, and may end the beta itself.
|
|
124
|
+
When the license ends, stop using the software and delete your copies.
|
|
125
|
+
Sections 4, 7, 10, 11, and 12 survive.
|
|
126
|
+
|
|
127
|
+
## 9. Changes to these terms
|
|
128
|
+
|
|
129
|
+
The current terms always live at
|
|
130
|
+
https://github.com/skylence-be/skyline/blob/main/LICENSE. We may change them
|
|
131
|
+
during the beta; material changes are named in the release notes of the version
|
|
132
|
+
that carries them. Because terms are identified by content hash, the software
|
|
133
|
+
asks you to accept the changed version before gated commands run again. Continuing
|
|
134
|
+
past that acceptance is agreement; declining means stopping use and
|
|
135
|
+
uninstalling.
|
|
136
|
+
|
|
137
|
+
## 10. No warranty
|
|
138
|
+
|
|
139
|
+
The software is provided "as is" and "as available", with no warranty of any
|
|
140
|
+
kind, express or implied: no implied warranties of merchantability, fitness
|
|
141
|
+
for a particular purpose, title, or non-infringement, and no promise of
|
|
142
|
+
uninterrupted or error-free operation. Where the law grants consumers rights
|
|
143
|
+
that cannot be waived, those rights are untouched.
|
|
144
|
+
|
|
145
|
+
## 11. Limitation of liability
|
|
146
|
+
|
|
147
|
+
To the maximum extent the law allows: skylence is not liable for indirect,
|
|
148
|
+
incidental, special, consequential, or punitive damages, nor for lost profits,
|
|
149
|
+
revenue, data, or business interruption, even if advised of the possibility.
|
|
150
|
+
skylence's total liability for all claims under these terms is capped at the
|
|
151
|
+
greater of the amount you paid skylence for the software in the twelve months
|
|
152
|
+
before the claim and EUR 100. Nothing here excludes liability that cannot
|
|
153
|
+
lawfully be excluded, including for death or personal injury caused by
|
|
154
|
+
negligence, or for fraud.
|
|
155
|
+
|
|
156
|
+
## 12. Governing law and venue
|
|
157
|
+
|
|
158
|
+
These terms are governed by Belgian law. Any dispute about them that we
|
|
159
|
+
cannot settle amicably goes to the Dutch-speaking courts having
|
|
160
|
+
jurisdiction over skylence's principal place of business in Belgium. The United
|
|
161
|
+
Nations Convention on Contracts for the International Sale of Goods does
|
|
162
|
+
not apply.
|
|
163
|
+
|
|
164
|
+
If you use the software as a consumer, nothing in this section takes away
|
|
165
|
+
protections or forum rights that the mandatory rules of your country of
|
|
166
|
+
residence grant you.
|
|
167
|
+
|
|
168
|
+
## 13. Contact
|
|
169
|
+
|
|
170
|
+
Everything about this license, activation keys, beta access, and bug reports
|
|
171
|
+
goes through the public tracker: https://github.com/skylence-be/skyline/issues
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
Copyright 2025-2026 skylence-be. All rights reserved.
|
package/README.md
CHANGED
|
@@ -12,4 +12,6 @@ See the [main package](https://www.npmjs.com/package/@skylence-ai/skyline) for f
|
|
|
12
12
|
|
|
13
13
|
## License
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Proprietary. Free during the invited beta; see the [license](https://github.com/skylence-be/skyline/blob/main/LICENSE).
|
|
16
|
+
|
|
17
|
+
<!-- synced from README blob 284ef73a9c6cfb8917f18ce0b4d452fb3fc188d5 -->
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skylence-ai/skyline-linux-arm64",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "Linux arm64
|
|
5
|
-
"license": "
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Linux arm64 binaries (skyline + skyrift + skylore) for @skylence-ai/skyline",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/skylence-be/
|
|
8
|
+
"url": "https://github.com/skylence-be/skyline"
|
|
9
9
|
},
|
|
10
10
|
"os": [
|
|
11
11
|
"linux"
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
],
|
|
16
16
|
"preferUnplugged": true,
|
|
17
17
|
"files": [
|
|
18
|
-
"skyline"
|
|
18
|
+
"skyline",
|
|
19
|
+
"skyrift",
|
|
20
|
+
"skylore"
|
|
19
21
|
]
|
|
20
22
|
}
|
package/skyline
CHANGED
|
Binary file
|
package/skylore
ADDED
|
Binary file
|
package/skyrift
ADDED
|
Binary file
|