@h4shed/skill-skill-creator 1.0.1 → 1.0.3
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 +16 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,3 +25,19 @@ Create a new custom skill for the Fused Gaming MCP ecosystem.
|
|
|
25
25
|
- ✅ Tool definitions
|
|
26
26
|
- 📝 Creation templates
|
|
27
27
|
- ⏳ Full implementation (WIP)
|
|
28
|
+
|
|
29
|
+
## Usage
|
|
30
|
+
|
|
31
|
+
This package exports an MCP skill definition that can be loaded by `@fused-gaming/mcp-core` via the workspace skill registry.
|
|
32
|
+
|
|
33
|
+
## Development
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# from repository root
|
|
37
|
+
npm run build --workspace=packages/skills/skill-creator
|
|
38
|
+
npm run test --workspace=packages/skills/skill-creator
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h4shed/skill-skill-creator",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Create custom skills and tools for the Fused Gaming MCP ecosystem",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"test": "echo \"No tests yet\""
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@h4shed/mcp-core": "1.0.
|
|
16
|
+
"@h4shed/mcp-core": "1.0.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/node": "^20.12.0",
|