yourskills 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/README.md +2 -2
- package/dist/main.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,10 +17,10 @@ npm i -g yourskills
|
|
|
17
17
|
Needs **Node 22.20.0 or later**. You do not need Bun, and you do not need to install the
|
|
18
18
|
`skills` command separately: it ships as a dependency.
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
Then sign in. There is no address to configure: the command already knows where your
|
|
21
|
+
registry is.
|
|
21
22
|
|
|
22
23
|
```bash
|
|
23
|
-
yourskills config set server https://api.yourskills.store
|
|
24
24
|
yourskills login
|
|
25
25
|
```
|
|
26
26
|
|
package/dist/main.js
CHANGED
|
@@ -13,7 +13,7 @@ import { chmodSync, mkdirSync, rmSync } from "node:fs";
|
|
|
13
13
|
import { readFile, writeFile } from "node:fs/promises";
|
|
14
14
|
import { homedir } from "node:os";
|
|
15
15
|
import { join } from "node:path";
|
|
16
|
-
var DEFAULT_URL = "
|
|
16
|
+
var DEFAULT_URL = "https://api.yourskills.store";
|
|
17
17
|
function configDir() {
|
|
18
18
|
const xdg = process.env.XDG_CONFIG_HOME;
|
|
19
19
|
return join(xdg && xdg.length > 0 ? xdg : join(homedir(), ".config"), "yourskills");
|
|
@@ -4835,7 +4835,7 @@ Options:
|
|
|
4835
4835
|
-h, --help Show this help
|
|
4836
4836
|
|
|
4837
4837
|
Environment:
|
|
4838
|
-
YOURSKILLS_URL Registry base URL (default
|
|
4838
|
+
YOURSKILLS_URL Registry base URL (default api.yourskills.store)
|
|
4839
4839
|
YOURSKILLS_NO_TRACK Set to 1 to disable usage counting outright`;
|
|
4840
4840
|
function configCommand(rest) {
|
|
4841
4841
|
const [action, key, ...value] = rest;
|
|
@@ -5246,7 +5246,7 @@ function HelpScreen({ text }) {
|
|
|
5246
5246
|
// package.json
|
|
5247
5247
|
var package_default = {
|
|
5248
5248
|
name: "yourskills",
|
|
5249
|
-
version: "0.1.
|
|
5249
|
+
version: "0.1.2",
|
|
5250
5250
|
description: "Browse, install and keep up to date the agent skills and bundles your team publishes on yourskills.",
|
|
5251
5251
|
license: "UNLICENSED",
|
|
5252
5252
|
homepage: "https://yourskills.store",
|
package/package.json
CHANGED