All tools
ToolRead
Generate Project recap
generate_project_recapSynthesize recent activity and evidence in one Project into a time-bounded research recap.
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": {
"folderId": {
"type": "string",
"format": "uuid"
},
"from": {
"type": "string",
"format": "date-time"
},
"to": {
"type": "string",
"format": "date-time"
},
"groupBy": {
"type": "array",
"items": {
"type": "string"
}
},
"include": {
"type": "object"
},
"outputStyle": {
"type": "string"
}
},
"required": [
"folderId"
],
"additionalProperties": false
}