prepare_feature_bootstrap
Prepares a feature import workflow by fetching a specification from Confluence, Jira, or text, and retrieving style anchors to guide test case generation and push.
Instructions
Prepare a feature-import workflow: fetch the spec, pull house-style anchors, and return everything the calling Claude needs to drive generation and push.
No LLM call happens server-side. Claude in the client generates cases (with the
instructions and style examples this tool returns) and then calls
add_test_cases_bulk to commit them.
Required:
source_type: "confluence" | "jira" | "text"source_value: page_id / issue_key / raw texteither
new_suite_name(creates a new suite when you push) orexisting_suite_idsection_name— hierarchy allowed: "A > B > C"
Optional:
style_from_suite_id— pull style anchors from a populated suite. Recommended when you're bootstrapping a brand-new empty suite that has no cases yet.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | ||
| source_type | Yes | ||
| section_name | No | General | |
| source_value | Yes | ||
| new_suite_name | No | ||
| existing_suite_id | No | ||
| style_from_suite_id | No |