mirror of
https://github.com/Heretek-AI/openclaw.git
synced 2026-07-01 01:37:55 -04:00
a9ae1a6778
Matrix Protocol: - docker-compose.matrix.yml: Dendrite homeserver + PostgreSQL + Nginx TLS - src/channels/plugins/matrix-channel.ts: OpenClaw plugin implementation - docs/matrix-triad-setup.md: Setup guide with auth scheme (@tm1-4:triad.local) MCP Server Integration: - docs/mcp-triad-integration.md: SearXNG, Playwright, GitHub MCP configs - docs/mcp-curiosity-mapping.md: Gap-to-capability mapping Node Sync Architecture: - src/services/node-sync-service.ts: WebSocket peer sync + presence detection - src/services/node-sync-service.test.ts: Unit tests - docs/node-sync-architecture.md: Architecture docs Triad Resilience: - scripts/triad-corruption-check.mjs: SQLite + log + config + git integrity - docs/triad-resilience.md: Recovery procedures - .secure/deployment-logs/README.md: Schema v2 - skills/triad-heartbeat/SKILL.md: Corruption check integration NPM Publish Workflow: - scripts/npm-publish.mjs: version, changelog, validate, publish, rollback - .github/workflows/npm-publish.yml: GitHub Actions with provenance - docs/npm-publish-guide.md: Complete documentation All deliverables tested in Docker before production.
98 lines
2.7 KiB
TypeScript
Executable File
98 lines
2.7 KiB
TypeScript
Executable File
const rootEntries = [
|
|
"openclaw.mjs!",
|
|
"src/index.ts!",
|
|
"src/entry.ts!",
|
|
"src/cli/daemon-cli.ts!",
|
|
"src/infra/warning-filter.ts!",
|
|
"extensions/telegram/src/audit.ts!",
|
|
"extensions/telegram/src/token.ts!",
|
|
"src/hooks/bundled/*/handler.ts!",
|
|
"src/hooks/llm-slug-generator.ts!",
|
|
"src/plugin-sdk/*.ts!",
|
|
] as const;
|
|
|
|
const config = {
|
|
ignoreFiles: [
|
|
"scripts/**",
|
|
"**/__tests__/**",
|
|
"src/test-utils/**",
|
|
"**/test-helpers/**",
|
|
"**/test-fixtures/**",
|
|
"**/live-*.ts",
|
|
"**/test-*.ts",
|
|
"**/*test-helpers.ts",
|
|
"**/*test-fixtures.ts",
|
|
"**/*test-harness.ts",
|
|
"**/*test-utils.ts",
|
|
"**/*mocks.ts",
|
|
"**/*.e2e-mocks.ts",
|
|
"**/*.e2e-*.ts",
|
|
"**/*.harness.ts",
|
|
"**/*.job-fixtures.ts",
|
|
"**/*.mock-harness.ts",
|
|
"**/*.suite-helpers.ts",
|
|
"**/*.test-setup.ts",
|
|
"**/job-fixtures.ts",
|
|
"**/*test-mocks.ts",
|
|
"**/*test-runtime*.ts",
|
|
"**/*.mock-setup.ts",
|
|
"**/*.cases.ts",
|
|
"**/*.e2e-harness.ts",
|
|
"**/*.fixture.ts",
|
|
"**/*.fixtures.ts",
|
|
"**/*.mocks.ts",
|
|
"**/*.mocks.shared.ts",
|
|
"**/*.shared-test.ts",
|
|
"**/*.suite.ts",
|
|
"**/*.test-runtime.ts",
|
|
"**/*.testkit.ts",
|
|
"**/*.test-fixtures.ts",
|
|
"**/*.test-harness.ts",
|
|
"**/*.test-helper.ts",
|
|
"**/*.test-helpers.ts",
|
|
"**/*.test-mocks.ts",
|
|
"**/*.test-utils.ts",
|
|
"src/gateway/live-image-probe.ts",
|
|
"src/secrets/credential-matrix.ts",
|
|
"src/agents/claude-cli-runner.ts",
|
|
"src/agents/pi-auth-json.ts",
|
|
"src/agents/tool-policy.conformance.ts",
|
|
"src/auto-reply/reply/audio-tags.ts",
|
|
"src/gateway/live-tool-probe-utils.ts",
|
|
"src/gateway/server.auth.shared.ts",
|
|
"src/shared/text/assistant-visible-text.ts",
|
|
"extensions/telegram/src/bot/reply-threading.ts",
|
|
"extensions/telegram/src/draft-chunking.ts",
|
|
"extensions/msteams/src/conversation-store-memory.ts",
|
|
"extensions/msteams/src/polls-store-memory.ts",
|
|
"extensions/voice-call/src/providers/index.ts",
|
|
"extensions/voice-call/src/providers/tts-openai.ts",
|
|
],
|
|
workspaces: {
|
|
".": {
|
|
entry: rootEntries,
|
|
project: [
|
|
"src/**/*.ts!",
|
|
"scripts/**/*.{js,mjs,cjs,ts,mts,cts}!",
|
|
"*.config.{js,mjs,cjs,ts,mts,cts}!",
|
|
"*.mjs!",
|
|
],
|
|
},
|
|
ui: {
|
|
entry: ["index.html!", "src/main.ts!", "vite.config.ts!", "vitest*.ts!"],
|
|
project: ["src/**/*.{ts,tsx}!"],
|
|
},
|
|
"packages/*": {
|
|
entry: ["index.js!", "scripts/postinstall.js!"],
|
|
project: ["index.js!", "scripts/**/*.js!"],
|
|
},
|
|
"extensions/*": {
|
|
entry: ["index.ts!"],
|
|
project: ["index.ts!", "src/**/*.ts!"],
|
|
ignoreDependencies: ["openclaw"],
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export default config;
|