@theholocron/cli 2.0.0-alpha.69 → 2.0.0-alpha.70

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.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -68,12 +68,12 @@ A minimal config — for repos with a `package.json` and a GitHub remote
68
68
 
69
69
  Additional `repo` fields recognised by `holocron setup`:
70
70
 
71
- | Field | Type | Description |
72
- | ------------------ | ----------------------------------------- | ----------- |
73
- | `repo.teams` | `Array<string \| { slug, permission }>` | GitHub teams granted repo access. String shorthand defaults to `push` (Write). `holocron setup` also writes `.github/CODEOWNERS` for teams with `push`/`maintain`/`admin`. |
74
- | `repo.topics` | `string[]` | GitHub topics set on the repository. |
75
- | `repo.protection` | `"balanced" \| "strict" \| "none"` | Branch-protection preset applied by `holocron setup`. |
76
- | `repo.properties` | `RepoProperties` | Org-level custom property values synced to the GitHub dashboard. |
71
+ | Field | Type | Description |
72
+ | ----------------- | --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
73
+ | `repo.teams` | `Array<string \| { slug, permission }>` | GitHub teams granted repo access. String shorthand defaults to `push` (Write). `holocron setup` also writes `.github/CODEOWNERS` for teams with `push`/`maintain`/`admin`. |
74
+ | `repo.topics` | `string[]` | GitHub topics set on the repository. |
75
+ | `repo.protection` | `"balanced" \| "strict" \| "none"` | Branch-protection preset applied by `holocron setup`. |
76
+ | `repo.properties` | `RepoProperties` | Org-level custom property values synced to the GitHub dashboard. |
77
77
 
78
78
  ### Skills installer
79
79
 
@@ -81,9 +81,9 @@ Additional `repo` fields recognised by `holocron setup`:
81
81
 
82
82
  ```ts
83
83
  export default defineConfig({
84
- agent: "claude", // "claude" | "codex" | "gemini"
85
- skills: ["git-safety", "pr-workflow"], // skill names from @theholocron/skills
86
- providers: { source: "github" },
84
+ agent: "claude", // "claude" | "codex" | "gemini"
85
+ skills: ["git-safety", "pr-workflow"], // skill names from @theholocron/skills
86
+ providers: { source: "github" },
87
87
  });
88
88
  ```
89
89
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/cli",
3
- "version": "2.0.0-alpha.69",
3
+ "version": "2.0.0-alpha.70",
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",