[Init] Initial commit - NetMesh terminal manager
Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled

This commit is contained in:
2026-09-13 18:24:01 +08:00
commit 3c72efcb7f
3255 changed files with 907009 additions and 0 deletions

View File

@@ -0,0 +1,170 @@
"use strict";
const { CAPABILITY_SURFACES, PERMISSION_MODES } = require("./constants.cjs");
const { getCapabilityByRpcMethod } = require("./registry.cjs");
const OBSERVER_DENY_MESSAGE = 'Operation denied: permission mode is "observer" (read-only). Change to "confirm" or "auto" in Settings → AI → Safety to allow this action.';
const CHAT_SESSION_REQUIRED_MESSAGE = "chatSessionId is required for write operations.";
const CHAT_SESSION_CANCELLED_MESSAGE = "Operation cancelled: the SDK agent session was stopped.";
const USER_DENIED_MESSAGE = "Operation denied by user.";
function requiresApprovalInConfirmMode(capability, surface) {
if (!capability) return false;
const binding = capability.surfaces?.[surface];
if (binding?.confirmInConfirmMode === true) return true;
if (capability.policy.bypassesApproval) return false;
if (capability.policy.write) return true;
if (capability.policy.sensitiveRead && binding?.confirmInConfirmMode !== false) {
return binding?.confirmInConfirmMode === true;
}
return false;
}
function isBlockedInObserverMode(capability) {
if (!capability) return false;
if (capability.policy.bypassesObserverBlock) return false;
return capability.policy.write;
}
function evaluateRpcPermission({
rpcMethod,
surface = CAPABILITY_SURFACES.BUILTIN,
permissionMode = PERMISSION_MODES.CONFIRM,
params = {},
context = {},
}) {
const capability = getCapabilityByRpcMethod(rpcMethod, surface);
if (!capability) {
return {
allowed: true,
requiresApproval: false,
capability: null,
};
}
if (capability?.policy.write && !params?.chatSessionId && surface === CAPABILITY_SURFACES.BUILTIN) {
return {
allowed: false,
requiresApproval: false,
error: CHAT_SESSION_REQUIRED_MESSAGE,
capability,
};
}
if (
capability?.policy.write
&& !capability.policy.bypassesChatCancel
&& context.chatSessionCancelled
&& surface === CAPABILITY_SURFACES.BUILTIN
) {
return {
allowed: false,
requiresApproval: false,
error: CHAT_SESSION_CANCELLED_MESSAGE,
capability,
};
}
if (permissionMode === PERMISSION_MODES.OBSERVER && isBlockedInObserverMode(capability)) {
return {
allowed: false,
requiresApproval: false,
error: OBSERVER_DENY_MESSAGE,
capability,
};
}
const requiresApproval = permissionMode === PERMISSION_MODES.CONFIRM
&& requiresApprovalInConfirmMode(capability, surface);
return {
allowed: true,
requiresApproval,
capability,
};
}
function evaluatePermissionWithGrants(ctx, grants = []) {
const base = evaluateRpcPermission(ctx);
if (!base.allowed || !base.requiresApproval || !base.capability) {
return base;
}
const { matchPermissionGrant } = require("../shared/permissionGrants.cjs");
const params = ctx?.params && typeof ctx.params === "object" ? ctx.params : {};
const matched = matchPermissionGrant(grants, {
capabilityId: base.capability.id,
chatSessionId: params.chatSessionId,
sessionId: params.sessionId,
args: params,
});
if (matched) {
return {
...base,
requiresApproval: false,
matchedGrantId: matched.id,
};
}
return base;
}
function buildRpcMethodSet(surface, predicate) {
const { getRpcMethodsForSurface } = require("./registry.cjs");
const methods = new Set();
for (const rpcMethod of getRpcMethodsForSurface(surface)) {
const capability = getCapabilityByRpcMethod(rpcMethod, surface);
if (!capability || capability.status !== "implemented") continue;
if (predicate(capability, rpcMethod)) {
methods.add(rpcMethod);
}
}
return methods;
}
const BUILTIN_WRITE_RPC_METHODS = buildRpcMethodSet(CAPABILITY_SURFACES.BUILTIN, (capability) => capability.policy.write);
const BUILTIN_APPROVAL_RPC_METHODS = buildRpcMethodSet(
CAPABILITY_SURFACES.BUILTIN,
(capability, rpcMethod) => requiresApprovalInConfirmMode(capability, CAPABILITY_SURFACES.BUILTIN),
);
const PUBLIC_WRITE_RPC_METHODS = buildRpcMethodSet(CAPABILITY_SURFACES.PUBLIC, (capability) => capability.policy.write);
const PUBLIC_CONFIRM_RPC_METHODS = buildRpcMethodSet(
CAPABILITY_SURFACES.PUBLIC,
(capability) => requiresApprovalInConfirmMode(capability, CAPABILITY_SURFACES.PUBLIC),
);
function isBuiltinWriteRpcMethod(method) {
return BUILTIN_WRITE_RPC_METHODS.has(method);
}
function isBuiltinApprovalRpcMethod(method) {
return BUILTIN_APPROVAL_RPC_METHODS.has(method);
}
function isPublicWriteRpcMethod(method) {
return PUBLIC_WRITE_RPC_METHODS.has(method);
}
function isPublicConfirmRpcMethod(method) {
return PUBLIC_CONFIRM_RPC_METHODS.has(method);
}
module.exports = {
OBSERVER_DENY_MESSAGE,
CHAT_SESSION_REQUIRED_MESSAGE,
CHAT_SESSION_CANCELLED_MESSAGE,
USER_DENIED_MESSAGE,
requiresApprovalInConfirmMode,
isBlockedInObserverMode,
evaluateRpcPermission,
evaluatePermissionWithGrants,
BUILTIN_WRITE_RPC_METHODS,
BUILTIN_APPROVAL_RPC_METHODS,
PUBLIC_WRITE_RPC_METHODS,
PUBLIC_CONFIRM_RPC_METHODS,
isBuiltinWriteRpcMethod,
isBuiltinApprovalRpcMethod,
isPublicWriteRpcMethod,
isPublicConfirmRpcMethod,
};