@rackerlabs/agent-skills-cli 1.5.0 → 1.5.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/cli.mjs +4 -4
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -186,7 +186,7 @@ function isWellKnownUrl(input) {
|
|
|
186
186
|
}
|
|
187
187
|
const AGENTS_DIR$2 = ".agents";
|
|
188
188
|
const SKILLS_SUBDIR = "skills";
|
|
189
|
-
const DEFAULT_REGISTRY_URL = process.env.SKILLS_REGISTRY_URL || "https://
|
|
189
|
+
const DEFAULT_REGISTRY_URL = process.env.SKILLS_REGISTRY_URL || "https://catalog.dev.rackerlabs.com";
|
|
190
190
|
const CENTRAL_REGISTRY_REPO = "rackerlabs/central-skills-registry";
|
|
191
191
|
const SKILLS_REGISTRY_TOKEN_ENV = "SKILLS_REGISTRY_TOKEN";
|
|
192
192
|
const SKILLS_ISSUER_ENV = "SKILLS_ISSUER";
|
|
@@ -194,7 +194,7 @@ const SKILLS_CLIENT_ID_ENV = "SKILLS_CLIENT_ID";
|
|
|
194
194
|
const SKILLS_REGISTRY_URL_ENV = "SKILLS_REGISTRY_URL";
|
|
195
195
|
const SKILLS_OAUTH_AUDIENCE = "kestimator-api";
|
|
196
196
|
const SKILLS_OAUTH_SCOPES = "openid profile";
|
|
197
|
-
const DEFAULT_SKILLS_ISSUER = process.env[SKILLS_ISSUER_ENV] || "https://
|
|
197
|
+
const DEFAULT_SKILLS_ISSUER = process.env[SKILLS_ISSUER_ENV] || "https://helix.dev.rackerlabs.com";
|
|
198
198
|
const DEFAULT_SKILLS_CLIENT_ID = process.env[SKILLS_CLIENT_ID_ENV] || "skills-cli";
|
|
199
199
|
const silentOutput = new Writable({ write(_chunk, _encoding, callback) {
|
|
200
200
|
callback();
|
|
@@ -2307,7 +2307,7 @@ function createEmptyLocalLock() {
|
|
|
2307
2307
|
skills: {}
|
|
2308
2308
|
};
|
|
2309
2309
|
}
|
|
2310
|
-
var version$1 = "1.5.
|
|
2310
|
+
var version$1 = "1.5.1";
|
|
2311
2311
|
const isCancelled$1 = (value) => typeof value === "symbol";
|
|
2312
2312
|
async function isSourcePrivate(source) {
|
|
2313
2313
|
const ownerRepo = parseOwnerRepo(source);
|
|
@@ -4252,7 +4252,7 @@ function getVersion() {
|
|
|
4252
4252
|
const pkgPath = join(__dirname, "..", "package.json");
|
|
4253
4253
|
return JSON.parse(readFileSync(pkgPath, "utf-8")).version;
|
|
4254
4254
|
} catch {
|
|
4255
|
-
return "1.5.
|
|
4255
|
+
return "1.5.1";
|
|
4256
4256
|
}
|
|
4257
4257
|
}
|
|
4258
4258
|
const VERSION = getVersion();
|