@easonwumac/computer-linker 0.1.4 → 0.1.5
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/CHANGELOG.md +10 -0
- package/README.md +8 -4
- package/dist/cli.js +4 -2
- package/docs/architecture.md +8 -7
- package/docs/manual-test-plan.md +14 -14
- package/docs/product-spec.md +1 -1
- package/docs/release-checklist.md +9 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to Computer Linker will be documented in this file.
|
|
|
5
5
|
This project follows a small pre-1.0 changelog: breaking contract changes are
|
|
6
6
|
called out even when the package version is still `0.x`.
|
|
7
7
|
|
|
8
|
+
## 0.1.5 - 2026-06-27
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- `quickstart --json` now exposes `commands.check` as the productized install
|
|
13
|
+
check command while preserving `commands.selfTest` as a compatibility alias
|
|
14
|
+
for older agents.
|
|
15
|
+
- README and release/manual test docs now use `computer-linker check` as the
|
|
16
|
+
primary isolated install check command.
|
|
17
|
+
|
|
8
18
|
## 0.1.4 - 2026-06-27
|
|
9
19
|
|
|
10
20
|
### Added
|
package/README.md
CHANGED
|
@@ -70,10 +70,14 @@ directories. Keep real secrets outside exposed folders.
|
|
|
70
70
|
config and workspace, starts a loopback HTTP MCP server, verifies `/healthz`,
|
|
71
71
|
the local JSON API, MCP initialize, tools/list, `get_computer_info`, and one
|
|
72
72
|
read-only `computer_operation`, then removes the temporary files.
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
73
|
+
|
|
74
|
+
`quickstart --json` exposes `commands.check` for the optional isolated install
|
|
75
|
+
check. `commands.selfTest` remains as a compatibility alias for older agents
|
|
76
|
+
that already consumed the previous JSON field.
|
|
77
|
+
|
|
78
|
+
There is no web dashboard in the product path. Human setup and management are
|
|
79
|
+
CLI-first; MCP and the JSON API are only protocol surfaces for clients,
|
|
80
|
+
automation, and smoke checks. The default help output is intentionally short;
|
|
77
81
|
use `computer-linker help advanced` for service, config, API, and compatibility
|
|
78
82
|
commands. ChatGPT-specific setup exports are compatibility helpers under
|
|
79
83
|
`computer-linker help chatgpt`; prefer the generic MCP client commands first.
|
package/dist/cli.js
CHANGED
|
@@ -3495,6 +3495,7 @@ function buildQuickstartReport(options) {
|
|
|
3495
3495
|
if (options.tunnelProvider) {
|
|
3496
3496
|
nextActions.push("Use tunnel status and connection history to confirm traffic reaches /mcp only.");
|
|
3497
3497
|
}
|
|
3498
|
+
const checkCommand = formatCliCommand([...commandParts, "check"]);
|
|
3498
3499
|
return {
|
|
3499
3500
|
kind: "computer-linker-quickstart",
|
|
3500
3501
|
schemaVersion: 1,
|
|
@@ -3513,7 +3514,8 @@ function buildQuickstartReport(options) {
|
|
|
3513
3514
|
openaiTunnelId: options.tunnelProvider === "openai" ? options.openaiTunnelId ?? "tunnel_..." : null,
|
|
3514
3515
|
},
|
|
3515
3516
|
commands: {
|
|
3516
|
-
|
|
3517
|
+
check: checkCommand,
|
|
3518
|
+
selfTest: checkCommand,
|
|
3517
3519
|
start: formatCliCommand(startParts),
|
|
3518
3520
|
status: formatCliCommand([...commandParts, "status"]),
|
|
3519
3521
|
token: formatCliCommand([...commandParts, "client", "setup", "--show-token"]),
|
|
@@ -3574,7 +3576,7 @@ function printQuickstartReport(report) {
|
|
|
3574
3576
|
console.log(` ${report.commands.tunnelStatus}`);
|
|
3575
3577
|
if (report.commands.historyConnections)
|
|
3576
3578
|
console.log(` ${report.commands.historyConnections}`);
|
|
3577
|
-
console.log(` optional isolated install check: ${report.commands.
|
|
3579
|
+
console.log(` optional isolated install check: ${report.commands.check}`);
|
|
3578
3580
|
}
|
|
3579
3581
|
function quickstartCommandParts() {
|
|
3580
3582
|
return invocationCommandParts();
|
package/docs/architecture.md
CHANGED
|
@@ -20,10 +20,10 @@ manually before a wider release. The local and CI release gate is
|
|
|
20
20
|
the progress-reporting test runner, build, and package smoke.
|
|
21
21
|
The package smoke uses `npm pack --dry-run` to verify packed files, CLI bins,
|
|
22
22
|
SDK exports, release docs, security policy, and the published
|
|
23
|
-
`computer_operation` schema, then creates a real `.tgz`, installs it into a
|
|
24
|
-
temporary consumer project, runs the installed `computer-linker` bin, verifies
|
|
25
|
-
installed `
|
|
26
|
-
directories, and imports the installed SDK entrypoint. The package build uses
|
|
23
|
+
`computer_operation` schema, then creates a real `.tgz`, installs it into a
|
|
24
|
+
temporary consumer project, runs the installed `computer-linker` bin, verifies
|
|
25
|
+
installed `check`, `setup`, and `status` against isolated config
|
|
26
|
+
directories, and imports the installed SDK entrypoint. The package build uses
|
|
27
27
|
`tsconfig.build.json` so tests are typechecked but are not emitted into the
|
|
28
28
|
runtime package.
|
|
29
29
|
|
|
@@ -414,9 +414,10 @@ surface for the same config file used by the MCP server:
|
|
|
414
414
|
mode, local MCP URL, auth summary, workspace/tunnel summary, user-facing
|
|
415
415
|
readiness, and the next few actions. `status --details` prints the full
|
|
416
416
|
workspace rows, warnings, running tunnel rows, and all next actions.
|
|
417
|
-
- `computer-linker
|
|
418
|
-
starts the loopback HTTP MCP server, runs the generic MCP SDK smoke flow, and
|
|
419
|
-
exits non-zero when the installed CLI/server/tool flow is not working.
|
|
417
|
+
- `computer-linker check` creates an isolated temporary config/workspace,
|
|
418
|
+
starts the loopback HTTP MCP server, runs the generic MCP SDK smoke flow, and
|
|
419
|
+
exits non-zero when the installed CLI/server/tool flow is not working.
|
|
420
|
+
`computer-linker self-test` remains available as a compatibility command.
|
|
420
421
|
- `computer-linker doctor` shows full runtime diagnostics, startup readiness,
|
|
421
422
|
local MCP/API URLs, security findings, tool availability, release readiness,
|
|
422
423
|
and next actions.
|
package/docs/manual-test-plan.md
CHANGED
|
@@ -11,26 +11,26 @@ installed package instead, replace `npm run dev --` with `computer-linker`.
|
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
13
|
npm ci
|
|
14
|
-
npm run product:check
|
|
15
|
-
npm run alpha:check
|
|
16
|
-
npm run public:mirror -- --dry-run --remote <github-owner>/<public-repo>
|
|
17
|
-
npm run dev --
|
|
14
|
+
npm run product:check
|
|
15
|
+
npm run alpha:check
|
|
16
|
+
npm run public:mirror -- --dry-run --remote <github-owner>/<public-repo>
|
|
17
|
+
npm run dev -- check
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Expected:
|
|
21
21
|
|
|
22
|
-
- typecheck, tests, build, release validation, and package smoke pass
|
|
23
|
-
- package smoke reports `computer-linker-<version>.tgz` and verifies a
|
|
24
|
-
temporary consumer install, installed CLI execution, installed
|
|
25
|
-
isolated setup/status, and SDK import
|
|
22
|
+
- typecheck, tests, build, release validation, and package smoke pass
|
|
23
|
+
- package smoke reports `computer-linker-<version>.tgz` and verifies a
|
|
24
|
+
temporary consumer install, installed CLI execution, installed check,
|
|
25
|
+
isolated setup/status, and SDK import
|
|
26
26
|
- alpha readiness reports `status: ready`, or `status: needs_attention` only
|
|
27
27
|
because preserved Git history must be published through `public:mirror`
|
|
28
28
|
- `public:mirror -- --dry-run --remote ...` reports the mirror dry-run is
|
|
29
29
|
publishable when the fresh public mirror path is accepted and the other gates
|
|
30
30
|
pass; before a real mirror release, resolve any `release tag check: blocked
|
|
31
31
|
for real run` changelog warning
|
|
32
|
-
- `
|
|
33
|
-
without touching real user workspaces
|
|
32
|
+
- `check` reports `ready: yes` and verifies the local MCP SDK tool flow
|
|
33
|
+
without touching real user workspaces
|
|
34
34
|
- external MCP client/tunnel evidence is still pending until the later tunnel
|
|
35
35
|
smoke step writes `.computer-linker-alpha-evidence.json`
|
|
36
36
|
|
|
@@ -129,10 +129,10 @@ npm run dev -- start . --id app
|
|
|
129
129
|
Terminal B:
|
|
130
130
|
|
|
131
131
|
```bash
|
|
132
|
-
npm run dev -- doctor
|
|
133
|
-
npm run dev -- status
|
|
134
|
-
npm run dev --
|
|
135
|
-
npm run dev -- profile
|
|
132
|
+
npm run dev -- doctor
|
|
133
|
+
npm run dev -- status
|
|
134
|
+
npm run dev -- check
|
|
135
|
+
npm run dev -- profile
|
|
136
136
|
npm run dev -- client setup
|
|
137
137
|
npm run dev -- client setup --details
|
|
138
138
|
npm run dev -- client setup --show-token
|
package/docs/product-spec.md
CHANGED
|
@@ -779,7 +779,7 @@ Auth rules:
|
|
|
779
779
|
|
|
780
780
|
Smoke tests:
|
|
781
781
|
|
|
782
|
-
- installed CLI
|
|
782
|
+
- installed CLI check using a temporary config and workspace.
|
|
783
783
|
- local MCP initialize, tools/list, `get_computer_info`, and read-only
|
|
784
784
|
`computer_operation` through the MCP SDK.
|
|
785
785
|
- HTTP `/healthz`.
|
|
@@ -17,10 +17,10 @@ This performs:
|
|
|
17
17
|
- Release metadata validation.
|
|
18
18
|
- TypeScript typecheck.
|
|
19
19
|
- Full test suite.
|
|
20
|
-
- Runtime build.
|
|
21
|
-
- Package smoke check with `npm pack --dry-run`, real `.tgz` creation,
|
|
22
|
-
temporary consumer install, installed CLI execution, isolated installed
|
|
23
|
-
`
|
|
20
|
+
- Runtime build.
|
|
21
|
+
- Package smoke check with `npm pack --dry-run`, real `.tgz` creation,
|
|
22
|
+
temporary consumer install, installed CLI execution, isolated installed
|
|
23
|
+
`check`, `setup` / `status` config smoke, and installed SDK import.
|
|
24
24
|
|
|
25
25
|
Before publishing a public npm/package artifact, run:
|
|
26
26
|
|
|
@@ -237,10 +237,11 @@ For each shell or Codex-enabled scope, verify:
|
|
|
237
237
|
|
|
238
238
|
## Smoke Commands
|
|
239
239
|
|
|
240
|
-
```bash
|
|
241
|
-
computer-linker init
|
|
242
|
-
computer-linker
|
|
243
|
-
computer-linker
|
|
240
|
+
```bash
|
|
241
|
+
computer-linker init
|
|
242
|
+
computer-linker check
|
|
243
|
+
computer-linker self-test
|
|
244
|
+
computer-linker status
|
|
244
245
|
computer-linker status --details
|
|
245
246
|
computer-linker status --json
|
|
246
247
|
computer-linker doctor
|