select_quick_test_keywords
After a quick test awaits keyword selection, pick 1–5 keywords to trigger the main analysis pass.
Instructions
After a quick test reaches awaiting_keyword_selection, pick 1–5 keywords to analyse in depth. This kicks off the main analysis pass.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| testId | Yes | ||
| keywords | Yes |
Implementation Reference
- src/tools/quickTest.js:66-68 (handler)The handler function for 'select_quick_test_keywords' — sends a POST to /quick-test/{testId}/select-keywords with the selected keywords array.
handler: async ({ testId, keywords }) => api.post(`/quick-test/${testId}/select-keywords`, { keywords }), },