Claude Code Plugins

Community-maintained marketplace

Feedback

kamal-production-console

@pepicrft/micelio
1
0

Use when you need to open a production console or inspect production logs via Kamal for this Micelio app.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name kamal-production-console
description Use when you need to open a production console or inspect production logs via Kamal for this Micelio app.

Kamal production console + logs

Use this skill when the user asks how to open a production console or check logs.

Prerequisite

  • Load environment secrets before any Kamal command:
source .env

Open a production console

  • Start an interactive shell in the app container, then launch the release console:
source .env && kamal app exec --interactive "bin/micelio remote"

If the release script location differs, list the container filesystem and adjust the path before retrying.

Tail production logs

  • Stream application logs:
source .env && kamal app logs --follow

Use --since or --lines to narrow the output when needed.