skills/mp-gemini-fetch/SKILL.md
Fetch content from sites Claude cannot access (Reddit, etc.) using Gemini CLI as fallback. Use when: fetching Reddit, StackOverflow, or sites Claude cannot access directly.
npx skillsauth add MartinoPolo/mpx-claude-code mp-gemini-fetchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetches content from websites that Claude cannot directly access using Gemini CLI as a fallback.
npm install -g @anthropic/gemini-cli or equivalentgemini auth first)Invoke with a URL:
/mp-gemini-fetch https://reddit.com/r/programming/top
Check if the URL is provided and valid.
IMPORTANT: Use -p flag for non-interactive mode. Without it, Gemini expects stdin and fails.
gemini -p "Fetch and summarize the main content from this URL: [URL]. Include key points, any code snippets, and relevant discussion highlights."
Use longer timeout for complex pages:
gemini -p "..." --timeout 120000
Parse the Gemini response and format it for use.
Present the fetched content to the user:
"Fetched from: [URL]
Content: [Gemini's summary/content]
Note: This content was fetched via Gemini CLI as a fallback."
If Gemini CLI fails:
-p flag. Use gemini -p "prompt"gemini --versiongemini authdevelopment
Audit all active skills for consistency, convention drift, and common issues. Auto-fixes where possible, reports remaining issues. Use when: "audit skills", "skill audit", "check skills", "lint skills"
testing
Ship finished work: sync base, commit, push, PR, wait for CI green, merge. Use when: "ship it", "ship and merge", "ship this"
development
Scan recent Claude Code sessions for grilling/design discussions, extract decisions, and update CONTEXT.md + DECISIONS.md. Use when: "harvest decisions", "extract decisions from sessions", "update docs from sessions", "sync decisions"
tools
Consolidate CONTEXT.md: remove duplicates, outdated items, tighten language. Use when: "consolidate context", "clean up context", "simplify context", "consolidate requirements"