docs: document repository scripts

This commit is contained in:
Peter Steinberger
2026-06-04 20:52:36 -04:00
parent 95d51c5fe8
commit b8d08f0cfd
173 changed files with 195 additions and 19 deletions

View File

@@ -1,4 +1,5 @@
#!/usr/bin/env -S node --import tsx
// Channel Message Flows script supports OpenClaw repository automation.
import { setTimeout as sleep } from "node:timers/promises";
import { fileURLToPath } from "node:url";
import { Bot, type ApiClientOptions } from "grammy";

View File

@@ -1,4 +1,5 @@
#!/usr/bin/env bun
// Discord Acp Plain Language Smoke script supports OpenClaw repository automation.
import { execFile } from "node:child_process";
// Manual ACP thread smoke for plain-language routing.
// Keep this script available for regression/debug validation. Do not delete.

View File

@@ -1,3 +1,4 @@
// Gateway Smoke script supports OpenClaw repository automation.
import { fileURLToPath } from "node:url";
import {
MIN_CLIENT_PROTOCOL_VERSION,

View File

@@ -1 +1,2 @@
// Gateway Ws Client script supports OpenClaw repository automation.
export * from "../lib/gateway-ws-client.ts";

View File

@@ -1,3 +1,4 @@
// Ios Node E2E script supports OpenClaw repository automation.
import {
MIN_CLIENT_PROTOCOL_VERSION,
PROTOCOL_VERSION,

View File

@@ -1,3 +1,4 @@
// Realtime Talk Live Smoke script supports OpenClaw repository automation.
import { mkdtemp, rm, writeFile } from "node:fs/promises";
import { tmpdir } from "node:os";
import path from "node:path";

View File

@@ -1,3 +1,4 @@
// Test Device Pair Telegram script supports OpenClaw repository automation.
import { sendMessageTelegram } from "../../extensions/telegram/runtime-api.js";
import { getRuntimeConfig } from "../../src/config/config.js";
import { matchPluginCommand, executePluginCommand } from "../../src/plugins/commands.js";

View File

@@ -1,3 +1,4 @@
// Tui Pty Test Watch script supports OpenClaw repository automation.
import { spawn } from "node:child_process";
import { mkdir, readFile, writeFile } from "node:fs/promises";
import { createRequire } from "node:module";