feat: add pure ssh2 remote operations

This commit is contained in:
云服务部-叶林立
2026-08-21 19:51:43 +08:00
parent d3bf562189
commit 0ac50eb581
62 changed files with 3701 additions and 47 deletions
+10
View File
@@ -0,0 +1,10 @@
import assert from "node:assert/strict";
import { readFileSync } from "node:fs";
import test from "node:test";
const extensionSource = readFileSync(new URL("../index.ts", import.meta.url), "utf8");
test("does not discover or inject remote project instruction files", () => {
assert.doesNotMatch(extensionSource, /AGENTS\.md|CLAUDE\.md/);
assert.doesNotMatch(extensionSource, /loadRemoteContext|Remote Project Context/);
});