@oracle-agent/oracle 0.35.0 → 0.35.2
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 +1 -1
- package/dist/assets/skills/oracle-desk-product/SKILL.md +1 -1
- package/dist/bin/desk-server.mjs +23 -23
- package/dist/bin/oracle-data-mcp.mjs +11 -11
- package/dist/bin/oracle-gateway.mjs +36 -37
- package/dist/bin/oracle-telegram-mcp.mjs +12 -13
- package/dist/cli/commands/chat.mjs +200 -189
- package/dist/cli/commands/doctor.mjs +3 -3
- package/dist/cli/commands/eval.mjs +68 -67
- package/dist/cli/commands/farm.mjs +15 -15
- package/dist/cli/commands/model.mjs +204 -193
- package/dist/cli/commands/setup.mjs +35 -35
- package/dist/cli/commands/telegram.mjs +10 -11
- package/dist/data/desk-data.mjs +21 -21
- package/dist/index.mjs +35 -35
- package/package.json +1 -1
- package/public/install.ps1 +3 -3
- package/public/oracle-splash/assets/oracle-cli-v035-poster.jpg +0 -0
- package/public/oracle-splash/assets/oracle-cli-v035.gif +0 -0
- package/public/oracle-splash/downloads/index.html +2 -16
- package/public/oracle-splash/index.html +202 -138
- package/public/oracle-splash/install.ps1 +3 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Oracle installer for Windows — CLI
|
|
1
|
+
# Oracle installer for Windows — CLI (desktop app: private beta, opt-in).
|
|
2
2
|
#
|
|
3
3
|
# iex (irm https://oracle.demi.la/install.ps1)
|
|
4
4
|
#
|
|
@@ -12,7 +12,7 @@ $Base = if ($env:ORACLE_INSTALL_BASE) { $env:ORACLE_INSTALL_BASE.TrimEnd("/") }
|
|
|
12
12
|
$Pkg = if ($env:ORACLE_NPM_PACKAGE) { $env:ORACLE_NPM_PACKAGE } else { "@oracle-agent/oracle" }
|
|
13
13
|
$Ver = if ($env:ORACLE_INSTALL_VERSION) { $env:ORACLE_INSTALL_VERSION } else { "latest" }
|
|
14
14
|
$SkipCli = $env:ORACLE_INSTALL_SKIP_CLI -eq "1"
|
|
15
|
-
$SkipDesktop = $env:
|
|
15
|
+
$SkipDesktop = $env:ORACLE_INSTALL_DESKTOP -ne "1"
|
|
16
16
|
$SumsUrl = "$Base/downloads/artifacts/SHA256SUMS.txt"
|
|
17
17
|
$Work = Join-Path $env:TEMP ("oracle-setup-" + [guid]::NewGuid().ToString("n"))
|
|
18
18
|
|
|
@@ -98,5 +98,5 @@ function Install-Desktop {
|
|
|
98
98
|
|
|
99
99
|
if (-not $SkipCli) { Install-Cli }
|
|
100
100
|
if (-not $SkipDesktop) { Install-Desktop }
|
|
101
|
-
Log "done. CLI: oracle --version
|
|
101
|
+
Log "done. CLI: oracle --version then: oracle setup model (desktop app: private beta)"
|
|
102
102
|
if (-not $SkipCli) { Log "Telegram: set ORACLE_OWNER_TELEGRAM to your numeric id, then oracle gateway" }
|