mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-08-27 12:30:13 +03:00
The feature directory contains network planning and design functionalities (e.g., topology_planner), not device-specific features. These were not being loaded because load_device_skills() only scanned the device directory. Changes: - Added new load_feature_skills() method in SkillsLoader - Modified reload_skills() to load both device and feature directories - Device skills: device-specific configurations (e.g., VPCS) - Feature skills: network planning functionalities (e.g., topology planner) - Both are now properly loaded into SKILLS_REGISTRY This ensures that network planning features like topology_planner are available via the device_skills tool with proper category classification.