bellpull 0.0.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 ADDED
@@ -0,0 +1,22 @@
1
+ # bellpull
2
+
3
+ **Not yet released, and not yet on the roadmap.** This version reserves the name. The layer,
4
+ its incumbents and the measurements behind it are documented in
5
+ [`.sdlc/research/candidate-layers.md`](https://github.com/ofri-peretz/burgee/blob/main/.sdlc/research/candidate-layers.md).
6
+ An intent and a working release follow if and when the roadmap takes it up.
7
+
8
+ A **bellpull** is the cord in one room wired to a bell in another. You pull it here; a bell rings there; someone comes back to you.
9
+
10
+ That is a subprocess. Request work at a distance, work happens elsewhere, a result returns.
11
+
12
+ ## What it will be
13
+
14
+ - **A result, not a string and an exception.** `{ ok, code, signal, stdout, stderr, duration }`, with a static projection: readable as human text, as a `--json` envelope, or as an agent event.
15
+ - **Executable resolution included.** Finding the program and augmenting `PATH` are part of running it, not two more packages — the incumbents split this across `which` and `npm-run-path`.
16
+ - **Cross-platform argument handling**, without the shim being a separate dependency.
17
+ - **Drop-in paths** for `execa`, `cross-spawn` and `which`, graded by their own suites.
18
+ - **Zero external dependencies.**
19
+
20
+ ## Licence
21
+
22
+ MIT
@@ -0,0 +1,7 @@
1
+ /**
2
+ * bellpull — name reserved, not yet on the roadmap. The layer and the measurements
3
+ * behind it are documented in .sdlc/research/candidate-layers.md in the burgee
4
+ * repository. Until an intent is opened this entry exports only its own name, so
5
+ * that importing it costs nothing and promises nothing.
6
+ */
7
+ export declare const name: "bellpull";
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * bellpull — name reserved, not yet on the roadmap. The layer and the measurements
3
+ * behind it are documented in .sdlc/research/candidate-layers.md in the burgee
4
+ * repository. Until an intent is opened this entry exports only its own name, so
5
+ * that importing it costs nothing and promises nothing.
6
+ */
7
+ export const name = 'bellpull';
8
+ //# sourceMappingURL=index.js.map
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "bellpull",
3
+ "version": "0.0.1",
4
+ "description": "The cord you pull to ring a bell in another room. Subprocesses with executable resolution and a structured result every caller can read \u2014 human, JSON envelope or agent event. Drop-in paths for execa, cross-spawn and which. Zero dependencies.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "engines": {
8
+ "node": ">=24"
9
+ },
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js",
14
+ "default": "./dist/index.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "!dist/**/*.map",
20
+ "!dist/**/*.test.*"
21
+ ],
22
+ "scripts": {
23
+ "build": "tsc -p tsconfig.build.json",
24
+ "typecheck": "tsc -p tsconfig.json --noEmit",
25
+ "test": "vitest run --passWithNoTests",
26
+ "lint": "eslint src"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/ofri-peretz/burgee.git",
31
+ "directory": "packages/bellpull"
32
+ },
33
+ "homepage": "https://github.com/ofri-peretz/burgee/tree/main/packages/bellpull#readme",
34
+ "bugs": {
35
+ "url": "https://github.com/ofri-peretz/burgee/issues"
36
+ },
37
+ "keywords": [
38
+ "cli",
39
+ "subprocess",
40
+ "child-process",
41
+ "spawn",
42
+ "exec",
43
+ "execa",
44
+ "cross-spawn",
45
+ "which",
46
+ "npm-run-path",
47
+ "agent"
48
+ ],
49
+ "devDependencies": {
50
+ "vitest": "^4.0.0"
51
+ }
52
+ }