@julong/mono-rele2-core 1.31.0 → 1.32.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.
- package/README.md +10 -0
- package/package.json +1 -1
- package/dist/skills/mono-rele2-core-cli/skill.md +0 -60
package/README.md
CHANGED
|
@@ -47,6 +47,16 @@ Run without arguments to list all available tools:
|
|
|
47
47
|
mono-rele2-core-cli
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
+
## Skill Installation
|
|
51
|
+
|
|
52
|
+
Install the CLI as a reusable skill for your AI agent:
|
|
53
|
+
|
|
54
|
+
```sh
|
|
55
|
+
npx skills add https://github.com/jl917/mcp-kit/tree/main/packages/core/skills
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
This registers all tools as callable skills in your agent's environment.
|
|
59
|
+
|
|
50
60
|
## Tools API Reference
|
|
51
61
|
|
|
52
62
|
### `echo(message)`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@julong/mono-rele2-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.32.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",
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: mono-rele2-core-cli
|
|
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
|
-
---
|
|
5
|
-
|
|
6
|
-
# mono-rele2-core-cli
|
|
7
|
-
|
|
8
|
-
```sh
|
|
9
|
-
mono-rele2-core-cli <toolName> [...args]
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
## Skills
|
|
13
|
-
|
|
14
|
-
### echoTool
|
|
15
|
-
|
|
16
|
-
Returns the message as-is
|
|
17
|
-
|
|
18
|
-
| arg | description |
|
|
19
|
-
|-----|-------------|
|
|
20
|
-
| `message` | Message to echo |
|
|
21
|
-
|
|
22
|
-
### timestampTool
|
|
23
|
-
|
|
24
|
-
Returns the current UTC timestamp
|
|
25
|
-
|
|
26
|
-
| arg | description |
|
|
27
|
-
|-----|-------------|
|
|
28
|
-
| `format` | Timestamp format — `iso` \| `unix` — default: `iso` |
|
|
29
|
-
|
|
30
|
-
### envTool
|
|
31
|
-
|
|
32
|
-
Returns the value of an environment variable
|
|
33
|
-
|
|
34
|
-
| arg | description |
|
|
35
|
-
|-----|-------------|
|
|
36
|
-
| `key` | Environment variable name |
|
|
37
|
-
|
|
38
|
-
### uuidTool
|
|
39
|
-
|
|
40
|
-
Generates a random UUID v4
|
|
41
|
-
|
|
42
|
-
| arg | description |
|
|
43
|
-
|-----|-------------|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## Examples
|
|
47
|
-
|
|
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
|
-
|
|
55
|
-
## Guidelines
|
|
56
|
-
|
|
57
|
-
- Arguments are positional — pass them in the order listed in each skill's table
|
|
58
|
-
- Optional args with defaults may be omitted
|
|
59
|
-
- `envTool` returns an empty string when the variable is not set
|
|
60
|
-
- Run `mono-rele2-core-cli` with no args to list all available skills
|