@nuvlore/extension-rss 0.1.0

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.
Files changed (3) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +16 -0
  3. package/package.json +40 -0
package/LICENSE ADDED
@@ -0,0 +1 @@
1
+ Apache-2.0
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # @nuvlore/extension-rss
2
+
3
+ Read-only public OPML, RSS/Atom, and article text collectors for Nuvlore writing workflows.
4
+
5
+ ## Tools
6
+
7
+ - `tools/opml-feed-list.mjs`: fetch and parse OPML feed outlines.
8
+ - `tools/latest-articles.mjs`: read each feed's latest entry and fetch bounded article text previews.
9
+
10
+ ## Test
11
+
12
+ ```sh
13
+ npm test
14
+ ```
15
+
16
+ Migrated from the NewState/Eldwin RSS extension with the package and repository renamed for Nuvlore.
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@nuvlore/extension-rss",
3
+ "version": "0.1.0",
4
+ "description": "RSS and article reading tools for Nuvlore.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "files": [
8
+ "README.md",
9
+ "LICENSE"
10
+ ],
11
+ "scripts": {
12
+ "test": "npm run test:unit && npm run test:integration",
13
+ "test:unit": "node --test test/unit/*.test.js",
14
+ "test:integration": "node --test test/integration/*.test.js"
15
+ },
16
+ "agentRuntimeDistribution": {
17
+ "visibility": "private",
18
+ "group": "rss",
19
+ "serviceGrouping": "single-service",
20
+ "publicService": true,
21
+ "rationale": "Public OPML, RSS/Atom, and article readers for Nuvlore."
22
+ },
23
+ "dependencies": {
24
+ "zod": "^4.4.3"
25
+ },
26
+ "agentRuntimeTools": {
27
+ "service": "rss"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/nuvlore/extension-rss.git"
32
+ },
33
+ "homepage": "https://github.com/nuvlore/extension-rss#readme",
34
+ "bugs": {
35
+ "url": "https://github.com/nuvlore/extension-rss/issues"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ }
40
+ }