wormclaude 1.0.65 → 1.0.67
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 +41 -0
- package/dist/theme.js +9 -9
- package/dist/tools.js +2 -2
- package/package.json +50 -50
package/LICENSE
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
WormClaude — Proprietary Software License
|
|
2
|
+
Copyright (c) 2026 S.Y. All rights reserved.
|
|
3
|
+
Tüm hakları saklıdır.
|
|
4
|
+
|
|
5
|
+
This software ("WormClaude"), including its source code, design, branding and
|
|
6
|
+
all related materials, is the exclusive and confidential property of the
|
|
7
|
+
copyright holder. The compiled package distributed via npm ("wormclaude") is
|
|
8
|
+
LICENSED, NOT SOLD, to end users solely for accessing the WormClaude service
|
|
9
|
+
for their personal or internal business use.
|
|
10
|
+
|
|
11
|
+
Bu yazılım ("WormClaude") — kaynak kodu, tasarımı, markası ve ilgili tüm
|
|
12
|
+
materyaller dahil — telif hakkı sahibinin münhasır ve gizli mülkiyetidir.
|
|
13
|
+
npm üzerinden dağıtılan derlenmiş paket SATILMAZ, yalnızca WormClaude
|
|
14
|
+
hizmetine erişim için LİSANSLANIR.
|
|
15
|
+
|
|
16
|
+
Without the prior written permission of the copyright holder, you MAY NOT /
|
|
17
|
+
Telif hakkı sahibinin önceden yazılı izni olmadan, ŞUNLARI YAPAMAZSINIZ:
|
|
18
|
+
|
|
19
|
+
- copy, reproduce or redistribute the software or any part of it /
|
|
20
|
+
yazılımı veya herhangi bir parçasını kopyalama, çoğaltma, yeniden dağıtma;
|
|
21
|
+
- reverse engineer, decompile or disassemble the compiled code /
|
|
22
|
+
derlenmiş kodu tersine mühendislik, decompile veya disassemble etme;
|
|
23
|
+
- modify, adapt, translate or create derivative works /
|
|
24
|
+
değiştirme, uyarlama, çeviri veya türev çalışma oluşturma;
|
|
25
|
+
- sublicense, sell, rent, lease or otherwise commercialize the software /
|
|
26
|
+
alt-lisanslama, satma, kiralama veya başka şekilde ticarileştirme;
|
|
27
|
+
- remove or alter any proprietary notices, branding or marks /
|
|
28
|
+
mülkiyet bildirimlerini, markayı veya işaretleri kaldırma/değiştirme.
|
|
29
|
+
|
|
30
|
+
The source code is NOT distributed and remains strictly confidential. /
|
|
31
|
+
Kaynak kodu dağıtılmaz ve kesinlikle gizli kalır.
|
|
32
|
+
|
|
33
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
34
|
+
IMPLIED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM,
|
|
35
|
+
DAMAGES OR OTHER LIABILITY ARISING FROM THE USE OF THE SOFTWARE.
|
|
36
|
+
|
|
37
|
+
YAZILIM "OLDUĞU GİBİ" SAĞLANIR; AÇIK VEYA ZIMNİ HİÇBİR GARANTİ VERİLMEZ.
|
|
38
|
+
TELİF HAKKI SAHİBİ, YAZILIMIN KULLANIMINDAN DOĞAN HİÇBİR ZARARDAN SORUMLU
|
|
39
|
+
TUTULAMAZ.
|
|
40
|
+
|
|
41
|
+
For licensing inquiries / Lisans talepleri için: wormclaudeadmin@gmail.com
|
package/dist/theme.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// WormClaude renk
|
|
1
|
+
// WormClaude renk teması — siyah zemin + kırmızı/gri/beyaz (WormGPT tarzı)
|
|
2
2
|
export const theme = {
|
|
3
3
|
red: '#ff3b3b',
|
|
4
4
|
redBright: '#ff5c5c',
|
|
@@ -7,13 +7,13 @@ export const theme = {
|
|
|
7
7
|
greyDim: '#666666',
|
|
8
8
|
green: '#4ade80',
|
|
9
9
|
errorRed: '#ff6b6b',
|
|
10
|
-
//
|
|
11
|
-
synKeyword: '#ff5c5c', // anahtar kelimeler (if, function, def
|
|
12
|
-
synString: '#4ade80', // dizgiler "
|
|
13
|
-
synNumber: '#f0b429', //
|
|
10
|
+
// ── Sözdizimi vurgusu (kod blokları) ──
|
|
11
|
+
synKeyword: '#ff5c5c', // anahtar kelimeler (if, function, def…) — marka kırmızısı
|
|
12
|
+
synString: '#4ade80', // dizgiler "…" '…' `…`
|
|
13
|
+
synNumber: '#f0b429', // sayılar
|
|
14
14
|
synComment: '#666666', // yorumlar
|
|
15
|
-
synFunc: '#4fc3f7', // fonksiyon/metot
|
|
16
|
-
synType: '#a78bfa', // tip/
|
|
17
|
-
synProp: '#e0e0e0', //
|
|
15
|
+
synFunc: '#4fc3f7', // fonksiyon/metot adları
|
|
16
|
+
synType: '#a78bfa', // tip/sınıf adları, sabitler
|
|
17
|
+
synProp: '#e0e0e0', // özellik/anahtar adları
|
|
18
18
|
};
|
|
19
|
-
export const VERSION = '1.0.
|
|
19
|
+
export const VERSION = '1.0.67';
|
package/dist/tools.js
CHANGED
|
@@ -587,7 +587,7 @@ const TOOL_META = {
|
|
|
587
587
|
Read: { readOnly: true, concurrencySafe: true },
|
|
588
588
|
Glob: { readOnly: true, concurrencySafe: true },
|
|
589
589
|
Grep: { readOnly: true, concurrencySafe: true },
|
|
590
|
-
WebFetch: { readOnly: true,
|
|
590
|
+
WebFetch: { readOnly: true, validate: (a) => (a && a.url ? null : 'url gerekli') },
|
|
591
591
|
TaskOutput: { readOnly: true, concurrencySafe: true },
|
|
592
592
|
Bash: { needsPermission: true, validate: (a) => (a && a.command ? null : 'command gerekli') },
|
|
593
593
|
Write: { needsPermission: true, validate: (a) => (a && a.file_path ? null : 'file_path gerekli') },
|
|
@@ -598,7 +598,7 @@ const TOOL_META = {
|
|
|
598
598
|
Type: { needsPermission: true, validate: (a) => (a && a.text != null ? null : 'text gerekli') },
|
|
599
599
|
Key: { needsPermission: true, validate: (a) => (a && a.keys ? null : 'keys gerekli') },
|
|
600
600
|
Scroll: { needsPermission: true, validate: (a) => (a && a.direction ? null : 'direction gerekli') },
|
|
601
|
-
WebSearch: { readOnly: true,
|
|
601
|
+
WebSearch: { readOnly: true, validate: (a) => (a && a.query ? null : 'query gerekli') },
|
|
602
602
|
TodoWrite: { readOnly: true, validate: (a) => (a && Array.isArray(a.todos) ? null : 'todos dizisi gerekli') },
|
|
603
603
|
SaveMemory: { validate: (a) => (a && a.fact && String(a.fact).trim() ? null : 'fact gerekli') },
|
|
604
604
|
PowerShell: { needsPermission: true, validate: (a) => (a && a.command ? null : 'command gerekli') },
|
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "wormclaude",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"wormclaude": "dist/cli.js"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"dev": "tsx src/cli.tsx",
|
|
11
|
-
"build": "tsc && node scripts/copy-skills.mjs && node scripts/copy-extensions.mjs",
|
|
12
|
-
"start": "node dist/cli.js",
|
|
13
|
-
"prepublishOnly": "npm run build"
|
|
14
|
-
},
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
17
|
-
"@types/diff": "^7.0.2",
|
|
18
|
-
"diff": "^9.0.0",
|
|
19
|
-
"ink": "^5.0.1",
|
|
20
|
-
"ink-spinner": "^5.0.0",
|
|
21
|
-
"ink-text-input": "^6.0.0",
|
|
22
|
-
"log-update": "^5.0.1",
|
|
23
|
-
"react": "^18.3.1",
|
|
24
|
-
"string-width": "^7.2.0"
|
|
25
|
-
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"@types/node": "^22.10.2",
|
|
28
|
-
"@types/react": "^18.3.18",
|
|
29
|
-
"tsx": "^4.19.2",
|
|
30
|
-
"typescript": "^5.7.2"
|
|
31
|
-
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist",
|
|
34
|
-
"skills",
|
|
35
|
-
"extensions",
|
|
36
|
-
"README.md"
|
|
37
|
-
],
|
|
38
|
-
"engines": {
|
|
39
|
-
"node": ">=18"
|
|
40
|
-
},
|
|
41
|
-
"license": "
|
|
42
|
-
"keywords": [
|
|
43
|
-
"wormclaude",
|
|
44
|
-
"cli",
|
|
45
|
-
"ai",
|
|
46
|
-
"assistant",
|
|
47
|
-
"agent",
|
|
48
|
-
"terminal"
|
|
49
|
-
]
|
|
50
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "wormclaude",
|
|
3
|
+
"version": "1.0.67",
|
|
4
|
+
"description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"wormclaude": "dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "tsx src/cli.tsx",
|
|
11
|
+
"build": "tsc && node scripts/copy-skills.mjs && node scripts/copy-extensions.mjs",
|
|
12
|
+
"start": "node dist/cli.js",
|
|
13
|
+
"prepublishOnly": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
17
|
+
"@types/diff": "^7.0.2",
|
|
18
|
+
"diff": "^9.0.0",
|
|
19
|
+
"ink": "^5.0.1",
|
|
20
|
+
"ink-spinner": "^5.0.0",
|
|
21
|
+
"ink-text-input": "^6.0.0",
|
|
22
|
+
"log-update": "^5.0.1",
|
|
23
|
+
"react": "^18.3.1",
|
|
24
|
+
"string-width": "^7.2.0"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/node": "^22.10.2",
|
|
28
|
+
"@types/react": "^18.3.18",
|
|
29
|
+
"tsx": "^4.19.2",
|
|
30
|
+
"typescript": "^5.7.2"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"skills",
|
|
35
|
+
"extensions",
|
|
36
|
+
"README.md"
|
|
37
|
+
],
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=18"
|
|
40
|
+
},
|
|
41
|
+
"license": "UNLICENSED",
|
|
42
|
+
"keywords": [
|
|
43
|
+
"wormclaude",
|
|
44
|
+
"cli",
|
|
45
|
+
"ai",
|
|
46
|
+
"assistant",
|
|
47
|
+
"agent",
|
|
48
|
+
"terminal"
|
|
49
|
+
]
|
|
50
|
+
}
|