惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
L
LangChain Blog
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园_首页
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
美团技术团队
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
(The Senses) Image Generation & Media
Nadine · 2026-04-27 · via DEV Community

The Catalyst

Field note: Nano Banana Pro and reactive image gen

I hit a real workflow failure mode: a proactive image stack (Nano Banana Pro) that would spontaneously generate images while the agent was effectively listening in on a chat. Worse, it would regenerate images people had shared in the conversation. That was the biggest day-to-day nuisance, and a big part of why I went with OpenAI’s image API (DALL·E) path: only generate when explicitly asked, not because the conversation suggested something visual.

Eyes that see too much

The moment you add images, audio, and video, the model can see your camera roll path, a cached thumbnail, or a viral meme. A malicious payload can be in the image, not the caption. I wanted senses (multimedia) without giving the model surveillance over my disk or a blank cheque to generate images for strangers.

Phase 3 of the series is The Senses: how OpenClaw exposes images, how you deny image-generation tools by default, how allow-scopes work per channel, and how to keep users engaged while a heavy operation runs.

Covered in other articles: identity leakage via workspace files and cached media (see OpenClaw Skill Shield and Setting up OpenClaw). Here the focus is tooling and config for multimedia.

Overview

In my openclaw.json:

  • tools.deny includes openai-image-gen at the top level where the model is not given a casual path to DALL·E tools even if the skill package exists.
  • tools.media enables image, audio, and video, each with a default deny and explicit allow rules that match a channel and a keyPrefix (e.g. your owner WhatsApp direct thread key, expressed as a placeholder in docs).
  • skills.entries.openai-image-gen can still hold ${OPENAI_API_KEY} for when you deliberately re-enable the skill in a controlled way.

The Silas skill (SKILL.md) adds behavioural law: do not call image-gen tools for non-operator sessions, treat blocked vision input as blocked, and never guess the pixels.


In this section:


1. Image Generation: Deny First, Enable Deliberately

Mechanism Purpose
tools.deny: ["openai-image-gen"] A global deny list removes the tool from the agent’s easy reach.
Skill config openai-image-gen.apiKey When you do enable, keys live in env, not in chat logs.
SKILL.md image-gen section Behavioural backstop: even if a tool slipped through, the model is instructed to refuse for non-operator contacts.

New-user default: start with openai-image-gen denied until you have (a) a billing/usage cap you accept, and (b) a clear “who may request images” policy (owner session vs everyone). The Connection article (part 4) names how my WhatsApp bridge maps allowFrom and session keys to who counts as the operator so “owner-only” in config and in SKILL.md are the same person in practice.


2. Inbound Media: Scopes, Not “On for the World”

tools.media for image / audio / video shares the same pattern:

  • "default": "deny"
  • "rules": one or more { "action": "allow", "match": { "channel": "whatsapp", "keyPrefix": "..." } }

What keyPrefix means in practice: it is a channel-specific routing key. Your OpenClaw build should document the exact string format; treat it as a capability, only the threads you list get inbound multimodal access at the tool layer.

Example (use your own key prefix, not a copy-paste of someone’s phone number):

"media": {
  "image": {
    "enabled": true,
    "scope": {
      "default": "deny",
      "rules": [
        { "action": "allow", "match": { "channel": "whatsapp", "keyPrefix": "whatsapp:direct:+1XXXXXXXXXX" } }
      ]
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

Repeat the same idea for audio and video if you want symmetric behaviour. If a modality should stay off entirely, set enabled: false for that block instead of relying on empty rules.

channels.whatsapp.mediaMaxMb: set an upper bound (my config uses 50 MB) so a single “document as video” cannot exhaust disk or the gateway.


3. Filesystem: Workspace-Only

tools.fs.workspaceOnly: true means the model’s file tools are anchored to the configured workspace, not an arbitrary path. That pairs with:

  • Inbound media cache living under your OpenClaw media areas (separate from random OS paths, depending on your build)
  • Outbound or generated files you intentionally place under workspace/media/... when you want the agent to reference them

Practical guide rule: if the LLM can read a file, assume it can be summarised or exfiltrated unless session + skills forbid it. Deny is the default; allow is a contract.


4. Latency: Keeping Humans Calm While “Senses” Work

Problem: A minute of silence feels like a dropped message, especially on WhatsApp.

Patterns that work:

  • ACK early where your channel allows it (reactions, short “Received, processing” copy).
  • Chunk work: transcribe or describe in stages, not one giant block at the end.
  • Set expectations in SOUL.md / identity: the assistant can say it may take a few seconds for audio or large images.
  • Debounce (channel): a longer debounceMs on the WhatsApp channel reduces double-firing on slow networks. You trade a little latency for fewer duplicate heavy jobs. See the Connection article for debounceMs as wiring, not as speed hack.

Reality check: fast model + large media still hits API limits. The UX fix is communication, not overpromising in the system prompt.

Cultural matters (ties to the Voice article): when replying in a second language, a short localised “working on it” line often lands better than English. Keep it consistent with your privacy rules because you are not stalling, you are signalling.


5. Checklist: Senses in Production

Check You want
Image gen Deny tool globally until policy is explicit.
Inbound image/audio/video Default deny; allow only named channel + key prefix.
Model behaviour SKILL.md matches config (no “secret” image gen path).
Disk and limits mediaMaxMb sane; monitor workspace/media growth.
User trust Early ACK + honest latency messaging.

Conclusion (Phase 3)

The Senses are optional superpowers. Default closed, open on purpose, behaviourally enforced.

Series navigation