rss-skill-cli 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/src/templates.js
CHANGED
|
@@ -54,7 +54,7 @@ scripts/rss-find sync
|
|
|
54
54
|
|
|
55
55
|
'rss-feed': `---
|
|
56
56
|
name: rss-feed
|
|
57
|
-
description: Manage RSS subscriptions and articles for AI agent workflows. Subscribe to feeds, list unread articles
|
|
57
|
+
description: Manage RSS subscriptions and articles for AI agent workflows. Subscribe to feeds, list unread articles, and read/archive content. Use when managing RSS subscriptions or processing feed content.
|
|
58
58
|
license: MIT
|
|
59
59
|
---
|
|
60
60
|
|
|
@@ -68,49 +68,72 @@ Manage RSS subscriptions and articles. Designed for AI agent workflows.
|
|
|
68
68
|
|
|
69
69
|
## Commands
|
|
70
70
|
|
|
71
|
+
### init
|
|
72
|
+
Initialize feeds.yaml with default configuration.
|
|
73
|
+
|
|
74
|
+
\`\`\`bash
|
|
75
|
+
scripts/rss-feed init --interval 30m --concurrency 5
|
|
76
|
+
\`\`\`
|
|
77
|
+
|
|
71
78
|
### add
|
|
72
79
|
Add a new RSS feed subscription.
|
|
73
80
|
|
|
74
81
|
\`\`\`bash
|
|
75
|
-
scripts/rss-feed add <url> --
|
|
82
|
+
scripts/rss-feed add <name> <url> --category tech --tags tag1,tag2
|
|
76
83
|
\`\`\`
|
|
77
84
|
|
|
78
85
|
### feeds
|
|
79
|
-
List all feed subscriptions
|
|
86
|
+
List all feed subscriptions grouped by category.
|
|
80
87
|
|
|
81
88
|
\`\`\`bash
|
|
82
89
|
scripts/rss-feed feeds
|
|
83
90
|
\`\`\`
|
|
84
91
|
|
|
85
|
-
###
|
|
86
|
-
|
|
92
|
+
### remove
|
|
93
|
+
Remove a feed subscription by name.
|
|
87
94
|
|
|
88
95
|
\`\`\`bash
|
|
89
|
-
scripts/rss-feed
|
|
90
|
-
scripts/rss-feed list --category tech
|
|
96
|
+
scripts/rss-feed remove <name>
|
|
91
97
|
\`\`\`
|
|
92
98
|
|
|
93
|
-
###
|
|
94
|
-
|
|
99
|
+
### sync
|
|
100
|
+
Sync feed content (all or specific feed).
|
|
95
101
|
|
|
96
102
|
\`\`\`bash
|
|
97
|
-
scripts/rss-feed
|
|
98
|
-
scripts/rss-feed
|
|
103
|
+
scripts/rss-feed sync
|
|
104
|
+
scripts/rss-feed sync -n "Feed Name"
|
|
99
105
|
\`\`\`
|
|
100
106
|
|
|
101
|
-
###
|
|
102
|
-
|
|
107
|
+
### articles
|
|
108
|
+
List unread articles.
|
|
103
109
|
|
|
104
110
|
\`\`\`bash
|
|
105
|
-
scripts/rss-feed
|
|
106
|
-
scripts/rss-feed
|
|
111
|
+
scripts/rss-feed articles
|
|
112
|
+
scripts/rss-feed articles --category tech
|
|
113
|
+
scripts/rss-feed articles --all # Include archived
|
|
114
|
+
\`\`\`
|
|
115
|
+
|
|
116
|
+
### read
|
|
117
|
+
Read an article by index.
|
|
118
|
+
|
|
119
|
+
\`\`\`bash
|
|
120
|
+
scripts/rss-feed read 1
|
|
121
|
+
scripts/rss-feed read 1 --archive=false # Don't archive after reading
|
|
122
|
+
\`\`\`
|
|
123
|
+
|
|
124
|
+
### archive
|
|
125
|
+
Archive articles.
|
|
126
|
+
|
|
127
|
+
\`\`\`bash
|
|
128
|
+
scripts/rss-feed archive --all
|
|
129
|
+
scripts/rss-feed archive 1 2 3 # Archive by indices
|
|
107
130
|
\`\`\`
|
|
108
131
|
|
|
109
132
|
### up
|
|
110
133
|
Start sync daemon for automatic feed updates.
|
|
111
134
|
|
|
112
135
|
\`\`\`bash
|
|
113
|
-
scripts/rss-feed up -d
|
|
136
|
+
scripts/rss-feed up -d # Run in background
|
|
114
137
|
\`\`\`
|
|
115
138
|
|
|
116
139
|
### down
|
|
@@ -127,18 +150,28 @@ Check daemon status.
|
|
|
127
150
|
scripts/rss-feed status
|
|
128
151
|
\`\`\`
|
|
129
152
|
|
|
153
|
+
### path
|
|
154
|
+
Show content storage paths.
|
|
155
|
+
|
|
156
|
+
\`\`\`bash
|
|
157
|
+
scripts/rss-feed path
|
|
158
|
+
\`\`\`
|
|
159
|
+
|
|
130
160
|
## Agent Workflow
|
|
131
161
|
|
|
132
|
-
1. Get unread articles
|
|
162
|
+
1. Get unread articles:
|
|
133
163
|
\`\`\`bash
|
|
134
|
-
scripts/rss-feed
|
|
164
|
+
scripts/rss-feed articles
|
|
135
165
|
\`\`\`
|
|
136
166
|
|
|
137
|
-
2.
|
|
167
|
+
2. Read an article:
|
|
168
|
+
\`\`\`bash
|
|
169
|
+
scripts/rss-feed read 1
|
|
170
|
+
\`\`\`
|
|
138
171
|
|
|
139
|
-
3.
|
|
172
|
+
3. Archive when done:
|
|
140
173
|
\`\`\`bash
|
|
141
|
-
scripts/rss-feed
|
|
174
|
+
scripts/rss-feed archive --all
|
|
142
175
|
\`\`\`
|
|
143
176
|
|
|
144
177
|
## Daemon Mode
|
|
@@ -212,7 +245,7 @@ scripts/rss-gh subscribe owner/repo --releases
|
|
|
212
245
|
|
|
213
246
|
3. Subscribe using rss-feed:
|
|
214
247
|
\`\`\`bash
|
|
215
|
-
scripts/rss-feed add <rss-url>
|
|
248
|
+
scripts/rss-feed add "React Releases" <rss-url>
|
|
216
249
|
\`\`\`
|
|
217
250
|
`
|
|
218
251
|
};
|