facult 2.0.1 → 2.1.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.
Files changed (2) hide show
  1. package/README.md +12 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -170,6 +170,14 @@ That is the core idea behind `fclt`: not just syncing skills, but growing facult
170
170
 
171
171
  Recommended global install:
172
172
 
173
+ ```bash
174
+ brew tap hack-dance/tap
175
+ brew install hack-dance/tap/fclt
176
+ fclt --help
177
+ ```
178
+
179
+ Package-manager install:
180
+
173
181
  ```bash
174
182
  npm install -g facult
175
183
  # or
@@ -787,8 +795,9 @@ Release behavior:
787
795
  2. `semantic-release` creates the version/tag and GitHub release (npm publish is disabled in this phase).
788
796
  3. The same release workflow then builds platform binaries and uploads them to that GitHub release.
789
797
  4. npm publish runs only after binary asset upload succeeds (`publish-npm` depends on `publish-assets`).
790
- 5. Published release assets include platform binaries, `facult-install.sh`, and `SHA256SUMS`.
791
- 6. The npm package launcher resolves your platform, downloads the matching release binary, caches it under `~/.ai/.facult/runtime/<version>/<platform-arch>/`, and runs it.
798
+ 5. Published release assets include platform binaries, `fclt-install.sh`, `facult-install.sh`, and `SHA256SUMS`.
799
+ 6. When `HOMEBREW_TAP_TOKEN` is configured, the release workflow also updates the Homebrew tap at `hack-dance/homebrew-tap`.
800
+ 7. The npm package launcher resolves your platform, downloads the matching release binary, caches it under `~/.ai/.facult/runtime/<version>/<platform-arch>/`, and runs it.
792
801
 
793
802
  Current prebuilt binary targets:
794
803
  - `darwin-x64`
@@ -803,6 +812,7 @@ Self-update behavior:
803
812
 
804
813
  Required secrets for publish:
805
814
  - `NPM_TOKEN`
815
+ - `HOMEBREW_TAP_TOKEN` (fine-grained token with contents write access to `hack-dance/homebrew-tap`)
806
816
 
807
817
  Local semantic-release dry-runs require a supported Node runtime (`>=24.10`).
808
818
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "facult",
3
- "version": "2.0.1",
3
+ "version": "2.1.0",
4
4
  "description": "Manage canonical AI capabilities, sync surfaces, and evolution state.",
5
5
  "type": "module",
6
6
  "license": "MIT",