@ifuryst/seedx 0.1.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Leo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # seedx
2
+
3
+ Seedx is a coding agent harness CLI for running local agent runtimes behind HTTP, MCP, WebSocket, and daemon transports.
4
+
5
+ This npm package bundles native seedx binaries for macOS, Linux, and Windows.
6
+
7
+ ```sh
8
+ npx @ifuryst/seedx@0.1.0 version
9
+ npx @ifuryst/seedx@0.1.0 serve --addr 127.0.0.1:7350
10
+ ```
package/bin/seedx ADDED
@@ -0,0 +1,58 @@
1
+ #!/usr/bin/env node
2
+ const { spawnSync } = require("node:child_process");
3
+ const path = require("node:path");
4
+
5
+ const launchTable = {
6
+ "darwin-arm64": [
7
+ "dist",
8
+ "darwin-arm64",
9
+ "seedx"
10
+ ],
11
+ "darwin-x64": [
12
+ "dist",
13
+ "darwin-x64",
14
+ "seedx"
15
+ ],
16
+ "linux-arm64": [
17
+ "dist",
18
+ "linux-arm64",
19
+ "seedx"
20
+ ],
21
+ "linux-x64": [
22
+ "dist",
23
+ "linux-x64",
24
+ "seedx"
25
+ ],
26
+ "win32-arm64": [
27
+ "dist",
28
+ "win32-arm64",
29
+ "seedx.exe"
30
+ ],
31
+ "win32-x64": [
32
+ "dist",
33
+ "win32-x64",
34
+ "seedx.exe"
35
+ ]
36
+ };
37
+ const key = `${process.platform}-${process.arch}`;
38
+ const relativeBinary = launchTable[key];
39
+
40
+ if (!relativeBinary) {
41
+ console.error(`seedx does not ship a native binary for ${key}.`);
42
+ process.exit(1);
43
+ }
44
+
45
+ const binary = path.join(__dirname, "..", ...relativeBinary);
46
+ const result = spawnSync(binary, process.argv.slice(2), { stdio: "inherit" });
47
+
48
+ if (result.error) {
49
+ console.error(result.error.message);
50
+ process.exit(1);
51
+ }
52
+
53
+ if (result.signal) {
54
+ console.error(`seedx exited due to signal ${result.signal}`);
55
+ process.exit(1);
56
+ }
57
+
58
+ process.exit(result.status ?? 0);
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@ifuryst/seedx",
3
+ "version": "0.1.0",
4
+ "description": "Coding agent harness CLI.",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/iFurySt/seedx#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/iFurySt/seedx.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/iFurySt/seedx/issues"
13
+ },
14
+ "bin": {
15
+ "seedx": "bin/seedx"
16
+ },
17
+ "files": [
18
+ "bin",
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "engines": {
24
+ "node": ">=18"
25
+ }
26
+ }