Claude Skill

systems-administration

Runs servers and corporate systems — patching, configuration baselines, change control, capacity, and the routine that prevents incidents. Use this to establish a patching cadence, standardize server configuration, plan a maintenance window, decide change control for infrastructu

LLM Mart · 0 points · 16 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download cbrock84-headcount-plugins_it-operations_skills_systems-administration-98d1c17.zip · 2 KB
Part of cbrock84/headcount — 160 skills

Install

skills CLI npx skills add https://github.com/cbrock84/headcount/tree/main/plugins/it-operations/skills/systems-administration
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install cbrock84-headcount@llmmart
Git git clone https://github.com/cbrock84/headcount.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole cbrock84/headcount collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Systems administration

Well-run systems are boring. The work is in the routine that keeps them that way, and almost every serious incident traces back to a routine that was skipped.

Cloud environment design belongs to technology:cloud-infrastructure; this is operating the systems the company runs on.

Configuration baselines and drift

Every system class needs a defined baseline: build, hardening, agents, logging, accounts. Systems built by hand from memory diverge immediately and cannot be reasoned about as a group.

Drift is the real enemy. Detect it continuously and correct rather than document — a system that no longer matches its baseline is a system whose behavior under patching or failover is unknown.

The strongest form is disposability: rebuild rather than repair. A system you can rebuild in an hour never accumulates the sediment of a decade of manual fixes.

Patching as a cadence

Set a regular, predictable window and hold it. Ad hoc patching means patching happens when someone worries, which is never in proportion to actual risk.

Tier by exposure: internet-facing systems on the shortest cycle, then internal, then isolated. Emergency patching is a separate path with its own authority, used for actively exploited vulnerabilities — security:vulnerability-management decides what is urgent, this skill executes it.

Track coverage, not activity. "Patching is running" is not an answer; "97% of servers are within 30 days, here are the twelve that are not and why" is.

Change control proportionate to risk

Heavyweight approval for trivial changes produces circumvention, and circumvention produces unrecorded changes, which is worse than no process.

Tier it: standard pre-approved changes, normal changes with review, emergency changes with after-the-fact record. Every change needs an owner, a back-out plan, and a record — the back-out plan being the part most often assumed rather than written.

Maintenance windows exist to make disruption predictable. Announce them, keep them, and finish inside them.

Know what you have

An unmanaged system is a system nobody patches. Reconcile what is running against it-operations:it-asset-management regularly, and treat anything unaccounted for as urgent — the server nobody owns is the one still running an unsupported operating system.

Sources

references/sources.md in this skill lists the outside authorities that settle the questions here — what each one is authoritative for, and what you may do with it. Check them before answering on anything they cover, and cite what you used. Most are free to read and not free to reproduce; the use note on each is binding.

Never

  • Repair a drifted system without correcting the baseline that let it drift.
  • Patch on worry rather than cadence.
  • Make a change with no back-out plan.
  • Leave a discovered unmanaged system unclaimed.
Files (headcount)
  • references
    • sources.md 1.7 KB
      # Sources — `it-operations:systems-administration`
      
      <!-- Generated by scripts/build-sources.py from sources/*.toml. Do not edit. -->
      
      Check these before answering on anything they cover, and cite what you used. The use note on each one is binding: most of what a professional cites is free to read and not free to reproduce.
      
      ## CIS Benchmarks
      
      Center for Internet Security · global · **account required — cite it; the user fetches it**
      
      <https://www.cisecurity.org/cis-benchmarks>
      
      **Authoritative for:** The consensus hardening baseline for a specific product version, with two profile levels. The non-defense equivalent of a STIG and the baseline most commercial audits cite.
      
      ## NIST SP 800-40: Guide to Enterprise Patch Management Planning
      
      NIST · US · public domain (US government) — quote freely
      
      <https://csrc.nist.gov/pubs/sp/800/40/r4/final>
      
      **Authoritative for:** What a defensible patch program contains — maintenance windows, phased deployment, and the position that leaving something unpatched requires documented compensating controls rather than silence.
      
      ## Security Technical Implementation Guides
      
      Defense Information Systems Agency, US Department of Defense · US · public domain (US government) — quote freely
      
      <https://public.cyber.mil/stigs/>
      
      Machine-readable: <https://public.cyber.mil/stigs/downloads/>
      
      **Authoritative for:** The exact required configuration of a given operating system, hypervisor or appliance, setting by setting with severity. When two administrators disagree about a hardening value, this states the required one.
      
      ---
      
      Sources are maintained in `sources/` upstream, not here. If one is wrong, out of date, or missing, fix it there — this file is regenerated and an edit to it is lost.
      
  • SKILL.md 3.2 KB
    ---
    name: systems-administration
    description: Runs servers and corporate systems — patching, configuration baselines, change control, capacity, and the routine that prevents incidents. Use this to establish a patching cadence, standardize server configuration, plan a maintenance window, decide change control for infrastructure, or clean up systems that have drifted from any known state.
    ---
    
    # Systems administration
    
    Well-run systems are boring. The work is in the routine that keeps them that way, and almost every
    serious incident traces back to a routine that was skipped.
    
    Cloud environment design belongs to `technology:cloud-infrastructure`; this is operating the systems
    the company runs on.
    
    ## Configuration baselines and drift
    
    Every system class needs a defined baseline: build, hardening, agents, logging, accounts. Systems
    built by hand from memory diverge immediately and cannot be reasoned about as a group.
    
    Drift is the real enemy. Detect it continuously and correct rather than document — a system that no
    longer matches its baseline is a system whose behavior under patching or failover is unknown.
    
    The strongest form is disposability: rebuild rather than repair. A system you can rebuild in an hour
    never accumulates the sediment of a decade of manual fixes.
    
    ## Patching as a cadence
    
    Set a regular, predictable window and hold it. Ad hoc patching means patching happens when someone
    worries, which is never in proportion to actual risk.
    
    Tier by exposure: internet-facing systems on the shortest cycle, then internal, then isolated.
    Emergency patching is a separate path with its own authority, used for actively exploited
    vulnerabilities — `security:vulnerability-management` decides what is urgent, this skill executes it.
    
    Track **coverage**, not activity. "Patching is running" is not an answer; "97% of servers are within
    30 days, here are the twelve that are not and why" is.
    
    ## Change control proportionate to risk
    
    Heavyweight approval for trivial changes produces circumvention, and circumvention produces
    unrecorded changes, which is worse than no process.
    
    Tier it: standard pre-approved changes, normal changes with review, emergency changes with
    after-the-fact record. Every change needs an owner, a back-out plan, and a record — the back-out plan
    being the part most often assumed rather than written.
    
    Maintenance windows exist to make disruption predictable. Announce them, keep them, and finish inside
    them.
    
    ## Know what you have
    
    An unmanaged system is a system nobody patches. Reconcile what is running against
    `it-operations:it-asset-management` regularly, and treat anything unaccounted for as urgent — the
    server nobody owns is the one still running an unsupported operating system.
    
    ## Sources
    
    `references/sources.md` in this skill lists the outside authorities that settle the questions
    here — what each one is authoritative for, and what you may do with it. Check them before
    answering on anything they cover, and cite what you used. Most are free to read and not free
    to reproduce; the use note on each is binding.
    
    ## Never
    
    - Repair a drifted system without correcting the baseline that let it drift.
    - Patch on worry rather than cadence.
    - Make a change with no back-out plan.
    - Leave a discovered unmanaged system unclaimed.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related