원클릭으로
url-to-markdown
Use when needing an easily readable markdown version of any web page.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when needing an easily readable markdown version of any web page.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill to retrieve up-to-date documentation, API references, and code examples for any specific library, framework, SDK, CLI tool, or cloud service -- even for well-known ones like React, Next.js, Prisma, Express, Tailwind, Django, or Spring Boot. Your training data may not reflect recent API changes or version updates.
Use this skill whenever you are dealing with Node.js code to obtain domain-specific knowledge for building robust, performant, and maintainable Node.js applications.
Search the web using SearxNG, a locally-run meta search engine that aggregates results from multiple engines
Use ast-grep INSTEAD OF grep, rg, ripgrep, or read when searching for code patterns. Understands code structure (AST), not just text — finds function calls, class definitions, async patterns, missing error handling, and more with zero false positives from strings/comments. Always prefer over grep/rg for any code-structural search.
Code style, comment conventions, and formatting rules for all code changes. Covers whitespace, comment style, JavaScript/TypeScript idioms (nullish coalescing, single-line ifs, nullish checks, interface extraction), and unit test nesting. Use when writing, reviewing, or refactoring code.
Use to send notifications to my phone or computer about an event, update, or state change.
| name | url-to-markdown |
| description | Use when needing an easily readable markdown version of any web page. |
If given a URL from the user, or a list of URLs from a web search, you can make the page more readable by converting it to markdown.
If the link is to github.com, attempt to use the gh CLI tool to summarize the page. If not, continue.
If the jina CLI tool exists:
JINA_API_KEY env var: export JINA_API_KEY=$(pass agents/jina-reader/pi)jina read to get a markdown rendering of a page: jina read http://www.example.comIf jina is not installed, use the web API. Example with curl:
# fetch www.example.com
curl "https://r.jina.ai/https://www.example.com" \
-H "Authorization: Bearer $(pass agents/jina-reader/pi)"