@synsci/openscience 2.0.31 → 2.0.32-test.98.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 +35 -0
- package/package.json +12 -13
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @synsci/openscience
|
|
2
|
+
|
|
3
|
+
OpenScience is a model-agnostic, open-source AI research agent for scientific and ML engineering work. It runs a workspace in your browser where the agent plans tasks, writes and runs code, drives experiments, queries scientific databases, and writes up results. Bring your own API key, use eligible ChatGPT/Codex access, or connect a Synthetic Sciences account for managed credits.
|
|
4
|
+
|
|
5
|
+
Part of the [OpenScience](https://github.com/synthetic-sciences/OpenScience) repository.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @synsci/openscience
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The command is `openscience`.
|
|
14
|
+
|
|
15
|
+
On Linux, the bundled runtime requires kernel 5.1 or newer. Glibc binaries require glibc 2.17 or newer; separate musl packages are selected automatically. CentOS 7's stock 3.10 kernel is unsupported. On Linux ARM64, Bun-compiled executables currently require a 4 KB kernel page size; 16 KB and 64 KB page kernels fail early with a clear diagnostic while [upstream support](https://github.com/oven-sh/bun/issues/17627) remains open.
|
|
16
|
+
|
|
17
|
+
## Quick start
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
openscience # open the workspace in your browser
|
|
21
|
+
openscience ~/code/project # open it in a specific directory
|
|
22
|
+
openscience connect # connect a ChatGPT / Codex subscription locally
|
|
23
|
+
openscience login # connect Synthetic Sciences (optional; BYOK works without an account)
|
|
24
|
+
openscience run "..." # run a one-shot task
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Configuration lives in `~/.config/openscience/openscience.json`. Provider keys can be set in the workspace (bring your own key) or synced from your Synthetic Sciences account. Default, learned, installed, and project skills are local and work without an account.
|
|
28
|
+
|
|
29
|
+
## Docs
|
|
30
|
+
|
|
31
|
+
See the [repository README](https://github.com/synthetic-sciences/OpenScience#readme) for the full layout, provider setup, agent and skill architecture, and contribution guide.
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
Apache License 2.0. See [LICENSE](https://github.com/synthetic-sciences/OpenScience/blob/main/LICENSE). Not affiliated with Anthropic.
|
package/package.json
CHANGED
|
@@ -7,23 +7,22 @@
|
|
|
7
7
|
"preinstall": "node ./preinstall.mjs || exit 0",
|
|
8
8
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs || exit 0"
|
|
9
9
|
},
|
|
10
|
-
"version": "2.0.
|
|
10
|
+
"version": "2.0.32-test.98.1",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "git+https://github.com/synthetic-sciences/openscience.git"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@synsci/
|
|
17
|
-
"@synsci/openscience-
|
|
18
|
-
"@synsci/openscience-darwin-x64": "2.0.
|
|
19
|
-
"@synsci/openscience-
|
|
20
|
-
"@synsci/openscience-linux-x64-
|
|
21
|
-
"@synsci/openscience-linux-
|
|
22
|
-
"@synsci/openscience-
|
|
23
|
-
"@synsci/openscience-
|
|
24
|
-
"@synsci/openscience-linux-
|
|
25
|
-
"@synsci/openscience-
|
|
26
|
-
"@synsci/openscience-
|
|
27
|
-
"@synsci/openscience-linux-x64": "2.0.31"
|
|
16
|
+
"@synsci/openscience-windows-x64": "2.0.32-test.98.1",
|
|
17
|
+
"@synsci/openscience-darwin-x64": "2.0.32-test.98.1",
|
|
18
|
+
"@synsci/openscience-darwin-x64-baseline": "2.0.32-test.98.1",
|
|
19
|
+
"@synsci/openscience-linux-x64-baseline": "2.0.32-test.98.1",
|
|
20
|
+
"@synsci/openscience-linux-x64-musl": "2.0.32-test.98.1",
|
|
21
|
+
"@synsci/openscience-linux-arm64-musl": "2.0.32-test.98.1",
|
|
22
|
+
"@synsci/openscience-windows-x64-baseline": "2.0.32-test.98.1",
|
|
23
|
+
"@synsci/openscience-linux-x64-baseline-musl": "2.0.32-test.98.1",
|
|
24
|
+
"@synsci/openscience-linux-arm64": "2.0.32-test.98.1",
|
|
25
|
+
"@synsci/openscience-darwin-arm64": "2.0.32-test.98.1",
|
|
26
|
+
"@synsci/openscience-linux-x64": "2.0.32-test.98.1"
|
|
28
27
|
}
|
|
29
28
|
}
|