MCPcopy
hub / github.com/github/spec-kit / default_integration_key

Function default_integration_key

src/specify_cli/integration_state.py:197–200  ·  view source on GitHub ↗

Return the default integration key from normalized state.

(state: dict[str, Any])

Source from the content-addressed store, hash-verified

195
196
197def default_integration_key(state: dict[str, Any]) -> str | None:
198 """Return the default integration key from normalized state."""
199 key = state.get("default_integration") or state.get("integration")
200 return clean_integration_key(key)
201
202
203def installed_integration_keys(state: dict[str, Any]) -> list[str]:

Calls 2

clean_integration_keyFunction · 0.85
getMethod · 0.45