# app/core/skills/definitions.py
import os
from .loader import load_skills_from_directory
from app.core.orchestration.profiles import get_allowed_features

# Get the base directory relative to this file
# This assumes the project structure:
# /app/
#   skills/
#   ai-hub/app/core/skills/definitions.py
PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../../"))
SKILLS_DIR = os.path.join(PROJECT_ROOT, "skills")

SYSTEM_SKILLS = load_skills_from_directory(SKILLS_DIR)
