chore: version packages
This commit is contained in:
parent
1ea9b83039
commit
0fed3b314b
10 changed files with 75 additions and 5 deletions
|
|
@ -4,6 +4,20 @@
|
|||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement research tools with production-ready functionality:
|
||||
|
||||
- page-brief: Uses @mozilla/readability + jsdom for content extraction
|
||||
- compare-pages: Uses natural TF-IDF for text similarity analysis
|
||||
- source-credibility: Uses tldts + cheerio for credibility signal analysis
|
||||
- claim-checklist: Uses sbd for sentence parsing with pattern-based detection
|
||||
- timeline-from-text: Uses chrono-node for date parsing
|
||||
|
||||
All tools include comprehensive error handling, input validation, and Node.js 18+ fetch requirement verification.
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement claim-checklist tool with production-ready functionality:
|
||||
- Uses sbd for sentence boundary detection
|
||||
- Identifies claims using regex patterns for statistics, quotes, historical, scientific, and factual claims
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tpmjs/tools-claim-checklist",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "Extract checkable factual claims from text and identify what needs citations",
|
||||
"type": "module",
|
||||
"keywords": ["tpmjs", "research", "ai", "claims", "fact-checking", "citations"],
|
||||
|
|
|
|||
|
|
@ -4,6 +4,20 @@
|
|||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement research tools with production-ready functionality:
|
||||
|
||||
- page-brief: Uses @mozilla/readability + jsdom for content extraction
|
||||
- compare-pages: Uses natural TF-IDF for text similarity analysis
|
||||
- source-credibility: Uses tldts + cheerio for credibility signal analysis
|
||||
- claim-checklist: Uses sbd for sentence parsing with pattern-based detection
|
||||
- timeline-from-text: Uses chrono-node for date parsing
|
||||
|
||||
All tools include comprehensive error handling, input validation, and Node.js 18+ fetch requirement verification.
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement compare-pages tool with production-ready functionality:
|
||||
- Uses natural library for TF-IDF text similarity analysis
|
||||
- Fetches and parses content from both URLs
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tpmjs/tools-compare-pages",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "Compare two URLs for agreements, conflicts, and unique points for cross-source validation",
|
||||
"type": "module",
|
||||
"keywords": ["tpmjs", "research", "ai", "comparison", "fact-checking"],
|
||||
|
|
|
|||
|
|
@ -4,6 +4,20 @@
|
|||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement research tools with production-ready functionality:
|
||||
|
||||
- page-brief: Uses @mozilla/readability + jsdom for content extraction
|
||||
- compare-pages: Uses natural TF-IDF for text similarity analysis
|
||||
- source-credibility: Uses tldts + cheerio for credibility signal analysis
|
||||
- claim-checklist: Uses sbd for sentence parsing with pattern-based detection
|
||||
- timeline-from-text: Uses chrono-node for date parsing
|
||||
|
||||
All tools include comprehensive error handling, input validation, and Node.js 18+ fetch requirement verification.
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement page-brief tool with production-ready functionality:
|
||||
- Uses @mozilla/readability + jsdom for content extraction
|
||||
- Extracts key points and summary from article text
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tpmjs/tools-page-brief",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "Fetch a URL, extract main content, and return a brief with summary, key points, and claims needing citations",
|
||||
"type": "module",
|
||||
"keywords": ["tpmjs", "research", "ai", "readability", "web-scraping"],
|
||||
|
|
|
|||
|
|
@ -4,6 +4,20 @@
|
|||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement research tools with production-ready functionality:
|
||||
|
||||
- page-brief: Uses @mozilla/readability + jsdom for content extraction
|
||||
- compare-pages: Uses natural TF-IDF for text similarity analysis
|
||||
- source-credibility: Uses tldts + cheerio for credibility signal analysis
|
||||
- claim-checklist: Uses sbd for sentence parsing with pattern-based detection
|
||||
- timeline-from-text: Uses chrono-node for date parsing
|
||||
|
||||
All tools include comprehensive error handling, input validation, and Node.js 18+ fetch requirement verification.
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement source-credibility tool with production-ready functionality:
|
||||
- Uses tldts for domain parsing and reputation analysis
|
||||
- Uses cheerio for HTML parsing and signal extraction
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tpmjs/tools-source-credibility",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "Calculate heuristic credibility score based on domain signals, author presence, and citations",
|
||||
"type": "module",
|
||||
"keywords": ["tpmjs", "research", "ai", "credibility", "fact-checking"],
|
||||
|
|
|
|||
|
|
@ -4,6 +4,20 @@
|
|||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement research tools with production-ready functionality:
|
||||
|
||||
- page-brief: Uses @mozilla/readability + jsdom for content extraction
|
||||
- compare-pages: Uses natural TF-IDF for text similarity analysis
|
||||
- source-credibility: Uses tldts + cheerio for credibility signal analysis
|
||||
- claim-checklist: Uses sbd for sentence parsing with pattern-based detection
|
||||
- timeline-from-text: Uses chrono-node for date parsing
|
||||
|
||||
All tools include comprehensive error handling, input validation, and Node.js 18+ fetch requirement verification.
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Fully implement timeline-from-text tool with production-ready functionality:
|
||||
- Uses chrono-node for comprehensive date parsing (specific, partial, relative, range dates)
|
||||
- Uses sbd for sentence context extraction
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tpmjs/tools-timeline-from-text",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "Extract dated events from text and return a normalized timeline with confidence scores",
|
||||
"type": "module",
|
||||
"keywords": ["tpmjs", "research", "ai", "timeline", "dates", "events"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue