TopRank Skills

Home / Claw Skills / Data Analysis / daum-trends-briefing
Official OpenClaw rules 54%

daum-trends-briefing

Fetch Daum real-time trend TOP10, add one-line context (top news title) + links, and print a 12-line briefing suitable for OpenClaw cron + Telegram announce.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 daum-trends-briefing 技能。 若已安装,则直接安装 daum-trends-briefing 技能。

Overview

Skill Key
hunkim/daum-trends-briefing
Author
hunkim
Source Repo
openclaw/skills
Version
-
Source Path
skills/hunkim/daum-trends-briefing
Latest Commit SHA
08f2a44a1076d5d462b5b45ace9da1cff4833b01

Extracted Content

SKILL.md excerpt

## What this skill does

Creates a short briefing from **Daum 메인 실시간 트렌드(REALTIME_TREND_TOP)**:

(ClawHub 검증 정책상 바이너리 파일(jpg/png 등)을 스킬에 포함할 수 없어서, 스크린샷은 외부 링크로만 첨부하세요.)

예시 스크린샷(외부 링크): https://github.com/user-attachments/assets/9aefc56b-6f52-4580-b4e5-585bd0e816da

- TOP10 keywords
- For each keyword: fetch Daum search page and extract **one representative title** (usually the first News result)
- Include links
- Print exactly **12 lines** to stdout:
  1) Title line
  2–11) 10 trend lines
  12) `updatedAt: ...`

## Data sources

- Daum homepage: https://www.daum.net/
- Daum search (for each keyword): `https://search.daum.net/search?w=tot&DA=RT1&rtmaxcoll=AIO,NNS,DNS&q=<keyword>`

## How to fetch & parse https://www.daum.net/ (REALTIME_TREND_TOP)

Daum renders a large JSON blob inside the HTML. The real-time trend slot appears as a node with:

- `"uiType":"REALTIME_TREND_TOP"`
- `contents.data.updatedAt`
- `contents.data.keywords` (array of `{ keyword, rank, ... }`)

Parsing approach (used in the script):

1. Download the HTML.
2. Find the first occurrence of `"uiType":"REALTIME_TREND_TOP"`.
3. From that position, locate:
   - `"updatedAt":"..."`
   - `"keywords":[ ... ]`
4. Extract the `keywords` array substring by bracket matching, then `JSON.parse` it.

This avoids having to parse the full page-level JSON assignment.

## How to fetch each keyword’s Daum search page & extract 1 title

For each keyword, request:

`https://search.daum.net/search?w=tot&DA=RT1&rtmaxcoll=AIO,NNS,DNS&q=<encodeURIComponent(keyword)>`

Extraction heuristic (used in the script):

- Prefer the **first** match of the News-like title pattern:
  - `<strong class="tit-g ..."><a href="...">TITLE</a>`
- Strip HTML tags (`<b>...</b>` etc.) and decode basic HTML entities.
- If no title is found, fall back to `Daum 검색 결과`.

## Output format

Example (12 lines):

1. `Daum 실시간 트렌드 TOP10`
2. `1. 키워드: “대표 제목” https://search.daum....

Related Claw Skills

heyixuan2

bambu-studio-ai

★ 41

Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).

openstockdata

stock-data-skill

★ 4

OpenClaw Skill for stock data analysis

capt-marbles

geo-optimization

★ 1

Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.

cclank

news-aggregator-skill

★ 0

Comprehensive news aggregator that fetches, filters, and deeply analyzes real-time content from 8 major sources: Hacker News, GitHub Trending, Product Hunt, 36Kr, Tencent News, WallStreetCN, V2EX, and Weibo. Best for 'daily scans', 'tech news briefings', 'finance updates', and 'deep interpretations' of hot topics.

cccarv82

openclaw-backup-optimized

★ 0

Optimized OpenClaw backup skill for creating full snapshots with workspace archive splitting, change summaries, restore instructions, and Discord notifications. Use when you need to set up or run automated backups, configure backup cron jobs, or document/restore OpenClaw state. Triggers on backup automation, backup scripts, snapshot/restore, or GitHub backup repos.

cemoso

pr-review-loop

★ 0

Autonomous PR review loop with Greptile. Use when an agent creates a PR and needs to autonomously handle code review feedback — reading Greptile reviews, fixing issues, pushing fixes, re-triggering review, and auto-merging when score is 4/5+. Trigger on commands like "pr review {url}", "review my PR", or when a Greptile review webhook/poll delivers feedback.