All tools
ToolWrite
Create thesis review
create_thesis_reviewThe task is centered on a saved ticker, thesis, claim, or research review.
When to use it
The task is centered on a saved ticker, thesis, claim, or research review.
Typical workflow
Use company context first, then thesis, claims, reviews, and evidence gaps.
What it returns
Company thesis context, claims, reviews, and evidence health signals.
Avoid using it when
The ticker is not saved in Prism or the task only needs generic market data.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View JSON Schema
{
"type": "object",
"properties": {
"sessionId": {
"type": "string",
"format": "uuid"
},
"ticker": {
"type": "string",
"minLength": 1,
"maxLength": 12
},
"companyId": {
"type": "string",
"format": "uuid"
},
"sourceTitle": {
"type": "string",
"maxLength": 240
},
"sourceUrl": {
"type": "string",
"format": "uri",
"maxLength": 1000
},
"eventClass": {
"type": "string",
"minLength": 1,
"maxLength": 80
},
"summary": {
"type": "string",
"minLength": 1,
"maxLength": 5000
},
"thesisImpact": {
"type": "string",
"enum": [
"stronger",
"weaker",
"mixed",
"unchanged",
"needs_review"
],
"default": "needs_review"
},
"confirms": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 20
},
"contradicts": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 20
},
"newRisks": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 20
},
"followUps": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 20
},
"proposedClaims": {
"type": "array",
"maxItems": 100,
"items": {
"type": "object",
"properties": {
"text": {
"type": "string",
"minLength": 1,
"maxLength": 5000
},
"label": {
"type": "string",
"enum": [
"CONFIRMED",
"INFERRED",
"UNVERIFIED"
]
},
"section": {
"type": "string",
"minLength": 1,
"maxLength": 120
},
"sourceUrl": {
"type": "string",
"format": "uri",
"maxLength": 2000
},
"action": {
"type": "string",
"enum": [
"add",
"update",
"retire"
]
},
"targetClaimId": {
"type": "string",
"format": "uuid"
}
},
"required": [
"text",
"label",
"section",
"action"
],
"additionalProperties": false
}
}
},
"required": [
"summary"
],
"additionalProperties": false
}