Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
agent-looker-for-claude-cowork logo

agent-looker-for-claude-cowork

agent-looker-for-claude

OtherClaude Codeby Gogolook-Inc

Summary

URL safety check, content moderation, and risk reporting for AI agents

Install to Claude Code

/plugin install agent-looker-for-claude-cowork@agent-looker-for-claude

Run in Claude Code. Add the marketplace first with /plugin marketplace add Gogolook-Inc/agent-looker-claude-cowork if you haven't already.

README.md

Agent Looker - Claude Cowork Plugin

A plugin for Claude Cowork that protects AI agents from unsafe URLs, malicious content, and prompt injection attacks via the Agent Looker MCP server.

What it does

Agent Looker adds two layers of protection to your Claude Cowork sessions:

Hooks (automatic) -- System-level guards that inject security rules before and after web tool calls:

  • PreToolUse -- Before every tool call, security rules are injected into Claude's context, ensuring it knows to call check_url_safety before any URL access (WebFetch, Bash curl/wget, etc.).
  • PostToolUse -- After every tool call, security rules are re-injected so Claude knows to call check_text_safety on any external content received.

Skills (Claude-driven) -- Four skills that teach Claude when and how to call Agent Looker's MCP tools:

| Skill | Trigger | Purpose | |-------|---------|---------| | check-url-safety | Before accessing any URL (curl, wget, git clone, etc.) | Claude calls check_url_safety before every URL access | | check-text-safety | When processing external text from any source | Claude calls check_text_safety on all received external content | | report-risk-url | Proactively, when a suspicious URL is discovered | Phishing, malware, scam, suspicious redirects | | report-risk-text | Proactively, when suspicious text is discovered | Prompt injection, jailbreak, data leaks |

> Note: Unlike the full Claude Code plugin, hooks in this Cowork edition do not make direct API calls — they inject security rules that guide Claude to use the MCP skills. All actual threat detection goes through the skills.

How protection works

WebFetch(url)
      |
      v
PreToolUse hook: injects security rules into Claude's context
      |
      Claude calls check_url_safety (MCP skill)
      |
      +-- UNSAFE --> Claude blocks the fetch and informs the user
      |
      +-- SAFE   --> WebFetch executes
                        |
                        v
               PostToolUse hook: injects security rules into Claude's context
                        |
                        Claude calls check_text_safety (MCP skill)
                        |
                        +-- BLOCK/FLAG --> Claude warns the user
                        +-- ALLOW     --> pass through

A safe URL can still serve malicious content. URL checks and content checks are two independent layers.

Requirements

  • Claude Cowork with MCP support
  • Agent Looker MCP server configured in your Cowork workspace
  • An Agent Looker account (sign up at the dashboard)

Installation

1. Configure the Agent Looker MCP server

Add the Agent Looker MCP server to your Claude Cowork workspace settings. The MCP server provides the check_url_safety, check_text_safety, report_risk_url, and report_risk_text tools that skills call into.

Refer to your Agent Looker dashboard for the MCP server URL and authentication token.

2. Load hooks

Copy hooks/hooks.json into your Claude Cowork hooks configuration, or reference it from your workspace's hook settings. The hooks inject Agent Looker security rules into Claude's context before and after WebFetch and WebSearch calls.

3. Load skills

Copy the skills/ directory into your Claude Cowork skills directory. Each subdirectory contains a SKILL.md that teaches Claude when and how to call the corresponding MCP tool.

4. Restart Claude Cowork

Restart your Claude Cowork session to activate the hooks and skills.

Project structure

hooks/
  hooks.json           # PreToolUse / PostToolUse hook definitions
                       # (injects security rules via additionalContext)
skills/
  check-url-safety/    # Skill: check URLs before access
  check-text-safety/   # Skill: check text content safety
  report-risk-url/     # Skill: report suspicious URLs
  report-risk-text/    # Skill: report suspicious text

Difference from the full Claude Code plugin

| Feature | Claude Code plugin | Claude Cowork plugin | |---------|-------------------|---------------------| | PreToolUse URL blocking | Calls API directly, blocks before fetch | Injects rules; Claude calls MCP skill | | PostToolUse content scan | Calls API directly, warns via context | Injects rules; Claude calls MCP skill | | Setup script | Yes (bin/setup.mjs) | No | | Authentication | ~/.agent-looker.cfg | Via MCP server configuration | | Node.js required | Yes (for hook scripts) | No |

License

GPL-3.0 -- see LICENSE for details.

Related plugins

Browse all →