@stzhu/skills 0.1.1 → 0.1.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.
package/dist/bash-complete.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { n as app, t as buildContext } from "./context-
|
|
2
|
+
import { n as app, t as buildContext } from "./context-BQaSQqU1.mjs";
|
|
3
3
|
import { proposeCompletions } from "@stricli/core";
|
|
4
4
|
//#region src/bin/bash-complete.ts
|
|
5
5
|
const inputs = process.argv.slice(3);
|
package/dist/cli.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { n as app, t as buildContext } from "./context-
|
|
2
|
+
import { n as app, t as buildContext } from "./context-BQaSQqU1.mjs";
|
|
3
3
|
import { run } from "@stricli/core";
|
|
4
4
|
//#region src/bin/cli.ts
|
|
5
5
|
await run(app, process.argv.slice(2), buildContext(process));
|
|
@@ -5,12 +5,9 @@ import os from "node:os";
|
|
|
5
5
|
import path from "node:path";
|
|
6
6
|
import { findWorkspacesRoot } from "find-workspaces";
|
|
7
7
|
//#region package.json
|
|
8
|
-
var version = "0.1.
|
|
8
|
+
var version = "0.1.2";
|
|
9
9
|
var description = "Skills CLI";
|
|
10
|
-
var bin = {
|
|
11
|
-
"__stz-skills_bash_complete": "dist/bash-complete.mjs",
|
|
12
|
-
"stz-skills": "dist/cli.mjs"
|
|
13
|
-
};
|
|
10
|
+
var bin = { "stz-skills": "dist/cli.mjs" };
|
|
14
11
|
const agentLogbookRoutes = buildRouteMap({
|
|
15
12
|
routes: {
|
|
16
13
|
stats: buildCommand({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stzhu/skills",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Skills CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skills"
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"author": "Steve Zhu <4130171+stevezhu@users.noreply.github.com>",
|
|
10
10
|
"repository": "github:stevezhu/skills",
|
|
11
11
|
"bin": {
|
|
12
|
-
"__stz-skills_bash_complete": "dist/bash-complete.mjs",
|
|
13
12
|
"stz-skills": "dist/cli.mjs"
|
|
14
13
|
},
|
|
15
14
|
"files": [
|