| name | context-engineering-bootstrap |
| description | Guides the agent to bootstrap an initial ContextSet (templates, facets, and value searches) by deducing key information from the database schema and generating a ContextSet file. |
Load the context-engineering-workflow skill first. It holds the shared context this phase depends on: workspace layout, state file conventions, phase order, and safety protocol. Do not proceed with this phase without reading it.
[!NOTE]
For detailed schema specifications and explanation of context set types, see the central Context Set Concept Types guide.
Phase: Baseline Bootstrapping
Goal
Deduce query concepts and generate a baseline ContextSet (templates, facets, value searches) directly from database schemas and metadata to act as the starting point for optimization.
Input
Before beginning the workflow, you explicitly require:
- An active
tools.yaml configuration (located in autoctx/) with database schema fetching tools configured (e.g., <source>-list-schemas).
- Target database schemas to act upon.
Workflow
Follow these steps exactly in order:
-
Condition Check & Schema Retrieval:
- Ask for Experiment Name & Handle Existing Folders: You must explicitly ask the user for a descriptive name for this tuning experiment (e.g.,
sales_db_tuning).
- If the experiment folder already exists inside
autoctx/experiments/: You MUST detect it and explicitly ask the user for confirmation:
- "An experiment named
<experiment_name> already exists. Do you want to resume it (update its baseline context), fork it (create a new version, e.g., <experiment_name>_v2), or overwrite it completely?"
- If the user selects resume: proceed with the bootstrap in the same folder, updating
bootstrap_context.json.
- If the user selects fork: prompt for a new name or suggest
<experiment_name>_v2, create the folder, and proceed there.
- If the user selects overwrite: clear the existing folder's contents and proceed.
- If it does not exist: Create a new dedicated subfolder inside
autoctx/experiments/ using this name.
- Do not proceed until the experiment folder structure is finalized.
- Use the available Toolbox MCP tools configured in the active
autoctx/tools.yaml to fetch the schemas for the target database.
- Present the retrieved schema summary structurally and cleanly to the user. Ask the user if they want to filter or focus on specific schemas or tables.
- Source Enrichment: Prompt the user for any existing Design Docs or Application Code (e.g., ORM models, SQL queries) they wish to provide to enrich the context generation. Wait for the user's response before proceeding.
-
Deduce Key Info (Core Execution):
- Perform a deep analysis of the retrieved schema and any provided documentation or code to identify important concepts, relationships, and likely query patterns.
- Collect Candidates: Identify representative natural language queries with their corresponding SQL, common filter conditions or business rules, and columns that require specialized value searching (e.g., names needing fuzzy match, descriptions needing semantic search).
- Review Check: Briefly display these candidates to the user for approval or modifications before proceeding.
-
Context Generation (Core Execution):
- Invoke the
context-generation-guide skill to produce the context (Templates, Facets, and Value Searches).
- Provide the deduced candidates collected in Step 2 as input to that skill.
- That skill will handle phrase extraction, parameterization, and constructing the final valid JSON structure according to dialect best practices for all context types.
- Once generated, use the
mutate_context_set MCP tool to save the context items to bootstrap_context.json inside the approved experiment folder. Since this is a new file, construct a list of "operation": "add" mutations for each generated item (Template, Facet, Value Search) and pass them to the tool.
Output
Upon successful completion, the workspace must contain:
- A generated
.json file (bootstrap_context.json) representing the baseline ContextSet, stored successfully at the requested output_file_path.
Upload Advice & Next Steps
Conclude by providing a succinct summary to the user:
- Summarize Results:
- Confirm that the bootstrap context file has been successfully generated and saved.
- Mention the final file path.
- Upload Instructions:
- Read Database Details: Read
autoctx/tools.yaml to fetch the specific project, location, and instance/cluster details for the active database.
- Generate URL: Call the
generate_upload_url tool passing the extracted values to provide the direct console link to the user.
- Present the local file path to
bootstrap_context.json and the generated console link together in a single clear message.
- Instruct Next Step Evaluation:
- Instruct the user to upload the file to Database Studio and then run evaluation using the evaluating workflow on this new ContextSet to establish a baseline.
[!IMPORTANT]
Tool Modification Rule: Always use the mutate_context_set tool for all ContextSet changes. Pass mutation payloads directly to the tool — it handles all file I/O internally. Do not read the target context set file beforehand.