MCPcopy Index your code
hub / github.com/github/awesome-copilot / stepKey

Function stepKey

extensions/java-modernization-studio/autopilot.mjs:30–33  ·  view source on GitHub ↗
(step)

Source from the content-addressed store, hash-verified

28
29/** Stable identity for a step across re-scans (phase + title). */
30export function stepKey(step) {
31 if (!step) return "";
32 return (step.section || "") + "::" + (step.title || "");
33}
34
35/**
36 * The next step Autopilot should run: the first not-done step in the active

Callers 3

cockpit.test.mjsFile · 0.90
isStepDoneFunction · 0.85
runAutopilotFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected