From microshift-dev
Analyze MicroShift journal logs to extract statistics about start procedure
How this skill is triggered — by the user, by Claude, or both
Slash command
/microshift-dev:analyze-start-timeThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
/microshift-dev:analyze-start-time <journal-logs>
ABSOLUTE MANDATE: The service timing table is THE ONLY OUTPUT that matters. ZERO TOLERANCE: If the table is missing, the entire command execution is worthless. PRIMARY DIRECTIVE: Generate the table immediately. Everything else is optional noise.
The analyze-start-time command extracts meaningful statistics from MicroShift's journal logs about start procedure and displays a service timing table.
SUCCESS CRITERIA - The command is only successful if:
FAILURE CONDITIONS:
<ARGUMENTS> (journal-logs): Journal logs from MicroShift, including start procedure - RequiredGoal: Identify how many restarts are included in the journal.
Actions:
r'microshift\[(\d+)\]:.*"MICROSHIFT STARTING". This is the number of times MicroShift has been restarted.microshift\[(\d+)\]:.*"MICROSHIFT READY".*since-start="([^"]+)" in the file.Goal: Get details about how long it took to start MicroShift.
Actions:
microshift\[(\d+)\]:.*"MICROSHIFT READY".*since-start="([^"]+)" to fetch logs about it.Goal: Get details about how long it took to start each of the services in MicroShift.
Actions:
SERVICE READY.*service="([^"]+)".*since-start="([^"]+)" to fetch logs about it.CRITICAL MANDATE: Generate the service performance table - THIS IS THE ONLY OBJECTIVE THAT MATTERS.
REQUIRED TABLE FORMAT (MUST BE EXACT):
------------------------------------------------------------------------------------------------------------------------
Service Runs Average Median StdDev Min Max Var% Status
------------------------------------------------------------------------------------------------------------------------
MICROSHIFT OVERALL STARTUP XX XX.XXXs XX.XXXs XXX.Xms XX.XXXs XX.XXXs X.X icon
[ALL OTHER SERVICES LISTED HERE - SORTED BY AVERAGE TIME, SLOWEST FIRST]
------------------------------------------------------------------------------------------------------------------------
MANDATORY ACTIONS - EXECUTE IN THIS EXACT ORDER:
ABSOLUTE REQUIREMENTS:
Strong prohibitions:
Positive instructions:
CRITICAL: The primary output MUST be this exact table format. Generate the table first, everything else is optional.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub openshift-eng/edge-tooling --plugin microshift-dev