test-guided-tool-run — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited test-guided-tool-run (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Before running any MCP tool directly (outside the MCP server), examine the corresponding integration test to understand the correct usage pattern.
python .claude/skills/test-guided-tool-run/scripts/find_test.py <tool_name>Example:
python .claude/skills/test-guided-tool-run/scripts/find_test.py get_transaction_infoThe script outputs the test file path. Read it to understand:
Use this template in /tmp/claude/.../scratchpad/:
#!/usr/bin/env python3
import asyncio
import sys
from pathlib import Path
from unittest.mock import AsyncMock, MagicMock
sys.path.insert(0, str(Path(__file__).parent.parent.parent.parent.parent))
from blockscout_mcp_server.tools.<category>.<tool_module> import <tool_function>
def create_mock_ctx():
"""Create a mock MCP Context object (pattern from tests/conftest.py)."""
ctx = MagicMock()
ctx.report_progress = AsyncMock()
ctx.info = AsyncMock()
return ctx
async def main():
ctx = create_mock_ctx()
try:
result = await <tool_function>(
# Your parameters here
ctx=ctx
)
print("Success! Result:")
print(result)
except Exception as e:
print(f"Error: {type(e).__name__}: {e}")
import traceback
traceback.print_exc()
if __name__ == "__main__":
asyncio.run(main())python /tmp/claude/.../scratchpad/your_test_script.py~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.