@mikaelkaron/skills-tessl 0.4.1 → 0.4.2
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,7 +1,7 @@
|
|
|
1
1
|
import { Args, Command, Flags } from "@oclif/core";
|
|
2
2
|
import { install } from "../../lib/tessl.js";
|
|
3
3
|
export default class TesslInstall extends Command {
|
|
4
|
-
static summary = "Install
|
|
4
|
+
static summary = "Install tessl skill tiles for one or more installed plugins.";
|
|
5
5
|
static examples = [
|
|
6
6
|
{
|
|
7
7
|
description: "Install the skill tile for the cherry-pick-filter plugin",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Args, Command, Flags } from "@oclif/core";
|
|
2
2
|
import { uninstall } from "../../lib/tessl.js";
|
|
3
3
|
export default class TesslUninstall extends Command {
|
|
4
|
-
static summary = "Uninstall
|
|
4
|
+
static summary = "Uninstall tessl skill tiles for one or more installed plugins.";
|
|
5
5
|
static examples = [
|
|
6
6
|
{
|
|
7
7
|
description: "Uninstall the skill tile for the cherry-pick-filter plugin",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikaelkaron/skills-tessl",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"bin": {
|
|
5
5
|
"mks-tessl": "bin/run.js"
|
|
6
6
|
},
|
|
@@ -38,7 +38,12 @@
|
|
|
38
38
|
"strategy": "pattern",
|
|
39
39
|
"target": "./dist/commands"
|
|
40
40
|
},
|
|
41
|
-
"id": "tessl"
|
|
41
|
+
"id": "tessl",
|
|
42
|
+
"topics": {
|
|
43
|
+
"tessl": {
|
|
44
|
+
"description": "Manage tessl skill tiles for installed plugins."
|
|
45
|
+
}
|
|
46
|
+
}
|
|
42
47
|
},
|
|
43
48
|
"engines": {
|
|
44
49
|
"node": ">=22.18"
|