chore: version packages
This commit is contained in:
parent
36a0735ab1
commit
be5421063a
11 changed files with 100 additions and 26 deletions
|
|
@ -1,21 +0,0 @@
|
||||||
---
|
|
||||||
"@tpmjs/tools-page-brief": minor
|
|
||||||
"@tpmjs/tools-compare-pages": minor
|
|
||||||
"@tpmjs/tools-source-credibility": minor
|
|
||||||
"@tpmjs/tools-claim-checklist": minor
|
|
||||||
"@tpmjs/tools-timeline-from-text": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add 5 new research tools for AI-powered content analysis
|
|
||||||
|
|
||||||
New tools using AI SDK v6 beta (tool() + jsonSchema() pattern):
|
|
||||||
|
|
||||||
- **@tpmjs/tools-page-brief**: Fetch URL and extract summary with key points and claims needing citations
|
|
||||||
- **@tpmjs/tools-compare-pages**: Compare two URLs for agreements, conflicts, and unique points
|
|
||||||
- **@tpmjs/tools-source-credibility**: Calculate heuristic credibility score based on domain signals
|
|
||||||
- **@tpmjs/tools-claim-checklist**: Extract checkable factual claims from text
|
|
||||||
- **@tpmjs/tools-timeline-from-text**: Extract dated events and return normalized timeline
|
|
||||||
|
|
||||||
All tools are stub implementations ready for full logic implementation.
|
|
||||||
|
|
||||||
Also moved @tpmjs/createblogpost to packages/tools/official/ directory and set up blocks.yml for Blocks framework validation.
|
|
||||||
19
packages/tools/official/claim-checklist/CHANGELOG.md
Normal file
19
packages/tools/official/claim-checklist/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
# @tpmjs/tools-claim-checklist
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- aaf3cdd: Add 5 new research tools for AI-powered content analysis
|
||||||
|
|
||||||
|
New tools using AI SDK v6 beta (tool() + jsonSchema() pattern):
|
||||||
|
|
||||||
|
- **@tpmjs/tools-page-brief**: Fetch URL and extract summary with key points and claims needing citations
|
||||||
|
- **@tpmjs/tools-compare-pages**: Compare two URLs for agreements, conflicts, and unique points
|
||||||
|
- **@tpmjs/tools-source-credibility**: Calculate heuristic credibility score based on domain signals
|
||||||
|
- **@tpmjs/tools-claim-checklist**: Extract checkable factual claims from text
|
||||||
|
- **@tpmjs/tools-timeline-from-text**: Extract dated events and return normalized timeline
|
||||||
|
|
||||||
|
All tools are stub implementations ready for full logic implementation.
|
||||||
|
|
||||||
|
Also moved @tpmjs/createblogpost to packages/tools/official/ directory and set up blocks.yml for Blocks framework validation.
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@tpmjs/tools-claim-checklist",
|
"name": "@tpmjs/tools-claim-checklist",
|
||||||
"version": "0.1.0",
|
"version": "0.2.0",
|
||||||
"description": "Extract checkable factual claims from text and identify what needs citations",
|
"description": "Extract checkable factual claims from text and identify what needs citations",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"keywords": ["tpmjs", "research", "ai", "claims", "fact-checking", "citations"],
|
"keywords": ["tpmjs", "research", "ai", "claims", "fact-checking", "citations"],
|
||||||
|
|
|
||||||
19
packages/tools/official/compare-pages/CHANGELOG.md
Normal file
19
packages/tools/official/compare-pages/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
# @tpmjs/tools-compare-pages
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- aaf3cdd: Add 5 new research tools for AI-powered content analysis
|
||||||
|
|
||||||
|
New tools using AI SDK v6 beta (tool() + jsonSchema() pattern):
|
||||||
|
|
||||||
|
- **@tpmjs/tools-page-brief**: Fetch URL and extract summary with key points and claims needing citations
|
||||||
|
- **@tpmjs/tools-compare-pages**: Compare two URLs for agreements, conflicts, and unique points
|
||||||
|
- **@tpmjs/tools-source-credibility**: Calculate heuristic credibility score based on domain signals
|
||||||
|
- **@tpmjs/tools-claim-checklist**: Extract checkable factual claims from text
|
||||||
|
- **@tpmjs/tools-timeline-from-text**: Extract dated events and return normalized timeline
|
||||||
|
|
||||||
|
All tools are stub implementations ready for full logic implementation.
|
||||||
|
|
||||||
|
Also moved @tpmjs/createblogpost to packages/tools/official/ directory and set up blocks.yml for Blocks framework validation.
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@tpmjs/tools-compare-pages",
|
"name": "@tpmjs/tools-compare-pages",
|
||||||
"version": "0.1.0",
|
"version": "0.2.0",
|
||||||
"description": "Compare two URLs for agreements, conflicts, and unique points for cross-source validation",
|
"description": "Compare two URLs for agreements, conflicts, and unique points for cross-source validation",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"keywords": ["tpmjs", "research", "ai", "comparison", "fact-checking"],
|
"keywords": ["tpmjs", "research", "ai", "comparison", "fact-checking"],
|
||||||
|
|
|
||||||
19
packages/tools/official/page-brief/CHANGELOG.md
Normal file
19
packages/tools/official/page-brief/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
# @tpmjs/tools-page-brief
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- aaf3cdd: Add 5 new research tools for AI-powered content analysis
|
||||||
|
|
||||||
|
New tools using AI SDK v6 beta (tool() + jsonSchema() pattern):
|
||||||
|
|
||||||
|
- **@tpmjs/tools-page-brief**: Fetch URL and extract summary with key points and claims needing citations
|
||||||
|
- **@tpmjs/tools-compare-pages**: Compare two URLs for agreements, conflicts, and unique points
|
||||||
|
- **@tpmjs/tools-source-credibility**: Calculate heuristic credibility score based on domain signals
|
||||||
|
- **@tpmjs/tools-claim-checklist**: Extract checkable factual claims from text
|
||||||
|
- **@tpmjs/tools-timeline-from-text**: Extract dated events and return normalized timeline
|
||||||
|
|
||||||
|
All tools are stub implementations ready for full logic implementation.
|
||||||
|
|
||||||
|
Also moved @tpmjs/createblogpost to packages/tools/official/ directory and set up blocks.yml for Blocks framework validation.
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@tpmjs/tools-page-brief",
|
"name": "@tpmjs/tools-page-brief",
|
||||||
"version": "0.1.0",
|
"version": "0.2.0",
|
||||||
"description": "Fetch a URL, extract main content, and return a brief with summary, key points, and claims needing citations",
|
"description": "Fetch a URL, extract main content, and return a brief with summary, key points, and claims needing citations",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"keywords": ["tpmjs", "research", "ai", "readability", "web-scraping"],
|
"keywords": ["tpmjs", "research", "ai", "readability", "web-scraping"],
|
||||||
|
|
|
||||||
19
packages/tools/official/source-credibility/CHANGELOG.md
Normal file
19
packages/tools/official/source-credibility/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
# @tpmjs/tools-source-credibility
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- aaf3cdd: Add 5 new research tools for AI-powered content analysis
|
||||||
|
|
||||||
|
New tools using AI SDK v6 beta (tool() + jsonSchema() pattern):
|
||||||
|
|
||||||
|
- **@tpmjs/tools-page-brief**: Fetch URL and extract summary with key points and claims needing citations
|
||||||
|
- **@tpmjs/tools-compare-pages**: Compare two URLs for agreements, conflicts, and unique points
|
||||||
|
- **@tpmjs/tools-source-credibility**: Calculate heuristic credibility score based on domain signals
|
||||||
|
- **@tpmjs/tools-claim-checklist**: Extract checkable factual claims from text
|
||||||
|
- **@tpmjs/tools-timeline-from-text**: Extract dated events and return normalized timeline
|
||||||
|
|
||||||
|
All tools are stub implementations ready for full logic implementation.
|
||||||
|
|
||||||
|
Also moved @tpmjs/createblogpost to packages/tools/official/ directory and set up blocks.yml for Blocks framework validation.
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@tpmjs/tools-source-credibility",
|
"name": "@tpmjs/tools-source-credibility",
|
||||||
"version": "0.1.0",
|
"version": "0.2.0",
|
||||||
"description": "Calculate heuristic credibility score based on domain signals, author presence, and citations",
|
"description": "Calculate heuristic credibility score based on domain signals, author presence, and citations",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"keywords": ["tpmjs", "research", "ai", "credibility", "fact-checking"],
|
"keywords": ["tpmjs", "research", "ai", "credibility", "fact-checking"],
|
||||||
|
|
|
||||||
19
packages/tools/official/timeline-from-text/CHANGELOG.md
Normal file
19
packages/tools/official/timeline-from-text/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
# @tpmjs/tools-timeline-from-text
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- aaf3cdd: Add 5 new research tools for AI-powered content analysis
|
||||||
|
|
||||||
|
New tools using AI SDK v6 beta (tool() + jsonSchema() pattern):
|
||||||
|
|
||||||
|
- **@tpmjs/tools-page-brief**: Fetch URL and extract summary with key points and claims needing citations
|
||||||
|
- **@tpmjs/tools-compare-pages**: Compare two URLs for agreements, conflicts, and unique points
|
||||||
|
- **@tpmjs/tools-source-credibility**: Calculate heuristic credibility score based on domain signals
|
||||||
|
- **@tpmjs/tools-claim-checklist**: Extract checkable factual claims from text
|
||||||
|
- **@tpmjs/tools-timeline-from-text**: Extract dated events and return normalized timeline
|
||||||
|
|
||||||
|
All tools are stub implementations ready for full logic implementation.
|
||||||
|
|
||||||
|
Also moved @tpmjs/createblogpost to packages/tools/official/ directory and set up blocks.yml for Blocks framework validation.
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@tpmjs/tools-timeline-from-text",
|
"name": "@tpmjs/tools-timeline-from-text",
|
||||||
"version": "0.1.0",
|
"version": "0.2.0",
|
||||||
"description": "Extract dated events from text and return a normalized timeline with confidence scores",
|
"description": "Extract dated events from text and return a normalized timeline with confidence scores",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"keywords": ["tpmjs", "research", "ai", "timeline", "dates", "events"],
|
"keywords": ["tpmjs", "research", "ai", "timeline", "dates", "events"],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue