ワンクリックで
web-search
Search the web for real-time financial data, news articles, and market information using targeted queries.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search the web for real-time financial data, news articles, and market information using targeted queries.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
This skill outlines two methods to change the root password in Linux: one when you have the current password, and another when you need to reset it without the current password.
This skill outlines the workflow for generating a Know Your Customer (KYC) report, encompassing company website research, GLEIF/LEI lookup, and adverse media/news screening to build a foundational client profile.
This skill describes how to perform an LEI search on the GLEIF website to find a company's LEI number for KYC analysis.
This skill describes how to reset a forgotten Linux root password by booting into single-user mode through the Grub menu.
This skill summarizes the "Social Media Manager Confidential" podcast, which offers realistic, positive, and insightful resources for social media managers. It covers strategies, content tips, and transparent advice for building ethical and profitable businesses that support their lifestyle goals. The podcast also extends an invitation to an exclusive, free private community for social media managers.
Understand the basic structure of an Excel file, differentiating between a workbook and its constituent worksheets, and how to navigate between them. It is foundational for anyone new to Excel or needing a refresher on its basic organization.
| name | Web Search |
| description | Search the web for real-time financial data, news articles, and market information using targeted queries. |
Use this skill for:
def web_search(query: str, max_results: int = 5) -> list[dict]:
"""Search the web for financial information.
Args:
query: Search query string
max_results: Maximum number of results to return
Returns:
List of search results with title, url, and snippet
"""
results = search_engine.query(query, limit=max_results)
return [
{
"title": r.title,
"url": r.url,
"snippet": r.snippet,
}
for r in results
]
parse-html to extract full content from result URLs.