grok-search — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited grok-search (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.
Search and research using Grok AI via browser automation with Claude in Chrome MCP.
Use URL parameters to submit queries directly without manual input:
https://grok.com/?q={your_query}This automatically submits the query and starts generating results.
// 1. Create new tab
mcp__claude-in-chrome__tabs_create_mcp()
// 2. Navigate with query parameter
mcp__claude-in-chrome__navigate({
url: "https://grok.com/?q=your search query here",
tabId: <tab_id>
})
// 3. Wait for results (typically 5-30 seconds for regular, 1-3 minutes for DeepSearch)
mcp__claude-in-chrome__computer({ action: "wait", duration: 10, tabId: <tab_id> })
// 4. Get page text content
mcp__claude-in-chrome__get_page_text({ tabId: <tab_id> })
// 5. Find and click copy button (aria-label="Copy") or (aria-label="复制")
mcp__claude-in-chrome__find({ query: "复制 button", tabId: <tab_id> })
mcp__claude-in-chrome__computer({ action: "left_click", ref: "ref_xxx", tabId: <tab_id> })
// 6. Save to file via clipboard
Bash: pbpaste > result.mdhttps://grok.com/?q={query}To enable DeepSearch:
// After navigating to grok.com (without query param)
mcp__claude-in-chrome__find({ query: "DeepSearch button", tabId: <tab_id> })
mcp__claude-in-chrome__computer({ action: "left_click", ref: "ref_xxx", tabId: <tab_id> })
// Then input query and submitQuery: "24h内中文热门推特在讨论什么"
Query: "What are trending topics on X about AI in the last 24 hours"
Query: "24h内我关注的中文推特时间线里有哪些热门讨论"Query: "最近24小时内 Claude 相关的信息有哪些"
Query: "Latest news about [topic] in the past 24 hours"Query: "[Topic] 的最新进展和讨论"
Query: "Comprehensive overview of [topic]"// Find copy button using aria-label
mcp__claude-in-chrome__find({ query: "复制 button", tabId: <tab_id> })
// Click to copy content to clipboard
mcp__claude-in-chrome__computer({ action: "left_click", ref: "ref_xxx", tabId: <tab_id> })
// Save from clipboard
Bash: pbpaste > result.md// If copy button fails, extract text directly
const text = mcp__claude-in-chrome__get_page_text({ tabId: <tab_id> })
// Then save content via Write toolget_page_textget_page_text as fallback for content extractionIf you encounter "Cannot access a chrome-extension:// URL" errors:
get_page_text instead of screenshotget_page_text to extract content directly~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.