facult 2.1.0 → 2.1.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/README.md +6 -3
- package/bin/fclt.cjs +2 -2
- package/package.json +4 -4
- package/src/self-update.ts +1 -1
package/README.md
CHANGED
|
@@ -4,8 +4,11 @@
|
|
|
4
4
|
<a aria-label="NPM version" href="https://www.npmjs.com/package/facult">
|
|
5
5
|
<img alt="facult npm version" src="https://img.shields.io/npm/v/facult.svg?style=flat-square&logo=npm&labelColor=000000&label=facult">
|
|
6
6
|
</a>
|
|
7
|
-
<a aria-label="
|
|
8
|
-
<img alt="
|
|
7
|
+
<a aria-label="Homebrew tap" href="https://github.com/hack-dance/homebrew-tap">
|
|
8
|
+
<img alt="Homebrew tap" src="https://img.shields.io/badge/homebrew-hack--dance%2Ftap%2Ffclt-FBB040.svg?style=flat-square&logo=homebrew&logoColor=white&labelColor=000000">
|
|
9
|
+
</a>
|
|
10
|
+
<a aria-label="CI status" href="https://github.com/hack-dance/fclt/actions/workflows/ci.yml">
|
|
11
|
+
<img alt="CI" src="https://img.shields.io/github/actions/workflow/status/hack-dance/fclt/ci.yml?branch=main&style=flat-square&logo=github&label=ci&labelColor=000000">
|
|
9
12
|
</a>
|
|
10
13
|
<a aria-label="hack.dance" href="https://hack.dance">
|
|
11
14
|
<img alt="Made by hack.dance" src="https://img.shields.io/badge/MADE%20BY%20HACK.DANCE-000000.svg?style=flat-square&labelColor=000000">
|
|
@@ -196,7 +199,7 @@ npx --yes -p facult fclt --help
|
|
|
196
199
|
Direct binary install from GitHub Releases (macOS/Linux):
|
|
197
200
|
|
|
198
201
|
```bash
|
|
199
|
-
curl -fsSL https://github.com/hack-dance/
|
|
202
|
+
curl -fsSL https://github.com/hack-dance/fclt/releases/latest/download/fclt-install.sh | bash
|
|
200
203
|
```
|
|
201
204
|
|
|
202
205
|
Windows and manual installs can download the correct binary from each release page:
|
package/bin/fclt.cjs
CHANGED
|
@@ -11,7 +11,7 @@ const { spawnSync } = require("node:child_process");
|
|
|
11
11
|
const pkg = require("../package.json");
|
|
12
12
|
|
|
13
13
|
const REPO_OWNER = "hack-dance";
|
|
14
|
-
const REPO_NAME = "
|
|
14
|
+
const REPO_NAME = "fclt";
|
|
15
15
|
const PACKAGE_NAME = "facult";
|
|
16
16
|
const DOWNLOAD_RETRIES = 12;
|
|
17
17
|
const DOWNLOAD_RETRY_DELAY_MS = 5000;
|
|
@@ -67,7 +67,7 @@ async function main() {
|
|
|
67
67
|
`Reason: ${message}`,
|
|
68
68
|
"",
|
|
69
69
|
"Try installing directly from releases:",
|
|
70
|
-
"https://github.com/hack-dance/
|
|
70
|
+
"https://github.com/hack-dance/fclt/releases",
|
|
71
71
|
].join("\n")
|
|
72
72
|
);
|
|
73
73
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "facult",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Manage canonical AI capabilities, sync surfaces, and evolution state.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/hack-dance/
|
|
9
|
+
"url": "git+https://github.com/hack-dance/fclt.git"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://github.com/hack-dance/
|
|
11
|
+
"homepage": "https://github.com/hack-dance/fclt#readme",
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/hack-dance/
|
|
13
|
+
"url": "https://github.com/hack-dance/fclt/issues"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"cli",
|
package/src/self-update.ts
CHANGED