hubskillz 0.2.2 → 0.3.0
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 +1 -1
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,7 +102,7 @@ Prompts are skipped when stdin is not a TTY: `sync` needs `--yes` to apply, `pro
|
|
|
102
102
|
| `HUBSKILLZ_BASE_URL` | Server URL for self-hosted instances. |
|
|
103
103
|
| `NO_COLOR` | Disables colours. Colours are also off when stdout is not a TTY. |
|
|
104
104
|
|
|
105
|
-
The server URL resolves in this order: `--base-url` flag, `HUBSKILLZ_BASE_URL`, the config file, then `https://hubskillz.com`.
|
|
105
|
+
The server URL resolves in this order: `--base-url` flag, `HUBSKILLZ_BASE_URL`, the config file, then `https://api.hubskillz.com`.
|
|
106
106
|
|
|
107
107
|
## Exit codes
|
|
108
108
|
|
package/dist/index.js
CHANGED
|
@@ -19160,7 +19160,7 @@ import { randomUUID } from "node:crypto";
|
|
|
19160
19160
|
import { mkdir, readFile, rm, writeFile } from "node:fs/promises";
|
|
19161
19161
|
import { homedir, hostname as hostname3 } from "node:os";
|
|
19162
19162
|
import { join } from "node:path";
|
|
19163
|
-
var DEFAULT_BASE_URL = "https://hubskillz.com";
|
|
19163
|
+
var DEFAULT_BASE_URL = "https://api.hubskillz.com";
|
|
19164
19164
|
var configSchema = external_exports.object({
|
|
19165
19165
|
baseUrl: external_exports.string().min(1),
|
|
19166
19166
|
token: external_exports.string().min(1),
|
|
@@ -20276,7 +20276,7 @@ function detailOf(plan) {
|
|
|
20276
20276
|
var GLOBAL_FLAGS = [
|
|
20277
20277
|
{
|
|
20278
20278
|
spec: "--base-url URL",
|
|
20279
|
-
help: "Server to talk to (default: config file, then https://hubskillz.com)"
|
|
20279
|
+
help: "Server to talk to (default: config file, then https://api.hubskillz.com)"
|
|
20280
20280
|
},
|
|
20281
20281
|
{ spec: "-h, --help", help: "Show help" },
|
|
20282
20282
|
{ spec: "-v, --version", help: "Show the version" }
|
|
@@ -20353,7 +20353,7 @@ function flagLines(flags) {
|
|
|
20353
20353
|
}
|
|
20354
20354
|
function usage() {
|
|
20355
20355
|
const width = Math.max(...COMMANDS.map((command) => command.name.length));
|
|
20356
|
-
return `${bold("hubskillz")} ${dim(`v${"0.
|
|
20356
|
+
return `${bold("hubskillz")} ${dim(`v${"0.3.0"}`)} keep your agent skills in sync
|
|
20357
20357
|
|
|
20358
20358
|
${bold("Usage")}
|
|
20359
20359
|
hubskillz <command> [flags]
|
|
@@ -20432,7 +20432,7 @@ Run \`hubskillz help\` for usage.`)
|
|
|
20432
20432
|
);
|
|
20433
20433
|
}
|
|
20434
20434
|
if (values.version === true) {
|
|
20435
|
-
process.stdout.write(`${"0.
|
|
20435
|
+
process.stdout.write(`${"0.3.0"}
|
|
20436
20436
|
`);
|
|
20437
20437
|
return Result.ok(void 0);
|
|
20438
20438
|
}
|