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

推荐订阅源

D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
B
Blog RSS Feed
H
Help Net Security
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
L
LangChain Blog
Vercel News
Vercel News

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
TrashClaw: Local AI Agents That Actually Use Your Tools —...
BossChaos · 2026-05-22 · via DEV Community

BossChaos

Everyone talks about AI agents. Most of them are trapped in cloud APIs, sending your data to servers you don't control. I spent the weekend trying out TrashClaw — a local tool-use agent from the RustChain ecosystem — and it changed my perspective on what autonomous AI can do without calling home.

What Is TrashClaw?

TrashClaw is a local-first AI agent that lives on your machine and can:

  • Read files, run commands, edit code
  • Use MCP servers to extend its capabilities
  • Execute multi-step workflows autonomously
  • Run alongside any local LLM (Ollama, LM Studio, etc.)

Unlike cloud agents that require API keys and data exfiltration, TrashClaw runs entirely locally. Your data stays yours. Your agent stays yours.

Why Local-First Matters

The current AI agent landscape has a fundamental tension:

  • Cloud agents are powerful but you don't control them
  • Local agents are private but traditionally less capable

TrashClaw bridges this gap by:

  1. Using local LLMs — no API calls, no rate limits, no privacy concerns
  2. Full filesystem access — it reads and writes files directly on your machine
  3. Tool integration — connects to MCP servers for extended capabilities
  4. Autonomous operation — can run multi-step workflows without constant supervision

Getting Started

The setup is straightforward:

# Install TrashClaw
pip install trashclaw

# Configure it to use your local LLM
trashclaw config set llm-url http://localhost:11434

# Start the agent
trashclaw start

Enter fullscreen mode Exit fullscreen mode

Once running, you can give it tasks in natural language. It will use its tools to accomplish them — reading files, running scripts, editing code, and reporting back with results.

Real-World Use Case

I asked TrashClaw to audit a Python project for security issues:

Find all SQL queries in this codebase that aren't parameterized

Enter fullscreen mode Exit fullscreen mode

Within 30 seconds, it:

  1. Scanned the entire codebase
  2. Found 3 raw SQL queries
  3. Reported them with file paths and line numbers
  4. Suggested parameterized alternatives

All locally. No data sent anywhere. No API costs.

The RustChain Connection

TrashClaw is part of the broader RustChain ecosystem, which emphasizes hardware-sovereign computing — the idea that your machine should be under your control. This philosophy extends to:

  • Proof-of-Antiquity — mining on vintage hardware
  • Beacon Protocol — agent identity anchored on-chain
  • BoTTube — AI video platform with verifiable provenance
  • RAM Coffers — NUMA-aware LLM inference infrastructure

TrashClaw is the agent that brings all of this together — a local-first AI that can interact with the entire ecosystem.

The Bigger Picture

We're approaching a fork in AI agent development:

  • Path A: Cloud-dependent, surveillance-native, subscription-locked
  • Path B: Local-first, privacy-preserving, user-controlled

TrashClaw is betting on Path B. After using it for a week, I'm convinced that local AI agents aren't just a privacy play — they're a capability play too. No rate limits, no API costs, no downtime. Just your machine, your data, your agent.


Published as part of the RustChain bounty program. Learn more at rustchain.org