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