researcher-now 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 (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +9 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # researcher-now
2
+
3
+ Article and video analysis, not scraping — any URL returns a cleanly formatted article (any YouTube link a full transcript with speaker-aware quotes) **plus** finished structured analysis: claims, facts, quantitative data, stakeholder positions, quotes with attribution. Deep multi-source research returns a cited, synthesized Research Report.
4
+
5
+ This npm name is a pointer to the real entry points:
6
+
7
+ - **Hermes Agent plugin (PyPI):** `pip install researcher-now`, then add `researcher-now` to `plugins.enabled` in `~/.hermes/config.yaml` (`hermes plugins enable` can't see pip plugins yet — [hermes-agent#43117](https://github.com/NousResearch/hermes-agent/issues/43117))
8
+ - **Hosted MCP server:** `https://researcher.now/mcp` — tools: `analyze_article`, `analyze_video`, `deep_research`, `research_status`, `recall_research`
9
+ - **API + free trial key:** `curl -X POST https://researcher.now/v1/keys/trial` · docs at [researcher.now/llms.txt](https://researcher.now/llms.txt)
package/package.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "researcher-now",
3
+ "version": "0.1.0",
4
+ "description": "Article and video analysis, not scraping: any URL returns formatted content plus finished structured analysis (claims, facts, quotes). Deep multi-source research returns a cited, synthesized Research Report. This npm package is a pointer — the Hermes plugin ships on PyPI as researcher-now; the hosted MCP server lives at https://researcher.now/mcp.",
5
+ "keywords": ["research", "deep-research", "youtube-transcript", "article-analysis", "video-analysis", "hermes", "mcp", "ai-agent"],
6
+ "homepage": "https://researcher.now",
7
+ "license": "MIT",
8
+ "files": ["README.md"]
9
+ }