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

Method install

src/specify_cli/integrations/base.py:748–756  ·  view source on GitHub ↗

High-level install — calls ``setup()`` and returns created files.

(
        self,
        project_root: Path,
        manifest: IntegrationManifest,
        parsed_options: dict[str, Any] | None = None,
        **opts: Any,
    )

Source from the content-addressed store, hash-verified

746 # -- Convenience helpers for subclasses -------------------------------
747
748 def install(
749 self,
750 project_root: Path,
751 manifest: IntegrationManifest,
752 parsed_options: dict[str, Any] | None = None,
753 **opts: Any,
754 ) -> list[Path]:
755 """High-level install — calls ``setup()`` and returns created files."""
756 return self.setup(project_root, manifest, parsed_options=parsed_options, **opts)
757
758 def uninstall(
759 self,

Callers

nothing calls this directly

Calls 1

setupMethod · 0.95

Tested by

no test coverage detected