chore(marketplace): add slark-cicd-plugin

This commit is contained in:
2026-08-22 08:15:02 +09:30
parent 16e58047a0
commit 3b38deb078
4 changed files with 226 additions and 1 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ def load_config():
def get_category_and_keywords(plugin_name):
if any(x in plugin_name for x in ['dev-', 'coding', 'frontend']):
return "development", ["development", "coding", "workflow"]
elif any(x in plugin_name for x in ['ops-', 'deploy', 'server']):
elif any(x in plugin_name for x in ['ops-', 'deploy', 'server', 'slark-cicd']):
return "devops", ["devops", "deployment", "operations"]
elif any(x in plugin_name for x in ['ai-proj', 'req']):
return "productivity", ["project-management", "tasks", "requirements"]