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 skills add akka/ai-marketplace --skill inspectgit clone --depth 1 https://github.com/akka/ai-marketplaceWrote 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/akka/ai-marketplace/inspect)<a href="https://agentmods.dev/skills/akka/ai-marketplace/inspect"><img src="https://agentmods.dev/badge/skills/akka/ai-marketplace/inspect/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/akka/ai-marketplace/inspect"><img src="https://agentmods.dev/badge/skills/akka/ai-marketplace/inspect.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00031 | $0.01976 |
| Opus 5 | $0.00015 | $0.00988 |
| Sonnet 5 | $0.00006 | $0.00395 |
| Haiku 4.5 | $0.00003 | $0.00198 |
Grade A, and why
inspect 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 10d 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 — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.
User Input
You MUST consider the user input before proceeding (if not empty).
Purpose
This command inspects a running service at runtime. It exercises API
endpoints, verifies internal state through backoffice tools, and validates the
UI through browser tools — all driven by the feature specification. No
compilation or unit tests happen here; use /akka:build for that.
Outline
-
Pre-flight checks:
- Call
akka_local_statusto verify the service is running. If not running, stop and tell the user: "No service is running locally. Run/akka:buildfirst to compile, test, and start the service." - Call
akka_sdd_list_specsto find the target feature. If the user specified a feature name inthe user's request, match it. Otherwise, if there is exactly one feature, use it. If multiple features exist, ask the user which to inspect. - If no spec exists, stop and tell the user: "No feature specification
found. Run
/akka:specifyfirst to create one, or provide a feature name." - Read the spec.md for the target feature. Extract:
- API endpoints (paths, methods, expected request/response shapes)
- Entities and their expected events/state
- Workflows and expected step sequences
- Views and expected query results
- Agents and expected behavior
- Acceptance criteria to verify
- Call
-
Discover components: Call
akka_backoffice_list_componentswithlocal=trueto list all components registered in the running service.- Compare against what the spec defines — flag any components that are missing from the running service or present but not in the spec
- Report the component inventory: entities, views, workflows, agents, endpoints
-
Exercise API endpoints: For each endpoint defined in the spec, use
akka_local_requestto send requests and verify responses:- Happy path: Send valid requests matching the spec's examples or acceptance criteria. Verify HTTP status codes and response payloads.
- Command operations: POST/PUT/DELETE commands that mutate state. Execute these in the order that makes sense (e.g. create before update).
- Query operations: GET requests to read state back. Verify the response matches what the commands should have produced.
- Error cases: If the spec defines error scenarios (invalid input, not-found, conflict), test those too. Verify appropriate error responses.
- Record all request/response pairs for the report.
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.
- 10d ago First seen · 137 lines · 31 tokens per session scan A 47bcc82ce38f
inspect is a skill published in the GitHub repository akka/ai-marketplace (6 stars, last pushed 2d ago), licensed Apache-2.0. It adds 31 tokens to every session and 1,976 once invoked, about $0.0002 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
playwright-cli
Automate browser interactions, test web pages and work with Playwright tests.
browser-testing-with-devtools
Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze network requests, profile performance, or verify visual output with real runtime data. Requires the chrome-devtools MCP server to be…
browse
Drive a real browser through Aside: open a page, read it, click through a flow, take screenshots, check console errors. (gstack).
webapp-testing
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
create-verification-skill
Create a repo-local verification skill and exhaustive feature map for driving a real app through its UI, CLI, or API. Use for "create a verification skill", "make a verify skill for this repo", or "document how agents can verify this app".
browser-qa
A browser-based quality check for deployed web pages and user flows. It uses browser automation to test rendering, navigation, forms, interactions, responsive behaviour, and accessibility-related issues.