Stage skill catalog and per-stage artifact contracts
Related to #46.
Define the full set of stage skills for the migration pipeline and the artifacts each stage produces and consumes.
Pipeline
Questionnaire → Plan → Execute → Verify → Eval → Report
The harness supports two modes:
- Interactive — human answers questionnaire, approves spec, inspects report
- Non-interactive — LLM picks best answers autonomously and records its reasoning. Eval stage scores those choices so future runs can learn what worked.
Artifact contract summary
Every stage appends an entry to .konveyor/results.json. Missing results.json = stage failure (ADR 0006).
| Stage |
Consumes |
Produces |
| Questionnaire |
source repo |
.konveyor/questionnaire.json (tech summary, arch summary, dependencies, migration choices) |
| Plan |
repo, questionnaire.json, domain skill refs |
SPEC.md (for approval), PLAN.md, graph.json |
| Execute |
PLAN.md, domain skill refs |
migrated source files (parallel sub-agents per plan step) |
| Verify |
migrated source, PLAN.md, domain skill refs |
fix patches, build/test summary |
| Eval |
migrated source, PLAN.md, questionnaire.json, all results.json entries |
.konveyor/eval.json (quality scores, learned patterns) |
| Report |
results.json, eval.json, PLAN.md, git diff |
.konveyor/report.md |
Questionnaire: detect + gather in one stage
The questionnaire stage combines automated detection with decision gathering:
- Detect — tech summary (languages, frameworks, build tools, app servers), architecture summary (layers, complexity), dependency capture
- Gather — migration target, scope constraints, priorities
In interactive mode, the agent presents detection results and asks the human for decisions. In non-interactive mode, the LLM picks the best answers based on detection results and records its reasoning in questionnaire.json. The eval stage later scores whether those autonomous choices led to a good migration, building a feedback loop for future runs.
Domain skills
Domain skills provide migration-specific knowledge. Stage skills reference them via /opt/skills/*/references/. Migration intelligence (rules, extracted patterns, solution server) enters the pipeline through these references. Learned patterns from eval feed back for future runs.
Sub-issues
Stage skill catalog and per-stage artifact contracts
Related to #46.
Define the full set of stage skills for the migration pipeline and the artifacts each stage produces and consumes.
Pipeline
The harness supports two modes:
Artifact contract summary
Every stage appends an entry to
.konveyor/results.json. Missingresults.json= stage failure (ADR 0006)..konveyor/questionnaire.json(tech summary, arch summary, dependencies, migration choices)SPEC.md(for approval),PLAN.md,graph.jsonPLAN.md, domain skill refsPLAN.md, domain skill refsPLAN.md, questionnaire.json, allresults.jsonentries.konveyor/eval.json(quality scores, learned patterns)results.json,eval.json,PLAN.md, git diff.konveyor/report.mdQuestionnaire: detect + gather in one stage
The questionnaire stage combines automated detection with decision gathering:
In interactive mode, the agent presents detection results and asks the human for decisions. In non-interactive mode, the LLM picks the best answers based on detection results and records its reasoning in
questionnaire.json. The eval stage later scores whether those autonomous choices led to a good migration, building a feedback loop for future runs.Domain skills
Domain skills provide migration-specific knowledge. Stage skills reference them via
/opt/skills/*/references/. Migration intelligence (rules, extracted patterns, solution server) enters the pipeline through these references. Learned patterns from eval feed back for future runs.Sub-issues