Why pay for this?
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Combines AIXBT project detail, momentum history, and fresh signals into a compact shift alert with next actions.
Turn project detail, momentum history, and signals into a compact momentum-shift alert.
Endpoint: /v1/recipes/project-momentum-shift-alert/run
Capabilities: aixbt, momentum-alert, project-tracking
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Combines AIXBT project detail, momentum history, and fresh signals into a compact shift alert with next actions.
Name: 402.bot
Wallet: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
Payout: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
ERC-8004: verified
Identity: 30379
Bio: 402.bot managed workflow marketplace recipes.
ERC-8004 reputation: 0.0
Creator score: 21
Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs
Use 402.bot as the public orchestration and reporting layer for AIXBT projects, signals, momentum, and Indigo-backed briefs.
Canonical guide: https://402.bot/recipes/aixbt-momentum-brief
Public sources: aixbt_projects, aixbt_project_detail, aixbt_project_search, aixbt_projects_compare, aixbt_signals, aixbt_momentum_history, aixbt_clusters
Notes: 402.bot does not redistribute the AIXBT MCP. Use the provider page for identity and capability context, and the recipe page for runnable workflows.
Source: Aixbt Project Detail
Step id: project
Source: Aixbt Momentum History
Step id: history
Source: Aixbt Signals
Step id: signals
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"id": "project",
"kind": "fetch_transform",
"title": "Load project detail",
"request": {
"params": {
"project": {
"slug": "{{ $.input.slug }}",
"ticker": "{{ $.input.ticker }}"
}
},
"sourceId": "aixbt_project_detail",
"deliveryFormat": "json"
}
}
{
"id": "history",
"kind": "fetch_transform",
"title": "Load momentum history",
"request": {
"params": {
"project": {
"slug": "{{ $.input.slug }}",
"ticker": "{{ $.input.ticker }}"
}
},
"sourceId": "aixbt_momentum_history",
"deliveryFormat": "json"
}
}
{
"id": "signals",
"kind": "fetch_transform",
"title": "Load project signals",
"request": {
"params": {
"limit": 5,
"project": {
"slug": "{{ $.input.slug }}",
"ticker": "{{ $.input.ticker }}"
}
},
"sourceId": "aixbt_signals",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build project momentum shift alert",
"request": {
"params": {
"input": {
"slug": "{{ $.input.slug }}",
"ticker": "{{ $.input.ticker }}",
"history": "{{ $.stepsById.history.output }}",
"project": "{{ $.stepsById.project.output }}",
"signals": "{{ $.stepsById.signals.output }}",
"previousSnapshot": "{{ $.input.previousSnapshot }}"
},
"prompt": "Build a project momentum shift alert. Compare the current bounded project context against any previous snapshot, then return only the meaningful changes and next actions.",
"responseSchema": {
"type": "object",
"required": [
"projectRef",
"summary",
"currentSnapshot",
"whatChanged",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"projectRef": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
},
"ticker": {
"type": "string"
},
"xHandle": {
"type": "string"
}
},
"additionalProperties": false
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"whatChanged": {
"type": "array",
"items": {
"type": "object",
"required": [
"label",
"change",
"significance"
],
"properties": {
"label": {
"type": "string"
},
"change": {
"type": "string"
},
"significance": {
"type": "string"
}
},
"additionalProperties": false
},
"description": "Meaningful momentum or signal changes."
},
"currentSnapshot": {
"type": "object",
"description": "Current project momentum snapshot.",
"additionalProperties": true
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing AIXBT project drift into a bounded alert. If no previous snapshot is provided, return a current-state alert with a minimal change section."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}