/install garss-studio-rss-api
GARSS Studio RSS API
Project repository: https://github.com/zhaoolee/garss.
Use this skill when the user asks an AI agent to get RSS news from this project, summarize subscribed RSS articles, inspect GARSS Studio subscriptions, refresh a feed, or work with this project's backend API.
Core Rules
- Use the single public entrypoint only:
http://127.0.0.1:25173in local dev unless the user gives another base URL. - Do not access the backend container port or RSSHub container directly.
- If the local service is not running and the user wants live data, start GARSS Studio from the repository before calling APIs.
- Authenticate before calling protected endpoints.
- Prefer cached reads unless the user explicitly asks to refresh.
- Preserve source names and original article links in user-facing summaries.
Local Startup
Use these steps when the user asks for live GARSS data and http://127.0.0.1:25173/api/health is not reachable.
- Go to the project:
cd path/to/garss/garss-studio
If the repository is not present, clone https://github.com/zhaoolee/garss first, then enter garss-studio.
- Ensure env file exists:
cp .env.example .env
Skip this if .env already exists.
- Start the local development stack:
docker compose -f docker-compose.dev.yml up --build -d
Development mode exposes only one public port: http://127.0.0.1:25173. The backend and RSSHub services stay behind the frontend gateway. The dev compose defaults SCHEDULER_ENABLED=false, so startup should not trigger a full automatic RSS refresh.
- Verify service health:
curl -sS http://127.0.0.1:25173/api/health
The browser entry is http://127.0.0.1:25173/reader?pw=banana.
Auth Flow
- Login:
curl -sS -X POST "$BASE_URL/api/auth/login" \
-H 'Content-Type: application/json' \
-d '{"accessCode":"banana"}'
- Read
tokenfrom the JSON response. - Call protected endpoints with:
Authorization: Bearer \x3Ctoken>
If the user gives a URL containing ?pw=..., use that value as accessCode.
Reading RSS News
For the user's subscribed RSS news, call:
curl -sS "$BASE_URL/api/reader/items" \
-H "Authorization: Bearer $TOKEN"
This returns aggregated articles across enabled subscriptions, normally sorted newest first by the backend/frontend contract. Use ?refresh=true only when the user asks to force refresh, because it will fetch real upstream RSS sources and update cache.
For one source:
- Call
GET /api/subscriptionsto find the subscriptionid. - Call
GET /api/reader/subscriptions/{id}. - Add
?refresh=trueonly for a forced refresh.
Response Handling
Reader items normally include fields such as title, link, publishedAt, subscriptionId, subscriptionName, author/content fields, and optional HTML. When summarizing:
- Sort by
publishedAtdescending if needed. - Group by
subscriptionNamewhen useful. - Include the original
link. - Mention fetch errors from the
errorsarray if present. - Do not expose Bearer tokens in final answers.
API Reference
For endpoint details, read references/api.md only when needed.
The running backend also exposes:
- Swagger UI:
/api/docs - OpenAPI JSON:
/api/openapi.json
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install garss-studio-rss-api - After installation, invoke the skill by name or use
/garss-studio-rss-api - Provide required inputs per the skill's parameter spec and get structured output
What is GARSS Studio RSS API?
Use when an AI agent needs to read, refresh, summarize, or inspect RSS news from this GARSS Studio project through its backend API. Covers login with access... It is an AI Agent Skill for Claude Code / OpenClaw, with 58 downloads so far.
How do I install GARSS Studio RSS API?
Run "/install garss-studio-rss-api" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is GARSS Studio RSS API free?
Yes, GARSS Studio RSS API is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does GARSS Studio RSS API support?
GARSS Studio RSS API is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created GARSS Studio RSS API?
It is built and maintained by zhaoolee (@zhaoolee); the current version is v1.0.0.