Skip to content

Commit 6b3a18c

Browse files
committed
fix merge
1 parent 9734721 commit 6b3a18c

1 file changed

Lines changed: 3 additions & 19 deletions

File tree

src/specify_cli/integrations/bob/__init__.py

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -126,22 +126,6 @@ def _setup_legacy(
126126
parsed_options: dict[str, Any] | None = None,
127127
**opts: Any,
128128
) -> list[Path]:
129-
"""Default mode: ``.bob/commands/speckit.<name>.md`` layout."""
130-
from ..base import MarkdownIntegration
131-
132-
return MarkdownIntegration.setup(self, project_root, manifest, parsed_options, **opts)
133-
134-
def _setup_skills(
135-
self,
136-
project_root: Path,
137-
manifest: IntegrationManifest,
138-
parsed_options: dict[str, Any] | None = None,
139-
**opts: Any,
140-
) -> list[Path]:
141-
"""Skills mode: delegate to ``_BobSkillsHelper``."""
142-
helper = _BobSkillsHelper()
143-
return SkillsIntegration.setup(helper, project_root, manifest, parsed_options, **opts)
144-
145-
def post_process_skill_content(self, content: str) -> str:
146-
"""Apply shared skills post-processing to externally generated skills."""
147-
return _BobSkillsHelper().post_process_skill_content(content)
129+
"""Legacy mode: ``.bob/commands/speckit.<name>.md`` layout."""
130+
helper = _BobMarkdownHelper()
131+
return MarkdownIntegration.setup(helper, project_root, manifest, parsed_options, **opts)

0 commit comments

Comments
 (0)