disabling-services
Hides or disables a service from the documentation listing while preserving the page for SEO and bookmarks. Use when deprecating services, marking services unavailable, adding disabled:true to List.vue, or adding warning callouts to service pages. Keeps docs/services/ pages accessible via direct URL.
Install
mkdir -p .claude/skills/disabling-services && curl -L -o skill.zip "https://mcp.directory/api/skills/download/4380" && unzip -o skill.zip -d .claude/skills/disabling-services && rm skill.zipInstalls to .claude/skills/disabling-services
About this skill
Disable Service Documentation
This skill guides you through hiding a service from the documentation listing while preserving the documentation page for SEO and users who find it via search.
When to Use This Skill
- Service is deprecated in Coolify
- Service is temporarily unavailable
- Service is removed from Coolify's service catalog
- Service has been replaced by another service
Why Keep the Documentation File?
DO NOT delete the documentation file. Keep it because:
- SEO preservation - Users may find the page via search engines
- Bookmark support - Users may have bookmarked the page
- Historical reference - Users may need to understand what the service was
- Future reinstatement - Service may become available again
Step-by-Step Process
1. Add disabled: true to List.vue
Edit docs/.vitepress/theme/components/Services/List.vue:
{
name: 'Service Name',
slug: 'service-name',
icon: '/docs/images/services/service-logo.svg',
description: 'Service description',
category: 'Category',
disabled: true // ← Add this line
},
This hides the service from the services listing page but keeps the documentation accessible via direct URL.
2. Add Warning Callout to Documentation
Edit the service's markdown file (docs/services/service-name.md):
Add a warning callout at the top of the content (after frontmatter):
---
title: "Service Name"
description: "..."
---
::: warning SERVICE NOT AVAILABLE
This service is currently not available in Coolify's service catalog.
:::
# Service Name
...
3. Optional: Add Context
If you know why the service is unavailable, add context:
::: warning SERVICE DEPRECATED
This service has been deprecated and replaced by [New Service](/services/new-service).
Please use the new service for all new deployments.
:::
Or for temporary unavailability:
::: warning TEMPORARILY UNAVAILABLE
This service is temporarily unavailable due to upstream changes.
We're working on bringing it back. Check the [Coolify changelog](https://coolify.io/changelog) for updates.
:::
4. Keep Redirects (If Any)
If the service had any redirects pointing to it in nginx/redirects.conf, keep them. They ensure users reaching old URLs still find the page.
Warning Message Templates
Generic unavailable
::: warning SERVICE NOT AVAILABLE
This service is currently not available in Coolify's service catalog.
:::
Deprecated with replacement
::: warning SERVICE DEPRECATED
This service has been deprecated and replaced by [Alternative Service](/services/alternative).
Please migrate to the new service.
:::
Temporarily removed
::: warning TEMPORARILY UNAVAILABLE
This service is temporarily unavailable. Check the [Coolify Discord](https://discord.gg/coolify) for updates on when it will return.
:::
Removed due to issues
::: danger SERVICE REMOVED
This service has been removed from Coolify due to [reason].
If you were using this service, please [migration instructions or alternative].
:::
5. Remove from All Services Directory
Edit docs/services/all.md and remove the service entry from its category section.
Verification Checklist
After disabling, verify:
-
disabled: trueadded to service entry in List.vue - Warning callout added to markdown file
- Entry removed from
docs/services/all.md - Documentation file still exists (NOT deleted)
- Service no longer appears in listing at http://localhost:5173/docs/services/
- Service no longer appears at http://localhost:5173/docs/services/all
- Direct URL still works: http://localhost:5173/docs/services/service-name
- Warning is visible at top of page
Re-enabling a Service
To make a service available again:
- Remove
disabled: truefrom List.vue (or set tofalse) - Remove the warning callout from the markdown file
- Update any "deprecated" or "unavailable" messaging
Example: Full Disabled Service
List.vue entry:
{
name: 'Legacy Service',
slug: 'legacy-service',
icon: '/docs/images/services/legacy-service-logo.svg',
description: 'A service that is no longer available.',
category: 'Utilities',
disabled: true
},
Documentation file:
---
title: "Legacy Service"
description: "Documentation for Legacy Service on Coolify."
---
::: warning SERVICE DEPRECATED
This service has been deprecated as of January 2025 and is no longer available in Coolify.
Consider using [Alternative Service](/services/alternative) instead.
:::
# Legacy Service

## What was Legacy Service?
Legacy Service was a tool for... [rest of documentation]
Related Skills
adding-service-documentation- For creating new service docsrenaming-services- For renaming services
More by coollabsio
View all skills by coollabsio →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversAccess official Microsoft Docs instantly for up-to-date info. Integrates with ms word and ms word online for seamless wo
Boost AI coding agents with Ref Tools—efficient documentation access for faster, smarter code generation than GitHub Cop
Transform OpenAPI specifications into dynamic tools for integrating external services, supporting JSON web token authent
AWS (Managed) — Fully managed remote service for instant access to AWS docs and 15,000+ AWS APIs. Secure, up-to-date, an
Boost your AI code assistant with Context7: inject real-time API documentation from OpenAPI specification sources into y
Optimize your codebase for AI with Repomix—transform, compress, and secure repos for easier analysis with modern AI tool
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.