neosh 0.0.0
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 +29 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# neosh
|
|
2
|
+
|
|
3
|
+
This npm package is a **name reservation**. It installs nothing.
|
|
4
|
+
|
|
5
|
+
neosh is a terminal-first agent workspace, and it is a Rust binary rather than a Node program.
|
|
6
|
+
Install it one of these ways:
|
|
7
|
+
|
|
8
|
+
```sh
|
|
9
|
+
brew install neoswarm/tap/neosh # macOS and Linux
|
|
10
|
+
cargo install neosh # from source, needs a Rust toolchain
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
…or take a prebuilt binary from [the releases page](https://github.com/neoswarm/neosh/releases).
|
|
14
|
+
|
|
15
|
+
The npm packages that *are* real are the plugin ones — `@neosh/api` is what a plugin author writes
|
|
16
|
+
against:
|
|
17
|
+
|
|
18
|
+
```sh
|
|
19
|
+
npm install --save-dev @neosh/api
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Everything else lives at <https://github.com/neoswarm/neosh>.
|
|
23
|
+
|
|
24
|
+
## Why is this here?
|
|
25
|
+
|
|
26
|
+
Two reasons. It keeps the name pointing at the real project rather than at whatever someone else
|
|
27
|
+
publishes under it. And npm cannot attach a trusted publisher to a package that does not exist yet,
|
|
28
|
+
so a package has to be created before its releases can be tokenless — this one is created and then
|
|
29
|
+
left alone.
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "neosh",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Reserved for neosh, a terminal-first agent workspace. neosh is a Rust binary \u2014 install it from https://github.com/neoswarm/neosh/releases, `brew install neoswarm/tap/neosh`, or `cargo install neosh`. This package is a name reservation and installs nothing.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"neosh"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://github.com/neoswarm/neosh",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/neoswarm/neosh.git",
|
|
13
|
+
"directory": "npm/neosh"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"README.md"
|
|
17
|
+
]
|
|
18
|
+
}
|