← All recipes
Moderne licensed

Export context files

Recipe IDorg.openrewrite.prethink.ExportContext
Artifactorg.openrewrite.recipe:rewrite-prethink

Export DataTables to CSV files in .moderne/context/ along with a markdown description file. The markdown file describes the context and includes schema information for each data table.

Single recipeMSAL

Usage

You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe org.openrewrite.prethink.ExportContext --recipe-option "displayName=Test Coverage" --recipe-option "shortDescription=Maps test methods to implementation methods they verify" --recipe-option "longDescription=This context maps each test method to the implementation methods it calls..." --recipe-option "dataTables=org.openrewrite.prethink.table.TestMapping"

If the recipe isn’t available locally, install it with:

mod config recipes jar install org.openrewrite.recipe:rewrite-prethink:1.1.1

Options

NameTypeDescription
displayNamerequiredStringThe display name for this context, shown in agent configurations.
e.g. Test Coverage
shortDescriptionrequiredStringA brief description of what context this provides to the model.
e.g. Maps test methods to implementation methods they verify
longDescriptionrequiredStringA detailed description of the context and how to use it.
e.g. This context maps each test method to the implementation methods it calls...
dataTablesrequiredListFully qualified class names of DataTables to export to CSV.
e.g. org.openrewrite.prethink.table.TestMapping

Data tables

Structured output this recipe can produce.

  • Source files that had resultsSource files that were modified by the recipe run.org.openrewrite.table.SourcesFileResults
  • Source files that had search resultsSearch results that were found during the recipe run.org.openrewrite.table.SearchResults
  • Source files that errored on a recipeThe details of all errors produced by a recipe run.org.openrewrite.table.SourcesFileErrors
  • Recipe performanceStatistics used in analyzing the performance of recipes.org.openrewrite.table.RecipeRunStats