MCPcopy Index your code
hub / github.com/github/spec-kit / remove

Method remove

src/specify_cli/workflows/catalog.py:103–109  ·  view source on GitHub ↗

Remove an installed workflow entry. Returns True if found.

(self, workflow_id: str)

Source from the content-addressed store, hash-verified

101 self.save()
102
103 def remove(self, workflow_id: str) -> bool:
104 """Remove an installed workflow entry. Returns True if found."""
105 if workflow_id in self.data["workflows"]:
106 del self.data["workflows"][workflow_id]
107 self.save()
108 return True
109 return False
110
111 def get(self, workflow_id: str) -> dict[str, Any] | None:
112 """Get metadata for an installed workflow."""

Callers 2

workflow_removeFunction · 0.95
test_removeMethod · 0.95

Calls 1

saveMethod · 0.95

Tested by 1

test_removeMethod · 0.76