@hasna/skills 0.1.67 → 0.1.68

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/bin/index.js CHANGED
@@ -36860,7 +36860,7 @@ var package_default;
36860
36860
  var init_package = __esm(() => {
36861
36861
  package_default = {
36862
36862
  name: "@hasna/skills",
36863
- version: "0.1.67",
36863
+ version: "0.1.68",
36864
36864
  description: "Skills library for AI coding agents",
36865
36865
  type: "module",
36866
36866
  bin: {
@@ -81508,7 +81508,13 @@ if (process.argv.includes("--no-color")) {
81508
81508
  }
81509
81509
  var program2 = new Command;
81510
81510
  program2.name("skills").description("Discover and run AI agent skills through the Skills CLI/MCP").version(package_default.version).option("--verbose", "Enable verbose logging", false).option("--no-color", "Disable colored output (also respects NO_COLOR env var)").enablePositionalOptions();
81511
- program2.command("interactive", { isDefault: true }).alias("i").description("Interactive skill browser (TUI)").action(() => {
81511
+ program2.command("interactive", { isDefault: true }).alias("i").allowExcessArguments(true).description("Interactive skill browser (TUI)").action((_options, command) => {
81512
+ const stray = command.args[0];
81513
+ if (stray !== undefined) {
81514
+ const verbs = program2.commands.map((c) => c.name()).filter((n) => n !== "interactive").sort();
81515
+ console.error(source_default.red(`error: unknown command '${stray}'. Valid commands: ${verbs.join(", ")}`));
81516
+ process.exit(1);
81517
+ }
81512
81518
  if (!isTTY2) {
81513
81519
  console.log(JSON.stringify(loadBasicRegistry().map(getCompactSkillDiscovery)));
81514
81520
  process.exit(0);
package/bin/mcp.js CHANGED
@@ -12943,7 +12943,7 @@ class StdioServerTransport {
12943
12943
  // package.json
12944
12944
  var package_default = {
12945
12945
  name: "@hasna/skills",
12946
- version: "0.1.67",
12946
+ version: "0.1.68",
12947
12947
  description: "Skills library for AI coding agents",
12948
12948
  type: "module",
12949
12949
  bin: {
package/bin/server.js CHANGED
@@ -22939,7 +22939,7 @@ var init_dist_es9 = __esm(() => {
22939
22939
  // package.json
22940
22940
  var package_default = {
22941
22941
  name: "@hasna/skills",
22942
- version: "0.1.67",
22942
+ version: "0.1.68",
22943
22943
  description: "Skills library for AI coding agents",
22944
22944
  type: "module",
22945
22945
  bin: {
package/dist/index.js CHANGED
@@ -10342,7 +10342,7 @@ import { dirname as dirname8, relative as relative3 } from "path";
10342
10342
  // package.json
10343
10343
  var package_default = {
10344
10344
  name: "@hasna/skills",
10345
- version: "0.1.67",
10345
+ version: "0.1.68",
10346
10346
  description: "Skills library for AI coding agents",
10347
10347
  type: "module",
10348
10348
  bin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/skills",
3
- "version": "0.1.67",
3
+ "version": "0.1.68",
4
4
  "description": "Skills library for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {