renaming-services

2
0
Source

Renames a service documentation file and updates all references across docs/services/, List.vue, and nginx/redirects.conf. Use when renaming services, changing service slugs, fixing camelCase to kebab-case, or when service names change in the Coolify repository templates/compose/.

Install

mkdir -p .claude/skills/renaming-services && curl -L -o skill.zip "https://mcp.directory/api/skills/download/3989" && unzip -o skill.zip -d .claude/skills/renaming-services && rm skill.zip

Installs to .claude/skills/renaming-services

About this skill

Rename Service Documentation

This skill guides you through renaming a service in the Coolify documentation, ensuring all references are updated correctly.

When to Use This Skill

  • Service name changed in the Coolify repository
  • Fixing incorrect service naming (e.g., camelCase to kebab-case)
  • Consolidating duplicate service documentation
  • Correcting typos in service slugs

Critical: Four Locations Must Be Updated

When renaming a service, you MUST update all four locations:

  1. Documentation file (docs/services/)
  2. Services list (docs/.vitepress/theme/components/Services/List.vue)
  3. All services directory (docs/services/all.md)
  4. Nginx redirects (nginx/redirects.conf)

Failing to update all four will cause broken links or 404 errors.

Step-by-Step Process

1. Rename the Documentation File

# Rename the markdown file
git mv docs/services/old-name.md docs/services/new-name.md

Naming rules:

  • Use lowercase only
  • Use hyphens for spaces (kebab-case)
  • Match the service name from service-templates-latest.json
  • Don't use camelCase even if the JSON does (e.g., denoKVdenokv.md)

2. Update the Services List

Edit docs/.vitepress/theme/components/Services/List.vue:

// Find the service entry and update the slug
{
    name: 'Service Name',
    slug: 'new-name',  // ← Change from 'old-name'
    icon: '/docs/images/services/service-logo.svg',
    description: 'Service description',
    category: 'Category'
},

3. Add Nginx Redirects

Add redirect rules to nginx/redirects.conf:

# Redirect old service URL to new URL
location = /docs/services/old-name { return 301 /docs/services/new-name; }

# Also redirect legacy knowledge-base path if it existed
location = /knowledge-base/services/old-name { return 301 /docs/services/new-name; }

Important: Keep redirects even for deleted pages to prevent 404 errors from search engines and bookmarks.

4. Update All Services Directory

Edit docs/services/all.md and update the service entry under its category:

- [New Service Name](/services/new-name) - Service description

5. Update Internal Links

Search for any internal links referencing the old name:

# Search for references to the old service name
grep -r "old-name" docs/

Update any found references in other documentation files.

6. Rename Logo File (If Needed)

If the logo filename also needs updating:

# Rename the logo
git mv docs/public/images/services/old-name-logo.svg docs/public/images/services/new-name-logo.svg

Then update the icon path in List.vue.

Verification Checklist

After renaming, verify:

  • New file exists: docs/services/new-name.md
  • Old file removed or redirected
  • List.vue slug matches new filename
  • List.vue icon path is correct
  • Entry updated in docs/services/all.md
  • Redirect added to nginx/redirects.conf
  • No broken internal links (run grep -r "old-name" docs/)
  • Service appears correctly at http://localhost:5173/docs/services/new-name
  • Old URL redirects to new URL

Common Scenarios

Fixing camelCase to kebab-case

When the Coolify JSON uses camelCase but docs should use lowercase:

  • denoKVdenokv.md
  • homeAssistanthome-assistant.md

Adding Version Numbers

When Coolify adds version-specific services:

  • mautic.mdmautic5.md (if JSON specifies mautic5)

Consolidating Names

When compound names are required:

  • ente.mdente-photos.md (if JSON specifies ente-photos)

Troubleshooting

Service shows 404

  • Check if redirect is in nginx/redirects.conf
  • Verify slug in List.vue matches filename
  • Ensure markdown file exists

Old URL still works without redirect

  • Nginx config may need reload
  • Check redirect syntax in redirects.conf

Search engines still show old URL

  • Redirects are working correctly (301 tells search engines to update)
  • Takes time for search engines to re-crawl

Related Skills

  • adding-service-documentation - For creating new service docs
  • disabling-services - For hiding deprecated services

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.

643969

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.

591705

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."

318398

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.

339397

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.

451339

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.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.