Agent skill
jina-ai
Use Jina AI APIs for converting URLs to LLM-friendly Markdown (Reader) and searching the web (Search).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/jina-ai
SKILL.md
Jina AI Skill
This skill integrates Jina AI's Reader (r.jina.ai) and Search (s.jina.ai) APIs to convert URLs and web search results into clean, LLM-friendly Markdown.
Setup
-
Dependencies: Requires
requests.bashpip install requests python-dotenv -
API Key Configuration (Recommended): Jina APIs offer higher limits with an API key (JINA_API_KEY).
bashread -p "Enter your Jina API key (optional, press Enter to skip): " JINA_KEY if [ ! -z "$JINA_KEY" ]; then echo "JINA_API_KEY=$JINA_KEY" >> .env if [ -f .gitignore ] && ! grep -q ".env" .gitignore; then echo ".env" >> .gitignore; fi echo "API key saved to .env." fi
Usage
The script scripts/jina_tools.py supports read and search operations.
1. Read URL (Jina Reader)
Convert a URL into clean Markdown.
python3 scripts/jina_tools.py read "<url>"
Example:
python3 scripts/jina_tools.py read "https://en.wikipedia.org/wiki/Large_language_model"
2. Search Web (Jina Search)
Search the web and return the top results converted to Markdown.
python3 scripts/jina_tools.py search "<query>"
Example:
python3 scripts/jina_tools.py search "What is Jina AI?"
Output
The script outputs results in JSON format, containing title, URL, and content_markdown.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?