feat(DIS-102): sanitizeForDiscord strips paths and tokens before Discord send #46

Merged
dev merged 4 commits from phase-1/sanitize-for-discord into main 2026-04-10 08:05:44 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 90f96bdbf4 - Show all commits

View file

@ -3,6 +3,7 @@ import * as path from "path";
import * as YAML from "yaml"; import * as YAML from "yaml";
import { ZodError } from "zod"; import { ZodError } from "zod";
import { AgentYamlSchema } from "./schema"; import { AgentYamlSchema } from "./schema";
import type { AgentYaml as AgentIdentity } from "./schema";
export type { AgentYaml as AgentIdentity } from "./schema"; export type { AgentYaml as AgentIdentity } from "./schema";

View file

@ -6,6 +6,7 @@ import * as YAML from "yaml";
import { ZodError } from "zod"; import { ZodError } from "zod";
import { childLogger } from "../runtime/logger"; import { childLogger } from "../runtime/logger";
import { DisclawConfigSchema } from "./schema"; import { DisclawConfigSchema } from "./schema";
import type { DisclawConfig } from "./schema";
export type { DisclawConfig } from "./schema"; export type { DisclawConfig } from "./schema";