Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/devoncarew/flutter-slipstream/slipstream-inspectornpx skills add devoncarew/flutter-slipstream --skill slipstream-inspectorgit clone --depth 1 https://github.com/devoncarew/flutter-slipstreamWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/devoncarew/flutter-slipstream/slipstream-inspector)<a href="https://agentmods.dev/skills/devoncarew/flutter-slipstream/slipstream-inspector"><img src="https://agentmods.dev/badge/skills/devoncarew/flutter-slipstream/slipstream-inspector.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00098 | $0.01036 |
| Opus 5 | $0.00049 | $0.00518 |
| Sonnet 5 | $0.00020 | $0.00207 |
| Haiku 4.5 | $0.00010 | $0.00104 |
Grade A, and why
slipstream-inspector scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.
flutter-slipstream
The flutter-slipstream plugin provides MCP tools for launching, observing, and interacting with a running Flutter app. Use these tools — not terminal commands — for all Flutter app work.
Use the plugin tools, not the terminal
When working on a Flutter app with this plugin installed, always prefer the MCP tools over shell commands:
| Instead of... | Use... |
|---|---|
flutter run |
run_app |
| Hot reload (shell) | reload |
| Reading terminal log | get_output |
run_app does more than flutter run: it auto-selects the best available
device, exposes app output via get_output, and enables screenshot capture,
layout inspection, and UI interaction — none of which are possible from a plain
terminal session.
Standard workflow
run_app → get_output → take_screenshot
→ edit source → reload → get_output → take_screenshot → repeat
- Call
get_outputafterrun_app, afterreload, and after any interaction tool. It drains the output buffer — skipping it causes output to accumulate silently across calls. - Call
take_screenshotafter every reload to confirm the change looked right. Never assume a visual edit was correct without seeing it. - When
get_outputreturns a[flutter.error]line, the widget ID in the summary can be passed directly toinspect_layout.
Orienting on an unfamiliar screen
take_screenshot— see what's on screen.get_route— see the navigator stack and current screen widget names with source file locations. Use before editing to confirm which file to change.get_semantics— see the interactive elements and their node IDs.
Interacting with the app
When slipstream_agent is installed in the Flutter app, prefer finder-based
tools — they are more reliable than semantics-based interaction:
perform_tap(byKey: ...)/perform_set_text(byKey: ...)— most reliable; addValueKey('my_key')to the widget while writing it.perform_tap(byText: ...)— good for button labels.perform_tap(byType: ...)— useful for unique widget types.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 109 lines · 98 tokens per session scan A cb2d88b03b16
slipstream-inspector is a skill published in the GitHub repository devoncarew/flutter-slipstream (5 stars, last pushed 18d ago), licensed BSD-3-Clause. It adds 98 tokens to every session and 1,036 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
content-planner
GSC-driven content calendar. Pulls real Search Console data, finds the highest click-potential opportunities (striking-distance queries at positions 5-20, unanswered query intent, related-keyword expansions), and produces a dated, prioritized content calendar — ready to hand to /content-writer. Use when the user asks…
meta-tags-optimizer
Optimize title tags, meta descriptions, Open Graph, and Twitter cards for maximum click-through rate. Generates multiple A/B test variations with character counting and SERP preview. Use when asked to "optimize title tag", "write meta description", "improve CTR", "Open Graph tags", "fix my meta tags", "social media…
setup-cms
Connect a CMS to notfair SEO tools. Guides users through configuring WordPress, Strapi, Contentful, or Ghost — tests the connection, and writes credentials to .env.local. Once set up, seo-analysis automatically cross- references CMS content against Google Search Console data. Use whenever the user says "connect my…
broken-link-checker
Scans a website to find broken links (404s, 500s). Crawls internal pages, identifies broken outbound links, and reports source pages for easy fixing. Use this when the user asks to "check for broken links", "find 404s", "audit my links", or "is my site healthy".
test-native-extension
Validate a third-party control repo across four automated layers plus one printed manual recipe. Layer 1 asserts native-source structure (Android getName() and iOS +moduleName to manifest nativeModule; @ReactMethod / RCTEXPORTMETHOD to methods; no @ReactModule) plus load/init readiness (ReactPackage public no-arg…
add-native
Public entry point for native device capabilities and native controls — camera, image picker, barcode/QR scanner, document picker, file picker, secure storage, file system, sharing, PDF generation/viewing, pen/signature capture, background GPS/geolocation tracking, or supported local file workflows — in a Power Apps…