get_feature_spec
Retrieve feature specifications to understand what to build, which files to modify, and acceptance criteria. Supports lookup by ID or keyword search across titles and descriptions.
Instructions
Retrieve a feature specification from Rampify. Use this when starting work on a feature to understand what to build, which files to touch, and what the acceptance criteria are.
Two lookup modes:
spec_id: fetch a specific spec with full criteria and tasks (use this when you know the ID)
search: keyword search across titles and descriptions (returns a list; follow up with spec_id for full details)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | No | Site domain (e.g., "example.com"). Uses SEO_CLIENT_DOMAIN env var if not provided. | |
| project_id | No | Project UUID — use instead of domain when the domain is not registered as a client. | |
| spec_id | No | UUID of the specific feature spec to retrieve. Returns full spec with criteria and tasks. | |
| search | No | Keyword to search across spec titles and descriptions. Returns a list of matching specs. | |
| include_criteria | No | Include acceptance criteria in the response (default: true). Only applies when using spec_id. | |
| include_tasks | No | Include implementation tasks in the response (default: true). Only applies when using spec_id. |