oasis_test_v2 0.0.0 → 0.2.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.
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env bash
2
+ # Outline LLM Wiki wrapper. Token 只在本子进程 source,不进入 agent 环境。
3
+
4
+ set -euo pipefail
5
+
6
+ if [ -z "${OUTLINE_CREDS_FILE:-}" ] || [ ! -f "${OUTLINE_CREDS_FILE}" ]; then
7
+ echo "outline-kb: connector credentials are unavailable" >&2
8
+ exit 78
9
+ fi
10
+ if [ -z "${OUTLINE_KB_SCRIPT:-}" ] || [ ! -f "${OUTLINE_KB_SCRIPT}" ]; then
11
+ echo "outline-kb: bundled runtime asset is unavailable" >&2
12
+ exit 78
13
+ fi
14
+
15
+ # shellcheck disable=SC1090
16
+ source "${OUTLINE_CREDS_FILE}"
17
+ exec node "${OUTLINE_KB_SCRIPT}" "$@"
package/package.json CHANGED
@@ -1,7 +1,31 @@
1
1
  {
2
2
  "name": "oasis_test_v2",
3
- "version": "0.0.0",
4
- "description": "Placeholder reserved for the Oasis node daemon release channels. Not usable yet.",
5
- "license": "UNLICENSED",
6
- "private": false
3
+ "version": "0.2.1",
4
+ "description": "Oasis node daemon + CLI background daemon, auto-start, full server CLI",
5
+ "bin": {
6
+ "oasis": "./dist/index.js"
7
+ },
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "build": "node build.mjs",
13
+ "prepublishOnly": "pnpm build"
14
+ },
15
+ "devDependencies": {
16
+ "@oasis/adapters": "workspace:*",
17
+ "@oasis/cli": "workspace:*",
18
+ "@oasis/connectors": "workspace:*",
19
+ "@oasis/contract": "workspace:*",
20
+ "@oasis/core": "workspace:*",
21
+ "@oasis/server": "workspace:*",
22
+ "@oasis/storage": "workspace:*",
23
+ "esbuild": "^0.24.0"
24
+ },
25
+ "engines": {
26
+ "node": ">=20"
27
+ },
28
+ "oasisRelease": {
29
+ "sourceHead": "fafcc6e3d19ff6f8c028cd9580fe3e1e4786d2c7"
30
+ }
7
31
  }
package/README.md DELETED
@@ -1 +0,0 @@
1
- Placeholder package reserved by open_friday. Not usable yet.