소스 정보
- 저장소
- 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 reading-list명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | reading-list |
| version | 1.0 |
| description | Operate the reading-list API to save, manage, tag, search, and export articles. |
| tools | ["Bash","Read","Write","Edit"] |
reading-list is a personal read-it-later app. It fetches article content using Mozilla Readability and stores clean, extracted text in SQLite. Articles can be tagged, filtered by status, searched by full text, and delivered as a daily email digest.
PORT=3000
DB_PATH=./data/reading-list.db
SESSION_SECRET=<random string>
AUTH_PASSWORD=<bcrypt hash> # generate: node -e "require('bcryptjs').hash('mypassword',10).then(console.log)"
FETCH_TIMEOUT_MS=10000
# Optional: digest email
DIGEST_SMTP_HOST=smtp.example.com
DIGEST_SMTP_PORT=587
DIGEST_SMTP_USER=you@example.com
DIGEST_SMTP_PASS=<password>
DIGEST_FROM=reading-list@example.com
NODE_ENV=production
pnpm install
pnpm dev # hot reload
pnpm build && pnpm start
docker compose up # production
# Save a URL (triggers async fetch + extraction)
curl -X POST http://localhost:3000/api/articles \
-H 'Content-Type: application/json' \
-b 'session=...' \
-d '{"url": "https://blog.golang.org/structured-concurrency"}'
# Poll until status != 'pending'
curl http://localhost:3000/api/articles/:id
Extraction is asynchronous. The article starts with status='pending' and transitions to status='unread' when complete or status='failed' if the fetch fails.
# All articles
curl http://localhost:3000/api/articles
# Unread only
curl "http://localhost:3000/api/articles?status=unread"
# Filter by tag
curl "http://localhost:3000/api/articles?tag=golang"
# Unread + sorted by newest
curl "http://localhost:3000/api/articles?status=unread&sort=created_at&order=desc"
# Unread, not archived
curl "http://localhost:3000/api/articles?status=unread&archived=0"
# Full-text search
curl "http://localhost:3000/api/articles?q=goroutines+concurrency"
# Mark as read
curl -X PATCH http://localhost:3000/api/articles/:id \
-H 'Content-Type: application/json' \
-d '{"status": "read"}'
# Update read progress (0-100)
curl -X PATCH http://localhost:3000/api/articles/:id \
-H 'Content-Type: application/json' \
-d '{"read_pct": 65}'
# Star an article
curl -X PATCH http://localhost:3000/api/articles/:id \
-H 'Content-Type: application/json' \
-d '{"starred": 1}'
# Archive
curl -X PATCH http://localhost:3000/api/articles/:id \
-H 'Content-Type: application/json' \
-d '{"archived": 1}'
# Unarchive
curl -X PATCH http://localhost:3000/api/articles/:id \
-H 'Content-Type: application/json' \
-d '{"archived": 0}'
curl -X POST http://localhost:3000/api/articles/:id/refetch
curl -X DELETE http://localhost:3000/api/articles/:id
# List tags
curl http://localhost:3000/api/tags
# Create a tag
curl -X POST http://localhost:3000/api/tags \
-H 'Content-Type: application/json' \
-d '{"name": "golang", "color": "#00ACD7"}'
# Rename a tag
curl -X PATCH http://localhost:3000/api/tags/:id \
-H 'Content-Type: application/json' \
-d '{"name": "go"}'
# Delete a tag (removes from all articles)
curl -X DELETE http://localhost:3000/api/tags/:id
# Add tag to article
curl -X POST http://localhost:3000/api/articles/:id/tags \
-H 'Content-Type: application/json' \
-d '{"tagId": "tag_xyz"}'
# Remove tag from article
curl -X DELETE http://localhost:3000/api/articles/:articleId/tags/:tagId
# Search all fields (title, excerpt, content)
curl "http://localhost:3000/api/search?q=goroutines"
# Search returns highlighted snippets
curl "http://localhost:3000/api/search?q=structured+concurrency"
The search endpoint uses SQLite FTS5. Queries support:
concurrency"structured concurrency" (URL-encode as %22structured+concurrency%22)gorout*# Import Netscape HTML (browser export)
curl -X POST http://localhost:3000/api/import \
-F 'file=@bookmarks.html'
# Import JSON array of URLs
curl -X POST http://localhost:3000/api/import \
-H 'Content-Type: application/json' \
-d '[
{"url": "https://example.com/article1", "title": "Article 1"},
{"url": "https://example.com/article2"}
]'
All imported articles are queued for async extraction.
# Export all articles as JSON
curl http://localhost:3000/api/export > reading-list-backup.json
# Export with article content included
curl "http://localhost:3000/api/export?includeContent=1" > full-backup.json
reading-list uses a single-password auth model. To get a session:
# Get CSRF token first
CSRF=$(curl -s http://localhost:3000/api/csrf | jq -r '.token')
# Login
curl -X POST http://localhost:3000/api/auth/login \
-H 'Content-Type: application/json' \
-H "X-CSRF-Token: $CSRF" \
-c cookies.txt \
-d '{"password": "mypassword"}'
# Use session cookie in subsequent requests
curl http://localhost:3000/api/articles -b cookies.txt
The bookmarklet JavaScript is available from the settings page at GET /api/settings/bookmarklet. Paste it as the URL of a browser bookmark to enable one-click saving.