@theholocron/cli 3.27.0 → 3.28.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/index.d.mts CHANGED
@@ -209,6 +209,13 @@ interface HolocronConfig {
209
209
  description?: string;
210
210
  /** Project homepage URL. Synced to package.json#homepage and the GitHub repo's website field by `holocron sync`. */
211
211
  homepage?: string;
212
+ /**
213
+ * Active org name for namespaced keyring lookup. When set, token resolution
214
+ * tries `<service>.<org>` before the unnamespaced `<service>` fallback, so
215
+ * a single machine can hold credentials for multiple GitHub orgs without
216
+ * collision. Overridden by `--org` CLI flag or `HOLOCRON_ORG` env var.
217
+ */
218
+ org?: string;
212
219
  /**
213
220
  * Repository identity and metadata. When set, `PluginLoader` injects
214
221
  * `repo.name` into every plugin's `RuntimeContext.repo` so plugins that
@@ -337,6 +344,7 @@ interface ResolvedHolocronConfig {
337
344
  name: string;
338
345
  description?: string;
339
346
  homepage?: string;
347
+ org?: string;
340
348
  repo?: RepoConfig;
341
349
  workflows?: Array<string | {
342
350
  name: string;
package/dist/index.mjs CHANGED
@@ -230,6 +230,7 @@ function resolveConfig(raw) {
230
230
  name: raw.name,
231
231
  description: raw.description,
232
232
  homepage,
233
+ org: raw.org,
233
234
  repo: raw.repo,
234
235
  workflows: raw.workflows,
235
236
  providers,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/cli",
3
- "version": "3.27.0",
3
+ "version": "3.28.1",
4
4
  "description": "The Holocron CLI — a pluggable, capability-based orchestrator for spinning up and operating software projects.",
5
5
  "homepage": "https://github.com/theholocron/holocron/tree/main/packages/cli#readme",
6
6
  "bugs": "https://github.com/theholocron/holocron/issues",
@@ -37,8 +37,8 @@
37
37
  "@inquirer/prompts": "^8.5.2",
38
38
  "@napi-rs/keyring": "^1.3.0",
39
39
  "@sentry/node": "^10.69.0",
40
- "@theholocron/github-client": "^1.7.1",
41
- "@theholocron/http-client": "^1.7.1",
40
+ "@theholocron/github-client": "^1.9.0",
41
+ "@theholocron/http-client": "^1.9.0",
42
42
  "chalk": "^6.0.0",
43
43
  "ora": "^9.4.1",
44
44
  "tsx": "4.22.4",