@darkrei08/setup-ai 3.0.3 → 3.0.4
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 +7 -7
- package/package.json +1 -1
- package/setup-ai.ps1 +2 -2
- package/setup-ai.sh +2 -2
package/README.md
CHANGED
|
@@ -10,24 +10,24 @@ skill — each via its **official, current** method for your OS.
|
|
|
10
10
|
|
|
11
11
|
## Quick start
|
|
12
12
|
|
|
13
|
-
One command
|
|
13
|
+
One command — opens a menu to choose what to set up:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npx
|
|
16
|
+
npx @darkrei08/setup-ai
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Non-interactive:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npx
|
|
23
|
-
npx
|
|
22
|
+
npx @darkrei08/setup-ai --only pi,codex,opencode # just these
|
|
23
|
+
npx @darkrei08/setup-ai --all # everything
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
That's the whole thing. Three details worth knowing:
|
|
27
27
|
|
|
28
|
+
- **Use the npm package above.** `npx github:darkrei08/setup-ai` also works, but many npm setups block git fetches (`EALLOWGIT`); the published package avoids that. Run it from any folder except the repo's own source dir.
|
|
28
29
|
- **Windows PowerShell**: one command per line (no bash `\`). If node or git was just installed, open a **new terminal** so PATH refreshes.
|
|
29
|
-
- **What it does**: detects your OS and runs `setup-ai.sh` (macOS/Linux) or `setup-ai.ps1` (Windows).
|
|
30
|
-
- **Shorter name**: once it's on npm, drop `github:` → `npx @darkrei08/setup-ai` (run it from any folder except the repo's own source dir).
|
|
30
|
+
- **What it does**: detects your OS and runs `setup-ai.sh` (macOS/Linux) or `setup-ai.ps1` (Windows). `--list` shows modules; menu keys: ↑/↓ move · Space toggle · `a` all · Enter.
|
|
31
31
|
|
|
32
32
|
### npm vs npx
|
|
33
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@darkrei08/setup-ai",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"description": "Cross-OS installer for an AI coding toolchain (pi, codex, antigravity, opencode, herdr, gentle-ai, engram, Engineering Excellence) with an interactive module menu.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/setup-ai.ps1
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<#
|
|
3
3
|
==============================================================================
|
|
4
4
|
AI Dev Suite — Engineering Excellence Edition (Windows)
|
|
5
|
-
Version: 3.0.
|
|
5
|
+
Version: 3.0.4
|
|
6
6
|
|
|
7
7
|
Windows-native installer, sibling of setup-ai.sh. Uses each tool's official
|
|
8
8
|
Windows method: winget for language runtimes, the vendor install.ps1 scripts
|
|
@@ -41,7 +41,7 @@ try {
|
|
|
41
41
|
if (Get-Command chcp -ErrorAction SilentlyContinue) { chcp 65001 | Out-Null }
|
|
42
42
|
} catch { }
|
|
43
43
|
|
|
44
|
-
$ScriptVersion = "3.0.
|
|
44
|
+
$ScriptVersion = "3.0.4"
|
|
45
45
|
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
46
46
|
$LogDir = Join-Path $ScriptDir "logs"
|
|
47
47
|
New-Item -ItemType Directory -Force -Path $LogDir | Out-Null
|
package/setup-ai.sh
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# ==============================================================================
|
|
4
4
|
# AI Dev Suite — Engineering Excellence Edition
|
|
5
|
-
# Version: 3.0.
|
|
5
|
+
# Version: 3.0.4
|
|
6
6
|
#
|
|
7
7
|
# Cross-platform (macOS + all major Linux distros) installer for an AI coding
|
|
8
8
|
# toolchain. Windows is handled by the sibling setup-ai.ps1; the Node launcher
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
set -Eeuo pipefail
|
|
27
27
|
IFS=$'\n\t'
|
|
28
28
|
|
|
29
|
-
SCRIPT_VERSION="3.0.
|
|
29
|
+
SCRIPT_VERSION="3.0.4"
|
|
30
30
|
|
|
31
31
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
|
32
32
|
LOG_DIR="${SCRIPT_DIR}/logs"
|