Merge pull request #670 from cristip73/fix/ios-image-attachments

fix: enable image attachments in chat messages for Claude API
This commit is contained in:
Peter Steinberger
2026-01-10 19:07:35 +00:00
committed by GitHub
9 changed files with 276 additions and 44 deletions

View File

@@ -21,6 +21,7 @@
- Onboarding/Gateway: persist non-interactive gateway token auth in config; add WS wizard + gateway tool-calling regression coverage. - Onboarding/Gateway: persist non-interactive gateway token auth in config; add WS wizard + gateway tool-calling regression coverage.
- Gateway/Control UI: make `chat.send` non-blocking, wire Stop to `chat.abort`, and treat `/stop` as an out-of-band abort. (#653) - Gateway/Control UI: make `chat.send` non-blocking, wire Stop to `chat.abort`, and treat `/stop` as an out-of-band abort. (#653)
- Gateway/Control UI: allow `chat.abort` without `runId` (abort active runs), suppress post-abort chat streaming, and prune stuck chat runs. (#653) - Gateway/Control UI: allow `chat.abort` without `runId` (abort active runs), suppress post-abort chat streaming, and prune stuck chat runs. (#653)
- Gateway/Control UI: sniff image attachments for chat.send, drop non-images, and log mismatches. (#670) — thanks @cristip73.
- CLI: `clawdbot sessions` now includes `elev:*` + `usage:*` flags in the table output. - CLI: `clawdbot sessions` now includes `elev:*` + `usage:*` flags in the table output.
- CLI/Pairing: accept positional provider for `pairing list|approve` (npm-run compatible); update docs/bot hints. - CLI/Pairing: accept positional provider for `pairing list|approve` (npm-run compatible); update docs/bot hints.
- Branding: normalize user-facing “ClawdBot”/“CLAWDBOT” → “Clawdbot” (CLI, status, docs). - Branding: normalize user-facing “ClawdBot”/“CLAWDBOT” → “Clawdbot” (CLI, status, docs).

View File

@@ -8,7 +8,12 @@ import type {
AgentTool, AgentTool,
ThinkingLevel, ThinkingLevel,
} from "@mariozechner/pi-agent-core"; } from "@mariozechner/pi-agent-core";
import type { Api, AssistantMessage, Model } from "@mariozechner/pi-ai"; import type {
Api,
AssistantMessage,
ImageContent,
Model,
} from "@mariozechner/pi-ai";
import { import {
createAgentSession, createAgentSession,
discoverAuthStorage, discoverAuthStorage,
@@ -1009,6 +1014,8 @@ export async function runEmbeddedPiAgent(params: {
config?: ClawdbotConfig; config?: ClawdbotConfig;
skillsSnapshot?: SkillSnapshot; skillsSnapshot?: SkillSnapshot;
prompt: string; prompt: string;
/** Optional image attachments for multimodal messages. */
images?: ImageContent[];
provider?: string; provider?: string;
model?: string; model?: string;
authProfileId?: string; authProfileId?: string;
@@ -1434,7 +1441,9 @@ export async function runEmbeddedPiAgent(params: {
`embedded run prompt start: runId=${params.runId} sessionId=${params.sessionId}`, `embedded run prompt start: runId=${params.runId} sessionId=${params.sessionId}`,
); );
try { try {
await session.prompt(params.prompt); await session.prompt(params.prompt, {
images: params.images,
});
} catch (err) { } catch (err) {
promptError = err; promptError = err;
} finally { } finally {

View File

@@ -66,8 +66,17 @@ import {
} from "../utils/message-provider.js"; } from "../utils/message-provider.js";
import { normalizeE164 } from "../utils.js"; import { normalizeE164 } from "../utils.js";
/** Image content block for Claude API multimodal messages. */
type ImageContent = {
type: "image";
data: string;
mimeType: string;
};
type AgentCommandOpts = { type AgentCommandOpts = {
message: string; message: string;
/** Optional image attachments for multimodal messages. */
images?: ImageContent[];
to?: string; to?: string;
sessionId?: string; sessionId?: string;
sessionKey?: string; sessionKey?: string;
@@ -450,6 +459,7 @@ export async function agentCommand(
config: cfg, config: cfg,
skillsSnapshot, skillsSnapshot,
prompt: body, prompt: body,
images: opts.images,
provider: providerOverride, provider: providerOverride,
model: modelOverride, model: modelOverride,
authProfileId: sessionEntry?.authProfileOverride, authProfileId: sessionEntry?.authProfileOverride,

View File

@@ -3,6 +3,7 @@ import { describe, expect, it } from "vitest";
import { import {
buildMessageWithAttachments, buildMessageWithAttachments,
type ChatAttachment, type ChatAttachment,
parseMessageWithAttachments,
} from "./chat-attachments.js"; } from "./chat-attachments.js";
const PNG_1x1 = const PNG_1x1 =
@@ -56,3 +57,65 @@ describe("buildMessageWithAttachments", () => {
).toThrow(/exceeds size limit/i); ).toThrow(/exceeds size limit/i);
}); });
}); });
describe("parseMessageWithAttachments", () => {
it("sniffs mime when missing", async () => {
const logs: string[] = [];
const parsed = await parseMessageWithAttachments(
"see this",
[
{
type: "image",
fileName: "dot.png",
content: PNG_1x1,
},
],
{ log: { warn: (message) => logs.push(message) } },
);
expect(parsed.message).toBe("see this");
expect(parsed.images).toHaveLength(1);
expect(parsed.images[0]?.mimeType).toBe("image/png");
expect(parsed.images[0]?.data).toBe(PNG_1x1);
expect(logs).toHaveLength(0);
});
it("drops non-image payloads and logs", async () => {
const logs: string[] = [];
const pdf = Buffer.from("%PDF-1.4\n").toString("base64");
const parsed = await parseMessageWithAttachments(
"x",
[
{
type: "file",
mimeType: "image/png",
fileName: "not-image.pdf",
content: pdf,
},
],
{ log: { warn: (message) => logs.push(message) } },
);
expect(parsed.images).toHaveLength(0);
expect(logs).toHaveLength(1);
expect(logs[0]).toMatch(/non-image/i);
});
it("prefers sniffed mime type and logs mismatch", async () => {
const logs: string[] = [];
const parsed = await parseMessageWithAttachments(
"x",
[
{
type: "image",
mimeType: "image/jpeg",
fileName: "dot.png",
content: PNG_1x1,
},
],
{ log: { warn: (message) => logs.push(message) } },
);
expect(parsed.images).toHaveLength(1);
expect(parsed.images[0]?.mimeType).toBe("image/png");
expect(logs).toHaveLength(1);
expect(logs[0]).toMatch(/mime mismatch/i);
});
});

View File

@@ -1,3 +1,5 @@
import { detectMime } from "../media/mime.js";
export type ChatAttachment = { export type ChatAttachment = {
type?: string; type?: string;
mimeType?: string; mimeType?: string;
@@ -5,6 +7,133 @@ export type ChatAttachment = {
content?: unknown; content?: unknown;
}; };
export type ChatImageContent = {
type: "image";
data: string;
mimeType: string;
};
export type ParsedMessageWithImages = {
message: string;
images: ChatImageContent[];
};
type AttachmentLog = {
warn: (message: string) => void;
};
function normalizeMime(mime?: string): string | undefined {
if (!mime) return undefined;
const cleaned = mime.split(";")[0]?.trim().toLowerCase();
return cleaned || undefined;
}
async function sniffMimeFromBase64(
base64: string,
): Promise<string | undefined> {
const trimmed = base64.trim();
if (!trimmed) return undefined;
const take = Math.min(256, trimmed.length);
const sliceLen = take - (take % 4);
if (sliceLen < 8) return undefined;
try {
const head = Buffer.from(trimmed.slice(0, sliceLen), "base64");
return await detectMime({ buffer: head });
} catch {
return undefined;
}
}
function isImageMime(mime?: string): boolean {
return typeof mime === "string" && mime.startsWith("image/");
}
/**
* Parse attachments and extract images as structured content blocks.
* Returns the message text and an array of image content blocks
* compatible with Claude API's image format.
*/
export async function parseMessageWithAttachments(
message: string,
attachments: ChatAttachment[] | undefined,
opts?: { maxBytes?: number; log?: AttachmentLog },
): Promise<ParsedMessageWithImages> {
const maxBytes = opts?.maxBytes ?? 5_000_000; // 5 MB
const log = opts?.log;
if (!attachments || attachments.length === 0) {
return { message, images: [] };
}
const images: ChatImageContent[] = [];
for (const [idx, att] of attachments.entries()) {
if (!att) continue;
const mime = att.mimeType ?? "";
const content = att.content;
const label = att.fileName || att.type || `attachment-${idx + 1}`;
if (typeof content !== "string") {
throw new Error(`attachment ${label}: content must be base64 string`);
}
let sizeBytes = 0;
let b64 = content.trim();
// Strip data URL prefix if present (e.g., "data:image/jpeg;base64,...")
const dataUrlMatch = /^data:[^;]+;base64,(.*)$/.exec(b64);
if (dataUrlMatch) {
b64 = dataUrlMatch[1];
}
// Basic base64 sanity: length multiple of 4 and charset check.
if (b64.length % 4 !== 0 || /[^A-Za-z0-9+/=]/.test(b64)) {
throw new Error(`attachment ${label}: invalid base64 content`);
}
try {
sizeBytes = Buffer.from(b64, "base64").byteLength;
} catch {
throw new Error(`attachment ${label}: invalid base64 content`);
}
if (sizeBytes <= 0 || sizeBytes > maxBytes) {
throw new Error(
`attachment ${label}: exceeds size limit (${sizeBytes} > ${maxBytes} bytes)`,
);
}
const providedMime = normalizeMime(mime);
const sniffedMime = normalizeMime(await sniffMimeFromBase64(b64));
if (sniffedMime && !isImageMime(sniffedMime)) {
log?.warn(
`attachment ${label}: detected non-image (${sniffedMime}), dropping`,
);
continue;
}
if (!sniffedMime && !isImageMime(providedMime)) {
log?.warn(
`attachment ${label}: unable to detect image mime type, dropping`,
);
continue;
}
if (sniffedMime && providedMime && sniffedMime !== providedMime) {
log?.warn(
`attachment ${label}: mime mismatch (${providedMime} -> ${sniffedMime}), using sniffed`,
);
}
images.push({
type: "image",
data: b64,
mimeType: sniffedMime ?? providedMime ?? mime,
});
}
return { message, images };
}
/**
* @deprecated Use parseMessageWithAttachments instead.
* This function converts images to markdown data URLs which Claude API cannot process as images.
*/
export function buildMessageWithAttachments( export function buildMessageWithAttachments(
message: string, message: string,
attachments: ChatAttachment[] | undefined, attachments: ChatAttachment[] | undefined,

View File

@@ -43,7 +43,10 @@ import {
isChatStopCommandText, isChatStopCommandText,
resolveChatRunExpiresAtMs, resolveChatRunExpiresAtMs,
} from "./chat-abort.js"; } from "./chat-abort.js";
import { buildMessageWithAttachments } from "./chat-attachments.js"; import {
type ChatImageContent,
parseMessageWithAttachments,
} from "./chat-attachments.js";
import { import {
ErrorCodes, ErrorCodes,
errorShape, errorShape,
@@ -793,32 +796,37 @@ export function createBridgeHandlers(ctx: BridgeHandlersContext) {
}; };
const stopCommand = isChatStopCommandText(p.message); const stopCommand = isChatStopCommandText(p.message);
const normalizedAttachments = const normalizedAttachments =
p.attachments?.map((a) => ({ p.attachments
type: typeof a?.type === "string" ? a.type : undefined, ?.map((a) => ({
mimeType: type: typeof a?.type === "string" ? a.type : undefined,
typeof a?.mimeType === "string" ? a.mimeType : undefined, mimeType:
fileName: typeof a?.mimeType === "string" ? a.mimeType : undefined,
typeof a?.fileName === "string" ? a.fileName : undefined, fileName:
content: typeof a?.fileName === "string" ? a.fileName : undefined,
typeof a?.content === "string" content:
? a.content typeof a?.content === "string"
: ArrayBuffer.isView(a?.content) ? a.content
? Buffer.from( : ArrayBuffer.isView(a?.content)
a.content.buffer, ? Buffer.from(
a.content.byteOffset, a.content.buffer,
a.content.byteLength, a.content.byteOffset,
).toString("base64") a.content.byteLength,
: undefined, ).toString("base64")
})) ?? []; : undefined,
}))
.filter((a) => a.content) ?? [];
let messageWithAttachments = p.message; let parsedMessage = p.message;
let parsedImages: ChatImageContent[] = [];
if (normalizedAttachments.length > 0) { if (normalizedAttachments.length > 0) {
try { try {
messageWithAttachments = buildMessageWithAttachments( const parsed = await parseMessageWithAttachments(
p.message, p.message,
normalizedAttachments, normalizedAttachments,
{ maxBytes: 5_000_000 }, { maxBytes: 5_000_000, log: ctx.logBridge },
); );
parsedMessage = parsed.message;
parsedImages = parsed.images;
} catch (err) { } catch (err) {
return { return {
ok: false, ok: false,
@@ -922,7 +930,8 @@ export function createBridgeHandlers(ctx: BridgeHandlersContext) {
}; };
void agentCommand( void agentCommand(
{ {
message: messageWithAttachments, message: parsedMessage,
images: parsedImages.length > 0 ? parsedImages : undefined,
sessionId, sessionId,
sessionKey: p.sessionKey, sessionKey: p.sessionKey,
runId: clientRunId, runId: clientRunId,

View File

@@ -13,7 +13,10 @@ import {
isChatStopCommandText, isChatStopCommandText,
resolveChatRunExpiresAtMs, resolveChatRunExpiresAtMs,
} from "../chat-abort.js"; } from "../chat-abort.js";
import { buildMessageWithAttachments } from "../chat-attachments.js"; import {
type ChatImageContent,
parseMessageWithAttachments,
} from "../chat-attachments.js";
import { import {
ErrorCodes, ErrorCodes,
errorShape, errorShape,
@@ -181,29 +184,34 @@ export const chatHandlers: GatewayRequestHandlers = {
}; };
const stopCommand = isChatStopCommandText(p.message); const stopCommand = isChatStopCommandText(p.message);
const normalizedAttachments = const normalizedAttachments =
p.attachments?.map((a) => ({ p.attachments
type: typeof a?.type === "string" ? a.type : undefined, ?.map((a) => ({
mimeType: typeof a?.mimeType === "string" ? a.mimeType : undefined, type: typeof a?.type === "string" ? a.type : undefined,
fileName: typeof a?.fileName === "string" ? a.fileName : undefined, mimeType: typeof a?.mimeType === "string" ? a.mimeType : undefined,
content: fileName: typeof a?.fileName === "string" ? a.fileName : undefined,
typeof a?.content === "string" content:
? a.content typeof a?.content === "string"
: ArrayBuffer.isView(a?.content) ? a.content
? Buffer.from( : ArrayBuffer.isView(a?.content)
a.content.buffer, ? Buffer.from(
a.content.byteOffset, a.content.buffer,
a.content.byteLength, a.content.byteOffset,
).toString("base64") a.content.byteLength,
: undefined, ).toString("base64")
})) ?? []; : undefined,
let messageWithAttachments = p.message; }))
.filter((a) => a.content) ?? [];
let parsedMessage = p.message;
let parsedImages: ChatImageContent[] = [];
if (normalizedAttachments.length > 0) { if (normalizedAttachments.length > 0) {
try { try {
messageWithAttachments = buildMessageWithAttachments( const parsed = await parseMessageWithAttachments(
p.message, p.message,
normalizedAttachments, normalizedAttachments,
{ maxBytes: 5_000_000 }, { maxBytes: 5_000_000, log: context.logGateway },
); );
parsedMessage = parsed.message;
parsedImages = parsed.images;
} catch (err) { } catch (err) {
respond( respond(
false, false,
@@ -312,7 +320,8 @@ export const chatHandlers: GatewayRequestHandlers = {
void agentCommand( void agentCommand(
{ {
message: messageWithAttachments, message: parsedMessage,
images: parsedImages.length > 0 ? parsedImages : undefined,
sessionId, sessionId,
sessionKey: p.sessionKey, sessionKey: p.sessionKey,
runId: clientRunId, runId: clientRunId,

View File

@@ -32,6 +32,7 @@ export type GatewayRequestContext = {
getHealthCache: () => HealthSummary | null; getHealthCache: () => HealthSummary | null;
refreshHealthSnapshot: (opts?: { probe?: boolean }) => Promise<HealthSummary>; refreshHealthSnapshot: (opts?: { probe?: boolean }) => Promise<HealthSummary>;
logHealth: { error: (message: string) => void }; logHealth: { error: (message: string) => void };
logGateway: { warn: (message: string) => void };
incrementPresenceVersion: () => number; incrementPresenceVersion: () => number;
getHealthVersion: () => number; getHealthVersion: () => number;
broadcast: ( broadcast: (

View File

@@ -1674,6 +1674,7 @@ export async function startGatewayServer(
getHealthCache: () => healthCache, getHealthCache: () => healthCache,
refreshHealthSnapshot, refreshHealthSnapshot,
logHealth, logHealth,
logGateway: log,
incrementPresenceVersion: () => { incrementPresenceVersion: () => {
presenceVersion += 1; presenceVersion += 1;
return presenceVersion; return presenceVersion;