mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-01 17:12:30 +00:00
Adds the opt-in bundled GitHub Copilot agent runtime, pinned SDK install path, docs/inventory, SDK/tool/sandbox/auth wiring, and replay/tool-safety fixes.
Verification:
- Local: git diff --check; fnm exec --using 24.15.0 pnpm tsgo:extensions; fnm exec --using 24.15.0 pnpm check:test-types; fnm exec --using 24.15.0 pnpm build.
- Autoreview local: clean for the replay-safety fix; branch autoreview engine returned empty output twice, so local autoreview plus local/Crabbox/CI proof was used.
- Crabbox focused Copilot: run_2c0db9f48a4a, 19 files / 485 tests passed.
- Crabbox additional boundary shard: run_26a246a1aa24, prompt snapshots and plugin SDK boundary/export checks passed.
- Crabbox live Copilot: run_d128e4048b4e, real gpt-4.1 turn with live_echo phase-1-green and clean session-file check.
- GitHub checks: green on head 7cc8657e0d, including Dependency Guard after exact-head approval.
Co-authored-by: Ramraj Balasubramanian <ramrajba@microsoft.com>
48 lines
2.3 KiB
JavaScript
48 lines
2.3 KiB
JavaScript
// Intentional Knip unused-file findings. These are dynamic entrypoints,
|
|
// generated/build inputs, manifest-discovered plugin surfaces, live-test
|
|
// helpers, or package bridge files that static production scanning cannot see.
|
|
export const KNIP_UNUSED_FILE_ALLOWLIST = [];
|
|
|
|
// Knip can disagree across supported local/CI platforms for files that are
|
|
// only reachable through test-only import graphs, sparse-checkout proof
|
|
// workspaces, dynamic entrypoints, manifest-discovered plugin surfaces, or
|
|
// package bridge files. Ignore these when reported, but do not require them
|
|
// to be reported.
|
|
export const KNIP_OPTIONAL_UNUSED_FILE_ALLOWLIST = [
|
|
"extensions/acpx/src/runtime-internals/mcp-command-line.mjs",
|
|
"extensions/acpx/src/runtime-internals/mcp-proxy.mjs",
|
|
"extensions/canvas/src/host/a2ui-app/bootstrap.js",
|
|
"extensions/canvas/src/host/a2ui-app/rolldown.config.mjs",
|
|
"extensions/copilot/src/doctor-probes.ts",
|
|
"extensions/copilot/src/telemetry-bridge.ts",
|
|
"extensions/copilot/src/user-input-bridge.ts",
|
|
"extensions/diffs/src/viewer-client.ts",
|
|
"extensions/diffs/src/viewer-payload.ts",
|
|
"extensions/matrix/src/plugin-entry.runtime.js",
|
|
"extensions/memory-core/src/memory-tool-manager-mock.ts",
|
|
"src/agents/subagent-registry.runtime.ts",
|
|
"src/auto-reply/inbound.group-require-mention-test-plugins.ts",
|
|
"src/auto-reply/reply/get-reply.test-loader.ts",
|
|
"src/cli/daemon-cli-compat.ts",
|
|
"src/commands/doctor/shared/deprecation-compat.ts",
|
|
"src/config/doc-baseline.runtime.ts",
|
|
"src/config/doc-baseline.ts",
|
|
"src/gateway/gateway-cli-backend.live-helpers.ts",
|
|
"src/gateway/gateway-cli-backend.live-probe-helpers.ts",
|
|
"src/gateway/gateway-codex-harness.live-helpers.ts",
|
|
"src/infra/changelog-unreleased.ts",
|
|
"src/mcp/openclaw-tools-serve.ts",
|
|
"src/mcp/plugin-tools-handlers.ts",
|
|
"src/mcp/plugin-tools-serve.ts",
|
|
"src/mcp/tools-stdio-server.ts",
|
|
"src/plugins/build-smoke-entry.ts",
|
|
"src/plugins/contracts/host-hook-fixture.ts",
|
|
"src/plugins/contracts/rootdir-boundary-canary.ts",
|
|
"src/plugins/contracts/tts-contract-suites.ts",
|
|
"src/plugins/runtime-sidecar-paths-baseline.ts",
|
|
"src/tasks/task-registry-control.runtime.ts",
|
|
"extensions/qa-lab/src/auth-profile.fixture.ts",
|
|
"extensions/qa-lab/src/codex-plugin.fixture.ts",
|
|
"src/gateway/test/server-sessions-helpers.ts",
|
|
];
|