diff --git a/ai-hub/app/core/orchestration/profiles.py b/ai-hub/app/core/orchestration/profiles.py
index e62bb74..7e698cd 100644
--- a/ai-hub/app/core/orchestration/profiles.py
+++ b/ai-hub/app/core/orchestration/profiles.py
@@ -100,10 +100,6 @@
name="chat",
template=DEFAULT_PROMPT_TEMPLATE
),
- "chat": FeatureProfile(
- name="chat",
- template=DEFAULT_PROMPT_TEMPLATE
- ),
"swarm_control": FeatureProfile(
name="swarm_control",
template=DEFAULT_PROMPT_TEMPLATE
diff --git a/ai-hub/app/core/skills/bootstrap.py b/ai-hub/app/core/skills/bootstrap.py
index 0a6e2bd..7112500 100644
--- a/ai-hub/app/core/skills/bootstrap.py
+++ b/ai-hub/app/core/skills/bootstrap.py
@@ -31,7 +31,7 @@
existing.skill_type = skill_def.get("skill_type")
existing.config = skill_def.get("config")
existing.is_enabled = skill_def.get("is_enabled", True)
- existing.features = skill_def.get("features", ["chat"])
+ existing.features = skill_def.get("features", ["swarm_control"])
existing.extra_metadata = skill_def.get("extra_metadata", {})
existing.preview_markdown = skill_def.get("preview_markdown")
existing.system_prompt = skill_def.get("system_prompt")
@@ -45,7 +45,7 @@
skill_type=skill_def.get("skill_type"),
config=skill_def.get("config", {}),
is_enabled=skill_def.get("is_enabled", True),
- features=skill_def.get("features", ["chat"]),
+ features=skill_def.get("features", ["swarm_control"]),
extra_metadata=skill_def.get("extra_metadata", {}),
preview_markdown=skill_def.get("preview_markdown"),
is_system=True,
diff --git a/frontend/src/features/skills/components/SkillsPageContent.js b/frontend/src/features/skills/components/SkillsPageContent.js
index be24b0f..3a5f99f 100644
--- a/frontend/src/features/skills/components/SkillsPageContent.js
+++ b/frontend/src/features/skills/components/SkillsPageContent.js
@@ -275,7 +275,7 @@
- {['chat', 'voice', 'workflow'].map(f => (
+ {['swarm_control', 'voice_chat', 'workflow'].map(f => (