submit_onboarding_artifacts
Validate and persist core onboarding artifacts for a product/session. Prerequisites: - prompt pack must be acknowledged for `session_id` - payloads should match the artifact schemas below Common use: - called by `run_full_agentic_onboarding` - can also be used for staged/recovery runs Expected formats: - market_position: patch object with market position keys - conversion_notes: {'Product Name','Payment Terms/Plans','General Notes'} - funnels: [{'url','description','primary_use_case', optional 'qualification'}]
Remote signal-found/reddit-outreach
Other tools also called submit_onboarding_artifacts?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"funnels": {
"anyOf": [
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
{
"type": "null"
}
],
"title": "Funnels",
"default": null
},
"client_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Client Id",
"default": null
},
"session_id": {
"type": "string",
"title": "Session Id"
},
"product_slug": {
"type": "string",
"title": "Product Slug"
},
"market_position": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Market Position",
"default": null
},
"conversion_notes": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Conversion Notes",
"default": null
}
}
}