mssql-performance-revi…
Agentic offline orchestrator for end-to-end SQL Server performance reviews. Forms hypotheses from artifacts or symptoms, dispatches the specialised review…
Analyze SQL Server Setup Bootstrap log files to diagnose failed installations, failed Cumulative Update or Service Pack patching, failed cluster node operations, and risky setup-time configuration. Parses Summary.txt, Detail.txt, MSI/MSP logs, ConfigurationFile.ini, and
$ npx -y skills add vanterx/mssql-performance-skills --skill sqlbootstraplog-review --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/sqlbootstraplog-reviewContext preview
The summary Claude sees to decide when to auto-load this skill.
Analyze SQL Server Setup Bootstrap log files to diagnose failed installations, failed Cumulative Update or Service Pack patching, failed cluster node operations, and risky setup-time configuration. Parses Summary.txt, Detail.txt, MSI/MSP logs, ConfigurationFile.ini, and
name: sqlbootstraplog-review description: Analyze SQL Server Setup Bootstrap log files to diagnose failed installations, failed Cumulative Update or Service Pack patching, failed cluster node operations, and risky setup-time configuration. Parses Summary.txt, Detail.txt, MSI/MSP logs, ConfigurationFile.ini, and SystemConfigurationCheck_Report content from the Setup Bootstrap Log folder. Applies 24 checks (U1–U24) covering final-result failure and exit-code extraction, failed setup rules (pending reboot, disk space, account permissions, prerequisites, cluster rules), Detail.txt exception forensics, MSI "Return value 3" patterns, and ConfigurationFile.ini review (service accounts, instant file initialization, TempDB layout, mixed authentication, feature sprawl, directory placement). Use this skill whenever SQL Server setup, an in-place upgrade, a patch, or add/remove node fails, or when a user pastes Summary.txt, Detail.txt, or ConfigurationFile.ini content. triggers: - /sqlbootstraplog-review - /bootstrap-log - /setup-log
Analyze SQL Server Setup Bootstrap log artifacts to find why an installation, upgrade, patch (CU/SP), repair, or cluster node operation failed — and to flag risky setup-time configuration before it becomes production drift. Applies 24 checks (U1–U24) across four categories:
rules, partial feature failure, patch/upgrade per-instance failures, component update phase failures
prerequisites, cluster rules, policy blockers, Global Rules phase
setup crashes, failure-chain root-cause ordering, Datastore state files
initialization, TempDB layout, security surface, feature sprawl, directory placement
Setup runs three phases — (1) Global Rules verification, (2) Component update, (3) the user-requested action — and writes a dated log folder per run. This skill is the installation-layer counterpart to `sqlerrorlog-review` (runtime) and `sqldbconfig-review` (post-install drift).
Accept any of:
properties, discovered features, user input settings, detailed per-feature results, rules with failures or warnings
end of the file
unattended installs; passwords and PID are not saved into it)
descriptions, and execution status
%programfiles%\Microsoft SQL Server\<nnn>\Setup Bootstrap\Log\ <- Summary.txt
%programfiles%\Microsoft SQL Server\<nnn>\Setup Bootstrap\Log\<yyyyMMdd_HHmmss>\
Summary_<MachineName>_<yyyyMMdd_HHmmss>.txt
Detail.txt
ConfigurationFile.ini
SystemConfigurationCheck_Report.htm
<Name>.log <- MSI/MSP logs
Datastore\ <- XML state snapshots per execution phase
MSSQLSERVER\ ... <- per-instance subfolders when patching`<nnn>` matches the version being installed: 130 = SQL 2016, 140 = SQL 2017, 150 = SQL 2019, 160 = SQL 2022. All files in a log folder are archived into `Log*.cab`. Unattended-mode logs land in `%temp%\sqlsetup*.log`.
Before installing or patching, run [`scripts/check-pending-reboot.ps1`](scripts/check-pending-reboot.ps1) to detect the pending-reboot conditions that fail Setup's "Restart computer" rule (U7) — Component Based Servicing, Windows Update, PendingFileRenameOperations, pending computer rename, and the ConfigMgr client signal. Exit code 0 = clear, 1 = reboot pending. See [`scripts/README.md`](scripts/README.md) for usage.
1. **Identify the artifact type(s)** in the input: Summary, Detail, MSI log, INI, rules report, or a mix. 2. **Parse the Summary first** when present — `Final result:`, `Exit code (Decimal):`, `Requested action:`, `Detailed results:` (per-feature `Status:` / `Component error code:` / `Error description:`), and `Rules with failures or warnings:`. 3. **Run U1–U13** against the Summary/rules content. 4. **Run U14–U18** against Detail.txt and MSI logs when provided — search Detail.txt from the end for "error" / "exception"; search MSI logs for "value 3". 5. **Run U19–U24** against ConfigurationFile.ini or the `User Input Settings:` section of the Summary (the same parameters appear in both). 6. **Order findings by causality** — the first failing action or rule is the root cause; later failures are usually cascade (U17). 7. If a check cannot be evaluated because its artifact is absent, report "Cannot evaluate — <artifact> not provided" rather than skipping silently.
---
`Setup completed with required actions` (anything other than `Passed`)
`Detailed results:` whose `Status:` is not `Passed`. Report the `Error description:` and `Component error code:` for each failed feature, then continue with U2–U18 to find the root cause. The `Next step for <feature>:` lines sta
SQL Server performance tuning skills for LLMs — 829 checks across 26 skills covering T-SQL, execution plans, wait stats, deadlocks, Query Store, indexes, encryption, Always On AG, WSFC, ERRORLOG, SPN, memory, disk I/O, config drift, setup logs, SSRS & migration readiness. Remote MCP server on Cloudflare Workers.
Repo: vanterx/mssql-performance-skills
Agentic offline orchestrator for end-to-end SQL Server performance reviews. Forms hypotheses from artifacts or symptoms, dispatches the specialised review…
Audits SQL Server Always On Availability Group configuration correctness across all layers — prerequisites, replica design, listener architecture, backup…
Analyzes Windows Server Failover Cluster (WSFC) CLUSTER.LOG files for Always On Availability Group root-cause diagnosis. Use this skill when an availability…
Analyze SQL Server instance and database configuration drift against proven DBA best practices. Applies 29 checks (B1–B29) across five categories: parallelism…
Analyze SQL Server deadlock XML (from system_health XE session, SSMS deadlock graph, or trace) to identify root cause and produce a prioritized remediation…
Analyze SQL Server file-level I/O latency and auto-growth events using sys.dm_io_virtual_file_stats, sys.master_files, and default trace auto-growth records.…