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

Method remove

src/specify_cli/workflows/catalog.py:711–717  ·  view source on GitHub ↗

Remove an installed step entry. Returns True if found.

(self, step_id: str)

Source from the content-addressed store, hash-verified

709 self.save()
710
711 def remove(self, step_id: str) -> bool:
712 """Remove an installed step entry. Returns True if found."""
713 if step_id in self.data["steps"]:
714 del self.data["steps"][step_id]
715 self.save()
716 return True
717 return False
718
719 def get(self, step_id: str) -> dict[str, Any] | None:
720 """Get metadata for an installed step."""

Callers 3

workflow_step_removeFunction · 0.95
test_removeMethod · 0.95

Calls 1

saveMethod · 0.95

Tested by 2

test_removeMethod · 0.76