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

Function _title_case

src/command_system/buddy_command.py:73–74  ·  view source on GitHub ↗
(s: str)

Source from the content-addressed store, hash-verified

71
72
73def _title_case(s: str) -> str:
74 return s[:1].upper() + s[1:] if s else s
75
76
77def _save_companion(stored: dict) -> None:

Callers 1

buddy_command_callFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected