priorcase-linux-arm64 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/LICENSE ADDED
@@ -0,0 +1,62 @@
1
+ priorcase — End User License Agreement
2
+ Copyright (c) 2026 priorcase. All rights reserved.
3
+
4
+ This is proprietary software. It is licensed, not sold.
5
+
6
+ 1. GRANT OF LICENSE
7
+
8
+ Subject to the terms below, you are granted a non-exclusive,
9
+ non-transferable, revocable license to install and use the priorcase
10
+ binary ("the Software") on computers you own or control, for your own
11
+ personal or internal business purposes.
12
+
13
+ 2. WHAT YOU MAY DO
14
+
15
+ a. Install and run the Software on any number of machines you own or
16
+ control.
17
+ b. Use the Software to create, read, and modify your own decision
18
+ records. **The files the Software writes are yours.** They are plain
19
+ Markdown on your disk, they contain no license restriction, and this
20
+ agreement places no claim on them. You may keep, publish, migrate,
21
+ or delete them freely, including after this license ends.
22
+
23
+ 3. WHAT YOU MAY NOT DO
24
+
25
+ a. Reverse engineer, decompile, or disassemble the Software, except to
26
+ the extent that applicable law expressly permits despite this
27
+ limitation.
28
+ b. Redistribute, sublicense, rent, lease, or sell the Software.
29
+ c. Remove or alter any copyright, trademark, or other proprietary
30
+ notices.
31
+ d. Use the Software to build a competing product.
32
+
33
+ 4. NO NETWORK, NO TELEMETRY
34
+
35
+ The Software does not transmit your decision records, prompts, or
36
+ conversations anywhere. It runs entirely on your machine and reads no
37
+ API keys. Any future networked feature will be separate, opt-in, and
38
+ covered by its own agreement.
39
+
40
+ 5. NO WARRANTY
41
+
42
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
43
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
44
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
45
+
46
+ 6. LIMITATION OF LIABILITY
47
+
48
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES,
49
+ OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
50
+ ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
51
+ OTHER DEALINGS IN THE SOFTWARE.
52
+
53
+ 7. THIRD-PARTY COMPONENTS
54
+
55
+ The Software includes open-source components under their own licenses.
56
+ See THIRD-PARTY-NOTICES.md.
57
+
58
+ 8. TERMINATION
59
+
60
+ This license ends if you breach it. On termination you must stop using
61
+ the Software and delete your copies. **Your decision records are not
62
+ affected** — see section 2(b).
@@ -0,0 +1,33 @@
1
+ # 제3자 라이선스 고지 / Third-Party Notices
2
+
3
+ priorcase 바이너리에는 아래 오픈소스 구성요소가 포함된다. 각 구성요소는 자체
4
+ 라이선스를 따르며, 그 라이선스 전문은 각 프로젝트 저장소에 있다.
5
+
6
+ priorcase binaries include the open-source components listed below. Each is
7
+ governed by its own license; full texts are available in the respective
8
+ project repositories.
9
+
10
+ | 구성요소 / Component | 버전 / Version | 라이선스 / License |
11
+ | --- | --- | --- |
12
+ | `github.com/fsnotify/fsnotify` | v1.10.1 | BSD-3-Clause |
13
+ | `github.com/gofrs/flock` | v0.12.1 | BSD-3-Clause |
14
+ | `github.com/google/jsonschema-go` | v0.4.3 | MIT |
15
+ | `github.com/modelcontextprotocol/go-sdk` | v1.7.0 | MIT |
16
+ | `github.com/pelletier/go-toml/v2` | v2.4.3 | MIT |
17
+ | `github.com/segmentio/asm` | v1.1.3 | MIT |
18
+ | `github.com/segmentio/encoding` | v0.5.4 | MIT |
19
+ | `github.com/spf13/cobra` | v1.10.2 | Apache-2.0 |
20
+ | `github.com/spf13/pflag` | v1.0.9 | BSD-3-Clause |
21
+ | `github.com/yosida95/uritemplate/v3` | v3.0.2 | BSD-3-Clause |
22
+ | `go.yaml.in/yaml/v3` | v3.0.5 | MIT |
23
+ | `golang.org/x/oauth2` | v0.35.0 | BSD-3-Clause |
24
+ | `golang.org/x/sync` | v0.20.0 | BSD-3-Clause |
25
+ | `golang.org/x/text` | v0.28.0 | BSD-3-Clause |
26
+ | `golang.org/x/time` | v0.15.0 | BSD-3-Clause |
27
+ | `golang.org/x/sys` | v0.41.0 | BSD-3-Clause |
28
+
29
+ Go 표준 라이브러리는 BSD-3-Clause 를 따른다 (https://go.dev/LICENSE).
30
+ The Go standard library is BSD-3-Clause licensed.
31
+
32
+ 이 목록은 `go list -deps ./cmd/prior` 로 **실제 바이너리에 링크되는 것만** 추렸다.
33
+ 테스트 전용 의존성(testify, go-cmp 등)은 배포물에 들어가지 않아 제외했다.
package/bin/prior ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "priorcase-linux-arm64",
3
+ "version": "0.1.0",
4
+ "description": "priorcase binary for linux-arm64",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "os": ["linux"],
7
+ "cpu": ["arm64"],
8
+ "files": ["bin/", "LICENSE", "THIRD-PARTY-NOTICES.md"]
9
+ }