From 5a28cdb1d4a31cac0f93225c895e175095f3e233 Mon Sep 17 00:00:00 2001 From: Alexander Bickov Date: Fri, 29 May 2026 13:19:36 +0300 Subject: [PATCH] Add SlimSnap to Agent Skills Adds SlimSnap to the Agent Skills section. SlimSnap is a free MIT Claude Code skill that loads the latest SlimSnap JSON capture into the agent's context. It auto-discovers the save folder via a config file at ~/.slimsnap/config.json so no path is hardcoded. Any Claude Code workflow that involves "the user just took a screenshot" works without a slash command or upload step. The companion Mac app at https://slimsnap.ai (closed source, free at launch) converts annotated screenshots to about 700 tokens of structured JSON (bounding boxes, OCR text, hex colors, annotations with target_ref and intent) instead of about 8000 vision tokens of raw image. About 92 percent fewer tokens per turn. - Skill (MIT): https://github.com/bickov/slimsnap-skill - Schema (MIT, JSON Schema 2020-12): https://github.com/bickov/slimsnap-schema - App: https://slimsnap.ai --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98c4ac8..1114e52 100644 --- a/README.md +++ b/README.md @@ -277,7 +277,7 @@ A curated list of awesome tools, skills, plugins, integrations, extensions, fram - [**claude-dashboard**](https://github.com/uppinote20/claude-dashboard): Comprehensive status line plugin for Claude Code with context usage, API rate limits, and cost tracking - [**claude-code-plugin**](https://github.com/browserbase/claude-code-plugin): Browserbase plugin for Claude Code - Use cloud browsers with Claude Code instead of local Chrome. - [**homunculus**](https://github.com/humanplane/homunculus): A Claude Code plugin that watches how you work, learns your patterns, and evolves itself to help you better. - +- [**SlimSnap**](https://github.com/bickov/slimsnap-skill): Claude Code skill that loads the latest SlimSnap JSON capture into the agent's context. Auto-discovers the save folder via ~/.slimsnap/config.json. Companion to the SlimSnap Mac app that converts annotated screenshots to about 700 tokens of structured JSON instead of about 8000 vision tokens of raw image. MIT. --- ## 🛠️ Tools & Utilities