@t00lzcom/dev-tools 1.0.0 → 1.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/README.md +90 -86
- package/package.json +34 -34
package/README.md
CHANGED
|
@@ -1,86 +1,90 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
| `
|
|
15
|
-
| `
|
|
16
|
-
| `
|
|
17
|
-
| `
|
|
18
|
-
| `
|
|
19
|
-
| `
|
|
20
|
-
| `
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
1
|
+
<<<<<<< HEAD
|
|
2
|
+
# T00lz Dev Tools — OpenClaw Plugin
|
|
3
|
+
|
|
4
|
+
> 8 essential developer utilities from [t00lz.com](https://t00lz.com), available directly in your OpenClaw AI assistant.
|
|
5
|
+
|
|
6
|
+
All processing is **100% local** — no data ever leaves your machine.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Tools Included
|
|
11
|
+
|
|
12
|
+
| Tool | What you say | What it does |
|
|
13
|
+
|------|-------------|--------------|
|
|
14
|
+
| `json_format` | "format this JSON" / "minify this JSON" | Beautify or minify JSON with error reporting |
|
|
15
|
+
| `json_validate` | "validate this JSON" | Check JSON syntax with exact line/col errors |
|
|
16
|
+
| `base64` | "encode this to base64" / "decode this base64" | Base64 encode or decode any string |
|
|
17
|
+
| `generate_password` | "generate a 24-char password with symbols" | Cryptographically secure password generator |
|
|
18
|
+
| `markdown_to_html` | "convert this markdown to HTML" | Full Markdown → HTML conversion |
|
|
19
|
+
| `word_count` | "count words in this text" | Words, chars, sentences, reading time |
|
|
20
|
+
| `case_convert` | "convert to snake_case" / "make this title case" | 7 case formats including camel, kebab, snake |
|
|
21
|
+
| `text_diff` | "diff these two texts" | Line-by-line diff with +/- summary |
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Install
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
openclaw plugins install @t00lzcom/dev-tools
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Or from source:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
openclaw plugins install ./t00lz-dev-tools
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Configuration
|
|
38
|
+
|
|
39
|
+
Add to your OpenClaw config (optional):
|
|
40
|
+
|
|
41
|
+
```json5
|
|
42
|
+
{
|
|
43
|
+
plugins: {
|
|
44
|
+
entries: {
|
|
45
|
+
"t00lz-dev-tools": {
|
|
46
|
+
enabled: true,
|
|
47
|
+
config: {
|
|
48
|
+
passwordDefaultLength: 24, // default: 20
|
|
49
|
+
passwordDefaultSymbols: true // default: true
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Example Usage
|
|
58
|
+
|
|
59
|
+
Once installed, just talk to your OpenClaw agent naturally:
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
You: format this JSON for me: {"name":"alice","age":30}
|
|
63
|
+
Agent: {
|
|
64
|
+
"name": "alice",
|
|
65
|
+
"age": 30
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
You: generate a strong 32-character password
|
|
69
|
+
Agent: Password: kR7!mXq2#vLp9@wNsZ4$bJcTdYeF8&uA
|
|
70
|
+
Strength: 💪 Strong
|
|
71
|
+
|
|
72
|
+
You: convert "hello world from t00lz" to camelCase
|
|
73
|
+
Agent: helloWorldFromT00lz
|
|
74
|
+
|
|
75
|
+
You: how many words in this paragraph? [paste text]
|
|
76
|
+
Agent: Words: 142 | Characters: 891 | Reading time: 43s
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Contributing
|
|
80
|
+
|
|
81
|
+
Issues and PRs welcome at [github.com/t00lzcom/openclaw-dev-tools](https://github.com/t00lzcom/openclaw-dev-tools).
|
|
82
|
+
|
|
83
|
+
For more free developer tools, visit **[t00lz.com](https://t00lz.com)**.
|
|
84
|
+
|
|
85
|
+
## License
|
|
86
|
+
|
|
87
|
+
MIT
|
|
88
|
+
=======
|
|
89
|
+
# openclaw-dev-tools
|
|
90
|
+
>>>>>>> ce029e83180314ddb384a40a94bbd727f698c599
|
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@t00lzcom/dev-tools",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Essential developer utilities for OpenClaw — powered by T00lz.com",
|
|
5
|
-
"main": "src/tools.ts",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
},
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
},
|
|
31
|
-
"engines": {
|
|
32
|
-
"node": ">=18"
|
|
33
|
-
}
|
|
34
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@t00lzcom/dev-tools",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Essential developer utilities for OpenClaw — powered by T00lz.com",
|
|
5
|
+
"main": "src/tools.ts",
|
|
6
|
+
"openclaw": {
|
|
7
|
+
"extensions": ["./src/tools.ts"]
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"openclaw",
|
|
11
|
+
"plugin",
|
|
12
|
+
"json",
|
|
13
|
+
"base64",
|
|
14
|
+
"password",
|
|
15
|
+
"markdown",
|
|
16
|
+
"text",
|
|
17
|
+
"developer",
|
|
18
|
+
"utilities",
|
|
19
|
+
"tools"
|
|
20
|
+
],
|
|
21
|
+
"author": "T00LZ <t000lz.com@gmail.com>",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"homepage": "https://t00lz.com",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/lov3deep/openclaw-dev-tools"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"marked": "^12.0.0"
|
|
30
|
+
},
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=18"
|
|
33
|
+
}
|
|
34
|
+
}
|