MCPcopy Create free account
hub / github.com/0xKarl-dev/claw-codes / BootstrapGraph

Class BootstrapGraph

src/bootstrap_graph.py:7–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5
6@dataclass(frozen=True)
7class BootstrapGraph:
8 stages: tuple[str, ...]
9
10 def as_markdown(self) -> str:
11 lines = ['# Bootstrap Graph', '']
12 lines.extend(f'- {stage}' for stage in self.stages)
13 return '\n'.join(lines)
14
15
16def build_bootstrap_graph() -> BootstrapGraph:

Callers 1

build_bootstrap_graphFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected