소스 정보
- 저장소
- johnalbertini14-glitch/openclaw-skills
- 최근 소스 활동
- 2026년 2월 17일 11:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill newsboat명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | newsboat |
| description | OpenClaw AI agent skill for reading and managing RSS/Atom feeds via Newsboat. |
| homepage | https://github.com/ianwu-ca-778/openclaw-skills-newsboat |
| license | MIT |
| metadata | {"openclaw":{"emoji":"📰","requires":{"bins":["newsboat","sqlite3","pandoc"]}}} |
This guide explains how to read and manage RSS/Atom feeds using Newsboat, a command-line RSS/Atom feed reader.
sudo apt update
sudo apt install newsboat sqlite3 pandoc
brew install newsboat sqlite3 pandoc
Search online for “install newsboat on [your OS]” for specific instructions.
If Newsboat is not in your PATH, use your OS search to locate its files.
cat ~/.newsboat/urls
$ cat ~/.newsboat/urls
https://604now.com/rss/
echo "https://example.com/feed.xml" >> ~/.newsboat/urls
sed -i.bak '/https:\/\/example.com\/feed.xml/d' ~/.newsboat/urls
This removes the feed URL and creates a backup urls.bak.
newsboat -x reload
Retrieve articles from the Newsboat cache using sqlite3 and convert HTML to plain text with pandoc.
The rss_item table schema:
CREATE TABLE rss_item (
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL
,guid VARCHAR(64) NOT NULL
,title VARCHAR(1024) NOT NULL
,author VARCHAR(1024) NOT NULL
,url VARCHAR(1024) NOT NULL
,feedurl VARCHAR(1024) NOT NULL
,pubDate INTEGER NOT NULL
,content VARCHAR(65535) NOT NULL
,unread INTEGER (1) NOT NULL
,enclosure_url VARCHAR(1024)
,enclosure_type VARCHAR(1024)
,enqueued INTEGER (1) NOT NULL DEFAULT 0
,flags VARCHAR(52)
,deleted INTEGER (1) NOT NULL DEFAULT 0
,base VARCHAR(128) NOT NULL DEFAULT ""
,content_mime_type VARCHAR(255) NOT NULL DEFAULT ""
,enclosure_description VARCHAR(1024) NOT NULL ""
,enclosure_description_mime_type () ""
);
sqlite3 -noheader ~/.newsboat/cache.db \
"SELECT 'title = ' || title || '\nurl = ' || url || '\ndate = ' || datetime(pubDate, 'unixepoch', 'localtime') || '\n\n' || content
FROM rss_item ORDER BY pubDate DESC LIMIT 1;" | \
pandoc -f html-native_divs-native_spans -t plain --strip-comments
$ sqlite3 -noheader ~/.newsboat/cache.db \
"SELECT 'title = ' || title || '\nurl = ' || url || '\ndate = ' || datetime(pubDate, 'unixepoch', 'localtime') || '\n\n' || content
FROM rss_item ORDER BY pubDate DESC LIMIT 1;" | \
pandoc -f html-native_divs-native_spans -t plain --strip-comments
title = 90+ Tri-Cities Restaurants Are Dropping Exclusive Deals And
Menus For A Full Month\nurl =
https://604now.com/taste-of-the-tri-cities-february-march-2026/\ndate =
2026-02-13 16:36:10\n\n
Taste of the Tri-Cities returns for another delicious year, treating
everyone across Metro Vancouver to the amazing culinary delights that
the Coquitlam, Port Coquitlam, and Port Moody has to offer. For a whole
month, from February 15 to March 15, you can take part in one of the
tastiest annual festivals in the Lower Mainland.