소스 정보
- 저장소
- heldernoid/agentic-build-templates
- 최근 소스 활동
- 2026년 3월 21일 12:24
- 감지된 SKILL.md 언어
- 영어
- 스타
- 8
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/heldernoid/agentic-build-templates --skill rss-feeds명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | rss-feeds |
| display_name | RSS Feed |
| description | Access and configure the RSS 2.0 feed generated by changelog-site. |
| base_url | http://localhost:3000 |
| auth | none |
| version | 1.0 |
Use this skill to:
GET /rss.xml
The feed is publicly accessible at /rss.xml. No authentication required.
curl http://localhost:3000/rss.xml
The response is Content-Type: application/rss+xml; charset=utf-8.
The feed follows RSS 2.0. Entry bodies use CDATA to wrap HTML safely.
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Acme App Changelog</title>
<link>https://changelog.acmeapp.com</link>
<description>Product updates, bug fixes, and new features.</description>
<language>en</language>
<lastBuildDate>Thu, 20 Mar 2026 10:00:00 +0000</lastBuildDate>
<atom:link href="https://changelog.acmeapp.com/rss.xml"
rel="self" type="application/rss+xml"/>
<item>
<title>Dark mode support across all pages</title>
<link>https://changelog.acmeapp.com/dark-mode-support</link>
<guid isPermaLink="true">https://changelog.acmeapp.com/dark-mode-support</guid>
<pubDate>Thu, 20 Mar 2026 00:00:00 +0000
Added
<![CDATA[<p>We've added a full dark mode...</p>]]>
| RSS field | Source |
|---|---|
<title> (channel) | settings.product_name + " Changelog" |
<link> (channel) | settings.public_url |
<description> (channel) | settings.description |
<lastBuildDate> | Published date of the most recent entry |
<title> (item) | entry.title |
<link> (item) | settings.public_url + "/" + entry.slug |
<guid> | Same as item <link> |
<pubDate> | entry.published_at in RFC 822 format |
<category> | entry.category (title-cased) |
<description> | entry.body_html wrapped in CDATA |
is_draft = false).published_at descending (newest first).The feed is enabled by default. To disable it:
curl -X PUT http://localhost:3000/api/settings \
-H "Content-Type: application/json" \
-d '{"rss_enabled": false}'
When disabled, GET /rss.xml returns 404.
To re-enable:
curl -X PUT http://localhost:3000/api/settings \
-H "Content-Type: application/json" \
-d '{"rss_enabled": true}'
Use the curl response headers to confirm the correct content type:
curl -I http://localhost:3000/rss.xml
Expected:
HTTP/1.1 200 OK
Content-Type: application/rss+xml; charset=utf-8
The public changelog page includes an autodiscovery <link> tag in <head> so feed readers can find the feed automatically:
<link rel="alternate" type="application/rss+xml"
title="Acme App Changelog"
href="https://changelog.acmeapp.com/rss.xml">
Common feed readers accept the raw feed URL directly. For direct subscription links:
| Reader | URL pattern |
|---|---|
| Feedly | https://feedly.com/i/subscription/feed/{encoded_feed_url} |
| Inoreader | https://www.inoreader.com/feed/{encoded_feed_url} |
| Generic | Paste the feed URL directly into any RSS reader |
Replace {encoded_feed_url} with the URL-encoded value of https://changelog.acmeapp.com/rss.xml.
Feed returns 404
Check that rss_enabled is true in settings:
curl http://localhost:3000/api/settings | jq .rss_enabled
Feed shows no items
Verify that at least one entry is published (not draft):
curl "http://localhost:3000/api/entries?status=published&limit=1"
Feed content is stale
The feed is generated dynamically on each request. There is no cache to clear. If entries appear in the API but not the feed, check that published_at is set (not null) on those entries.
Invalid XML in feed
Entry body HTML is sanitized with DOMPurify before storage. If a feed validator reports malformed XML, the likely cause is unescaped characters in the product_name or description setting. Update those fields to remove <, >, or & characters.
SOC 직업 분류 기준