@julong/mono-rele2-core 1.13.0 → 1.14.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.
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: mono-rele2-core
|
|
2
|
+
name: mono-rele2-core-cli
|
|
3
3
|
description: Use this skill to invoke core system utility functions via the mono-rele2-core CLI. Handles message echo, UTC timestamp generation, and environment variable lookup.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# mono-rele2-core
|
|
6
|
+
# mono-rele2-core-cli
|
|
7
7
|
|
|
8
8
|
```sh
|
|
9
|
-
mono-rele2-core <skillName> [...args]
|
|
9
|
+
mono-rele2-core-cli <skillName> [...args]
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
## Skills
|
|
@@ -45,16 +45,16 @@ Generates a random UUID v4
|
|
|
45
45
|
|
|
46
46
|
## Examples
|
|
47
47
|
|
|
48
|
-
- `mono-rele2-core echoTool "hello world"` => `hello world`
|
|
49
|
-
- `mono-rele2-core timestampTool` => `2026-05-02T00:00:00.000Z`
|
|
50
|
-
- `mono-rele2-core timestampTool unix` => `1746144000000`
|
|
51
|
-
- `mono-rele2-core envTool HOME` => `/Users/julong`
|
|
52
|
-
- `mono-rele2-core envTool NODE_ENV` => `development`
|
|
53
|
-
- `mono-rele2-core uuidTool` => `550e8400-e29b-41d4-a716-446655440000`
|
|
48
|
+
- `mono-rele2-core-cli echoTool "hello world"` => `hello world`
|
|
49
|
+
- `mono-rele2-core-cli timestampTool` => `2026-05-02T00:00:00.000Z`
|
|
50
|
+
- `mono-rele2-core-cli timestampTool unix` => `1746144000000`
|
|
51
|
+
- `mono-rele2-core-cli envTool HOME` => `/Users/julong`
|
|
52
|
+
- `mono-rele2-core-cli envTool NODE_ENV` => `development`
|
|
53
|
+
- `mono-rele2-core-cli uuidTool` => `550e8400-e29b-41d4-a716-446655440000`
|
|
54
54
|
|
|
55
55
|
## Guidelines
|
|
56
56
|
|
|
57
57
|
- Arguments are positional — pass them in the order listed in each skill's table
|
|
58
58
|
- Optional args with defaults may be omitted
|
|
59
59
|
- `envTool` returns an empty string when the variable is not set
|
|
60
|
-
- Run `mono-rele2-core` with no args to list all available skills
|
|
60
|
+
- Run `mono-rele2-core-cli` with no args to list all available skills
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@julong/mono-rele2-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "Use this skill to invoke core system utility functions via the mono-rele2-core CLI. Handles message echo, UTC timestamp generation, and environment variable lookup.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"type": "module",
|