@callmeradical/augy 0.7.0 → 0.7.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.
- package/dist/index.js +9 -13
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -78,20 +78,16 @@ program.command("pin <skill>").description("Pin a skill so it is skipped during
|
|
|
78
78
|
program.command("unpin <skill>").description("Allow a pinned skill to receive updates again").action(async (skill) => {
|
|
79
79
|
await setPinned(skill, false);
|
|
80
80
|
});
|
|
81
|
-
var
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
} else {
|
|
90
|
-
const { tagShowCommand } = await import("./tag-DAWGOKEO.js");
|
|
91
|
-
await tagShowCommand(skill);
|
|
92
|
-
}
|
|
81
|
+
var tag = program.command("tag").description("Manage skill context tags (personal / work / universal / custom)");
|
|
82
|
+
tag.command("set <skill> [contexts...]").description("Set context tags on a skill e.g. augy tag set tdd work universal").action(async (skill, contexts) => {
|
|
83
|
+
const { tagSetCommand } = await import("./tag-DAWGOKEO.js");
|
|
84
|
+
await tagSetCommand(skill, contexts ?? []);
|
|
85
|
+
});
|
|
86
|
+
tag.command("show <skill>").description("Show current context tags for a skill").action(async (skill) => {
|
|
87
|
+
const { tagShowCommand } = await import("./tag-DAWGOKEO.js");
|
|
88
|
+
await tagShowCommand(skill);
|
|
93
89
|
});
|
|
94
|
-
|
|
90
|
+
tag.command("migrate").description("Interactively assign context tags to all untagged skills").action(async () => {
|
|
95
91
|
const { tagMigrateCommand } = await import("./tag-DAWGOKEO.js");
|
|
96
92
|
await tagMigrateCommand();
|
|
97
93
|
});
|