SLOP Plugin Adds Real-Time App State Awareness to OpenClaw Agents

What the SLOP Plugin Does
The SLOP plugin connects OpenClaw agents to the SLOP protocol, which exposes application state as structured, semantic data. Instead of relying on screenshots or guessing, agents get direct access to what's happening in applications.
Key Features
connected_appstool: Lists all discovered SLOP providers including desktop apps, CLI tools, and browser tabsapp_actiontool: Invokes contextual actions on any discovered app's state tree- Actions appear and disappear dynamically as application state changes (e.g., a "reply" action on a message, a "merge" action on a mergeable PR)
Installation
Install from the registry:
openclaw plugins install u/slop-ai/openclaw-pluginOr link locally for development:
openclaw plugins install --link /path/to/slop/packages/typescript/openclaw-pluginHow Discovery Works
The plugin automatically discovers SLOP providers through two mechanisms:
- The
~/.slop/providers/directory - A Chrome extension bridge
Any application that exposes a SLOP tree—whether it's a desktop app, CLI tool, or browser tab—shows up automatically without additional configuration.
Resources
The SLOP protocol has full specifications, SDKs in 4 languages, and working examples available at github.com/devteapot/slop. All code is MIT licensed.
📖 Read the full source: r/openclaw
👀 See Also

OpenClaw Claude Extension Updated to Use Agent SDK After Anthropic Billing Changes
An OpenClaw extension developer rewrote their Claude CLI integration to use the official claude-agent-sdk after Anthropic started detecting and reclassifying CLI usage as third-party app usage, which bills against a separate credit pool instead of Max plan limits. The SDK approach authenticates through existing Claude Code login and bills as regular Max plan usage.

Claude Code Hook Monitors WIP Accumulation in AI Coding Workflows
A developer built a UserPromptSubmit hook for Claude Code that surfaces work-in-progress accumulation across four queues: uncommitted changes over 200 lines, three or more unpushed commits, pushed commits without changeset files, and release PRs open longer than 24 hours.

Commitment Issues: A Tool That Analyzes and 'Buries' Unfinished GitHub Repos
A developer built a tool called Commitment Issues that analyzes GitHub repositories to determine if they're abandoned, generates a 'death certificate,' and extracts the final commit message as 'last words.' The tool uses heuristics like commit frequency, last activity, and stars vs momentum, and was prototyped using Claude.

Developer Builds Tool for Realistic Relational Database Generation
A developer built a tool that generates fully loaded relational databases with realistic data, solving the problem of creating test databases with intact foreign key relationships and cross-table consistency.