pull down to refresh

In Claude Cowork and Claude Code, Claude can use your computer to point, click, and complete tasks. Dispatch lets you assign them from your phone.

In Claude Cowork and Claude Code, you can now enable Claude to use your computer to complete tasks. When Claude doesn’t have access to the tools it needs, it will point, click, and navigate what’s on your screen to perform the task itself. It can open files, use the browser, and run dev tools automatically — with no setup required.

This feature is now available in research preview for Claude Pro and Max subscribers. It works especially well with Dispatch, which lets you assign Claude tasks from your phone.

...read more at claude.com

This is why I for one am super excited to have Claude code running in a docker container ~lol

reply

like that?

Sandboxing AI agents, 100x fasterSandboxing AI agents, 100x faster

Last September we introduced Code Mode, the idea that agents should perform tasks not by making tool calls, but instead by writing code that calls APIs. We've shown that simply converting an MCP server into a TypeScript API can cut token usage by 81%. We demonstrated that Code Mode can also operate behind an MCP server instead of in front of it, creating the new Cloudflare MCP server that exposes the entire Cloudflare API with just two tools and under 1,000 tokens.

But if an agent (or an MCP server) is going to execute code generated on-the-fly by AI to perform tasks, that code needs to run somewhere, and that somewhere needs to be secure. You can't just eval() AI-generated code directly in your app: a malicious user could trivially prompt the AI to inject vulnerabilities.

You need a sandbox: a place to execute code that is isolated from your application and from the rest of the world, except for the specific capabilities the code is meant to access.

...read more at blog.cloudflare.com
reply

No like you write a Dockerfile and build it. No services needed, just docker hub for the base image if you didn't have it cached.

reply

I don't trust Docker Hub! ~lol

reply
FROM scratch

There you go

reply
FROM scratch
SELECT
    integrity AS truth,
    consistency AS reliability,
    transparency AS clarity,
    100 AS confidence_level
WHERE
    assumptions IS NOT NULL
    AND data_quality = 'high'
    AND trust_built_over_time = TRUE;
reply
ALTER TABLE scratch DROP COLUMN trust_built_over_time;
TRUNCATE TABLE scratch;
reply