@tastehub/ckb-linux-arm64 8.0.0 → 8.0.1
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/bin/LICENSE +25 -25
- package/bin/README.md +23 -21
- package/bin/ckb +0 -0
- package/package.json +1 -1
package/bin/LICENSE
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
CKB License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2025 SimplyLiz
|
|
3
|
+
Copyright (c) 2025 TasteHub / SimplyLiz
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
FREE USE
|
|
6
6
|
|
|
7
|
-
This software is free to use for
|
|
7
|
+
This software is free to use for:
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
1. Personal, non-commercial use
|
|
10
|
+
2. Open source projects
|
|
11
|
+
3. Startups and small businesses with less than $25,000 USD in annual revenue
|
|
10
12
|
|
|
11
|
-
|
|
12
|
-
government entities, or any organization generating revenue, requires a
|
|
13
|
-
separate commercial license.
|
|
13
|
+
COMMERCIAL USE
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
Commercial use by organizations with $25,000 USD or more in annual revenue
|
|
16
|
+
requires a paid license. See https://codeknowledge.dev/pricing for plans.
|
|
16
17
|
|
|
17
18
|
TERMS
|
|
18
19
|
|
|
19
|
-
1.
|
|
20
|
-
|
|
20
|
+
1. FREE USE: Individuals, open source projects, and qualifying small businesses
|
|
21
|
+
may use, copy, and modify this software at no cost under the conditions above.
|
|
21
22
|
|
|
22
|
-
2. COMMERCIAL
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
2. COMMERCIAL LICENSE REQUIRED: Organizations with $25,000 USD or more in annual
|
|
24
|
+
revenue must purchase a commercial license for any use, including:
|
|
25
|
+
- Internal business tools
|
|
26
|
+
- Products or services
|
|
27
|
+
- Use by employees or contractors
|
|
25
28
|
|
|
26
|
-
3. REDISTRIBUTION: Redistribution of this software, with or without
|
|
27
|
-
|
|
28
|
-
non-commercial purposes unless a commercial license is obtained.
|
|
29
|
+
3. REDISTRIBUTION: Redistribution of this software, with or without modification,
|
|
30
|
+
must retain this license notice. Commercial redistribution requires a license.
|
|
29
31
|
|
|
30
|
-
4. NO WARRANTY: This software is provided "as is", without warranty of any
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
4. NO WARRANTY: This software is provided "as is", without warranty of any kind,
|
|
33
|
+
express or implied. The authors are not liable for any damages arising from
|
|
34
|
+
its use.
|
|
33
35
|
|
|
34
|
-
5.
|
|
35
|
-
|
|
36
|
-
- Use by employees or contractors on behalf of a commercial entity
|
|
37
|
-
- Integration into commercial products or services
|
|
38
|
-
- Use to generate revenue directly or indirectly
|
|
36
|
+
5. REVENUE CALCULATION: Annual revenue means gross revenue for the most recent
|
|
37
|
+
fiscal year, including all subsidiaries and affiliated entities.
|
|
39
38
|
|
|
40
|
-
For licensing
|
|
39
|
+
For licensing: https://codeknowledge.dev/pricing
|
|
40
|
+
For questions: hello@codeknowledge.dev
|
package/bin/README.md
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
**Know your code. Change it safely. Ship with confidence.**
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@tastehub/ckb)
|
|
6
|
-
[](https://codeknowledge.dev)
|
|
7
|
+
[](https://codeknowledge.dev/docs)
|
|
7
8
|
|
|
8
9
|
CKB transforms your codebase into a queryable knowledge base. Ask questions, understand impact, find owners, detect dead code—all through CLI, API, or AI assistants.
|
|
9
10
|
|
|
@@ -49,22 +50,19 @@ CKB transforms your codebase into a queryable knowledge base. Ask questions, und
|
|
|
49
50
|
|
|
50
51
|
```bash
|
|
51
52
|
# See what's risky in your codebase
|
|
52
|
-
ckb hotspots
|
|
53
|
+
ckb hotspots --format=human
|
|
53
54
|
|
|
54
|
-
# Check
|
|
55
|
-
ckb
|
|
56
|
-
|
|
57
|
-
# Find tests to run for your changes
|
|
58
|
-
ckb affected-tests --output=command
|
|
55
|
+
# Check what changed and what might break
|
|
56
|
+
ckb diff-summary --format=human
|
|
59
57
|
|
|
60
58
|
# Scan for exposed secrets
|
|
61
|
-
ckb
|
|
62
|
-
|
|
63
|
-
# Get reviewers for your PR
|
|
64
|
-
ckb reviewers
|
|
59
|
+
ckb audit --format=human
|
|
65
60
|
|
|
66
61
|
# Check architecture at a glance
|
|
67
|
-
ckb arch
|
|
62
|
+
ckb arch --format=human
|
|
63
|
+
|
|
64
|
+
# Check system status
|
|
65
|
+
ckb status
|
|
68
66
|
```
|
|
69
67
|
|
|
70
68
|
---
|
|
@@ -259,14 +257,13 @@ See the **[Index Management Guide](https://github.com/SimplyLiz/CodeMCP/wiki/Ind
|
|
|
259
257
|
## CLI
|
|
260
258
|
|
|
261
259
|
```bash
|
|
262
|
-
ckb status
|
|
263
|
-
ckb search Handler
|
|
264
|
-
ckb
|
|
265
|
-
ckb
|
|
266
|
-
ckb
|
|
267
|
-
ckb
|
|
268
|
-
ckb
|
|
269
|
-
ckb mcp # Start MCP server
|
|
260
|
+
ckb status # System health (with remediation suggestions)
|
|
261
|
+
ckb search Handler # Find symbols
|
|
262
|
+
ckb diff-summary # Analyze what changed
|
|
263
|
+
ckb hotspots # Risky areas
|
|
264
|
+
ckb arch # Architecture overview
|
|
265
|
+
ckb ownership # File/path ownership
|
|
266
|
+
ckb mcp # Start MCP server
|
|
270
267
|
```
|
|
271
268
|
|
|
272
269
|
**v8.0 Compound Operations (via MCP):**
|
|
@@ -588,4 +585,9 @@ See the **[Full Documentation Wiki](https://github.com/SimplyLiz/CodeMCP/wiki)**
|
|
|
588
585
|
|
|
589
586
|
## License
|
|
590
587
|
|
|
591
|
-
Free for
|
|
588
|
+
**Free for:**
|
|
589
|
+
- Personal use
|
|
590
|
+
- Open source projects
|
|
591
|
+
- Startups & small businesses under $25k annual revenue
|
|
592
|
+
|
|
593
|
+
**Commercial license required** for organizations with $25k+ annual revenue. See [pricing](https://codeknowledge.dev/pricing) for Team and Enterprise plans, or [LICENSE](LICENSE) for full terms.
|
package/bin/ckb
CHANGED
|
Binary file
|