Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skills/bmad-module-builder/scripts/scaffold-setup-skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def main() -> int:
)
args = parser.parse_args()

template_dir = Path(__file__).resolve().parent.parent / "assets" / "setup-skill-template"
template_dir = Path(__file__).resolve().parent.parent / "assets" / "_setup-skill-template"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The module docstring still says it "Copies the setup-skill-template" (near the top of this file), but the directory was renamed to _setup-skill-template. Consider updating the docstring to match so users/maintainers aren’t misled when diagnosing missing-template errors.

Severity: low

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

setup_skill_name = f"{args.module_code}-setup"
target = Path(args.target_dir) / setup_skill_name

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from pathlib import Path

SCRIPT = Path(__file__).resolve().parent.parent / "scaffold-setup-skill.py"
TEMPLATE_DIR = Path(__file__).resolve().parent.parent.parent / "assets" / "setup-skill-template"
TEMPLATE_DIR = Path(__file__).resolve().parent.parent.parent / "assets" / "_setup-skill-template"


def run_scaffold(tmp: Path, **kwargs) -> tuple[int, dict]:
Expand Down
Loading