ateam_test_skill
Send a test message to a skill and retrieve the full execution result. Supports synchronous waiting or async polling for job status.
Instructions
Send a test message to a deployed skill and get the full execution result. By default waits for completion (up to 60s). Set wait=false for async mode — returns job_id immediately, then poll with ateam_test_status.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| solution_id | Yes | The solution ID | |
| skill_id | Yes | The skill ID to test (original or internal ID) | |
| message | Yes | The test message to send to the skill | |
| wait | No | If true (default), wait for completion. If false, return job_id immediately for polling via ateam_test_status. | |
| actor_id | No | Optional actor ID for conversation continuity. Pass the actor_id from a previous test response to continue the conversation. Omit to auto-generate a test actor (test_<timestamp>_<random>, auto-expires in 24h). |