MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / start_phase

Method start_phase

src/workflow/progress.py:85–89  ·  view source on GitHub ↗
(self, title: str)

Source from the content-addressed store, hash-verified

83
84 # ── mutations ──────────────────────────────────────────────────────────
85 def start_phase(self, title: str) -> None:
86 self._current_phase = title
87 if not any(p.title == title for p in self._phases):
88 self._phases.append(PhaseRecord(title=title))
89 self._changed()
90
91 def log(self, message: str) -> None:
92 self._logs.append(message)

Callers 6

test_phase_done_countFunction · 0.95
phaseMethod · 0.80

Calls 3

_changedMethod · 0.95
PhaseRecordClass · 0.85
appendMethod · 0.45