Source profileQuality 98/100

WYRE-AI/msp-claude-plugins/msp-claude-plugins/connectwise/automate/skills/computers/SKILL.md

ConnectWise Automate Computers

ConnectWise Automate computer/endpoint management: computer identifiers (ComputerID, Name, ComputerGUID, MAC), status values, OS types, hardware/software inventory, disk, patch, and antivirus status, plus remote management operations.

Source repository stars
42
Declared platforms
0
Static risk flags
0
Last source update
2026-08-28
Source checked
2026-08-28

Decision brief

What it does: where it fits

ConnectWise Automate computer/endpoint management: computer identifiers (ComputerID, Name, ComputerGUID, MAC), status values, OS types, hardware/software inventory, disk, patch, and antivirus status, plus remote management operations.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/connectwise/automate/skills/computers"
    Safe inspection promptEditorial

    Inspect the Agent Skill "ConnectWise Automate Computers" from https://github.com/WYRE-AI/msp-claude-plugins/blob/5005f73ba2f52cd299f58aa6bb79f4e70ae87103/msp-claude-plugins/connectwise/automate/skills/computers/SKILL.md at commit 5005f73ba2f52cd299f58aa6bb79f4e70ae87103. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Computer Health Assessment

      Review the “Computer Health Assessment” section in the pinned source before continuing.

      Review and apply the “Computer Health Assessment” source section.
    2. 02

      Anti-triggers

      Claude subagents — "automate agent" here means the Automate

      Claude subagents — "automate agent" here means the AutomateThe PSA record of the same machine — ConnectWise PSA holds aWhich automation to run and what it returned — inventory, status and
    3. 03

      Key Concepts

      Every computer has multiple identifiers:

      Every computer has multiple identifiers:
    4. 04

      Computer Identifiers

      Every computer has multiple identifiers:

      Every computer has multiple identifiers:
    5. 05

      Computer Status Values

      Review the “Computer Status Values” section in the pinned source before continuing.

      Review and apply the “Computer Status Values” source section.

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score98/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars42SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    WYRE-AI/msp-claude-plugins
    Skill path
    msp-claude-plugins/connectwise/automate/skills/computers/SKILL.md
    Commit
    5005f73ba2f52cd299f58aa6bb79f4e70ae87103
    License
    Apache-2.0
    Collected
    2026-08-28
    Default branch
    main
    View the original SKILL.md

    ConnectWise Automate Computer Management

    Overview

    Computers are the core managed entities in ConnectWise Automate. Each computer represents an endpoint with the Automate agent installed - workstations, servers, or network devices. This skill covers computer identification, status monitoring, inventory, patch management, and antivirus status.

    Anti-triggers

    • Claude subagents — "automate agent" here means the Automate endpoint agent, never an AI subagent definition under agents/*.md.
    • The PSA record of the same machine — ConnectWise PSA holds a parallel configuration record with its own ID; an Automate ComputerID is not a PSA configuration/id. Reach configurations through connectwise-psa-api-patterns (/company/configurations).
    • Which automation to run and what it returned — inventory, status and health live here; finding the right script, validating its parameters and reading execution results are connectwise-automate-scripts.
    • Another RMM's device list — Datto RMM, NinjaOne and Atera all speak of devices and endpoints; use datto-rmm-devices, ninjaone-devices or atera-devices.

    Key Concepts

    Computer Identifiers

    Every computer has multiple identifiers:

    IdentifierTypeDescriptionExample
    ComputerIDintegerPrimary key, auto-incrementing12345
    NamestringComputer hostnameACME-DC01
    ComputerGUIDstringGlobally unique identifiera1b2c3d4-e5f6-7890-abcd-ef1234567890
    LastContactdatetimeLast agent check-in time2024-02-15T10:30:00Z
    MACstringPrimary MAC address00:1A:2B:3C:4D:5E

    Computer Status Values

    StatusDescriptionBusiness Impact
    OnlineAgent actively checking inNormal operation
    OfflineNo agent communicationMay require attention
    DegradedAgent checking in with issuesPerformance concerns
    UnknownStatus undeterminedCheck connectivity

    Operating System Types

    OS TypeExamples
    Windows Server2016, 2019, 2022
    Windows WorkstationWindows 10, Windows 11
    macOSMonterey, Ventura, Sonoma
    LinuxUbuntu, CentOS, RHEL

    Field Reference

    Computer objects expose roughly 30 fields covering identifiers, client/location association, status, network, OS, hardware, agent, and timestamp data, plus an ExtraData map for Extra Data Fields (EDFs). ComputerInventory objects cover drives, software, memory, network adapters, printers, services, and monitors.

    See references/fields.md for the complete Computer and ComputerInventory field reference.

    API Patterns

    All endpoints require Authorization: Bearer {token} (see the API Patterns skill for authentication and token management). Core calls:

    • List: GET /cwa/api/v1/Computers?pageSize=250
    • Get one: GET /cwa/api/v1/Computers/{computerID}
    • Filter: GET /cwa/api/v1/Computers?condition=ClientID = 100&pageSize=250 (or Status = 'Online', OS contains 'Windows Server', etc. - see the API Patterns skill for full OData filter syntax)
    • Sub-resources: /Computers/{id}/Drives, /Computers/{id}/Software, /Computers/{id}/Patches, /Computers/{id}/Antivirus

    See references/api.md for the complete endpoint catalog with example requests and responses.

    Workflows

    Computer Lookup by Hostname

    async function findComputerByHostname(client, hostname) {
      const computers = await client.request(
        `/Computers?condition=Name contains '${hostname}'&pageSize=100`
      );
    
      if (computers.length === 0) {
        return { found: false, suggestions: [] };
      }
    
      if (computers.length === 1) {
        return { found: true, computer: computers[0] };
      }
    
      return {
        found: false,
        ambiguous: true,
        suggestions: computers.map(c => ({
          name: c.Name,
          id: c.ComputerID,
          client: c.Client?.Name,
          status: c.Status
        }))
      };
    }
    

    Computer Lookup by IP Address

    async function findComputerByIP(client, ipAddress) {
      const computers = await client.request(
        `/Computers?condition=IPAddress = '${ipAddress}' or ExternalIP = '${ipAddress}'`
      );
    
      return computers[0] || null;
    }
    

    Offline Computer Report

    async function getOfflineComputers(client, options = {}) {
      const { clientId, offlineMinutes = 30 } = options;
    
      let condition = "Status = 'Offline'";
      if (clientId) {
        condition += ` and ClientID = ${clientId}`;
      }
    
      const computers = await client.request(
        `/Computers?condition=${encodeURIComponent(condition)}&pageSize=500`
      );
    
      const now = new Date();
    
      return computers.map(computer => ({
        name: computer.Name,
        id: computer.ComputerID,
        client: computer.Client?.Name,
        location: computer.Location?.Name,
        lastContact: computer.LastContact,
        offlineMinutes: Math.floor(
          (now - new Date(computer.LastContact)) / 60000
        )
      }));
    }
    

    Disk Space Report

    async function getLowDiskSpaceComputers(client, threshold = 10) {
      // Get all computers
      const computers = await client.request('/Computers?pageSize=500');
      const lowDiskComputers = [];
    
      for (const computer of computers) {
        const drives = await client.request(
          `/Computers/${computer.ComputerID}/Drives`
        );
    
        const lowDrives = drives.filter(d =>
          d.Type === 'Fixed' && d.PercentFree < threshold
        );
    
        if (lowDrives.length > 0) {
          lowDiskComputers.push({
            computer: computer.Name,
            client: computer.Client?.Name,
            drives: lowDrives.map(d => ({
              letter: d.Letter,
              percentFree: d.PercentFree,
              freeGB: Math.round(d.FreeSpace / 1024)
            }))
          });
        }
    
        // Respect rate limits
        await sleep(100);
      }
    
      return lowDiskComputers;
    }
    

    Patch Compliance Report

    async function getPatchComplianceReport(client, clientId) {
      let condition = '';
      if (clientId) {
        condition = `?condition=ClientID = ${clientId}`;
      }
    
      const computers = await client.request(`/Computers${condition}&pageSize=500`);
      const report = {
        total: computers.length,
        compliant: 0,
        nonCompliant: 0,
        computers: []
      };
    
      for (const computer of computers) {
        const patches = await client.request(
          `/Computers/${computer.ComputerID}/Patches`
        );
    
        const isCompliant = patches.Missing === 0 && patches.Failed === 0;
    
        if (isCompliant) {
          report.compliant++;
        } else {
          report.nonCompliant++;
          report.computers.push({
            name: computer.Name,
            missing: patches.Missing,
            failed: patches.Failed
          });
        }
    
        await sleep(100);
      }
    
      return report;
    }
    

    Error Handling

    Common Computer API Errors

    ErrorStatusCauseResolution
    Computer not found404Invalid ComputerIDVerify computer exists
    Invalid filter400Malformed conditionCheck OData syntax
    Permission denied403Insufficient rightsCheck user permissions
    Rate limited429Too many requestsWait and retry

    Error Response Example

    {
      "error": {
        "code": "NotFound",
        "message": "Computer with ID 99999 not found"
      }
    }
    

    Computer Validation

    function validateComputerQuery(params) {
      const errors = [];
    
      if (params.condition) {
        // Validate OData operators
        const validOperators = ['=', '!=', '<', '>', '<=', '>=', 'contains', 'startswith'];
        const hasValidOperator = validOperators.some(op =>
          params.condition.includes(op)
        );
    
        if (!hasValidOperator) {
          errors.push('Invalid condition operator');
        }
      }
    
      if (params.pageSize && (params.pageSize < 1 || params.pageSize > 1000)) {
        errors.push('pageSize must be between 1 and 1000');
      }
    
      return {
        valid: errors.length === 0,
        errors
      };
    }
    

    Best Practices

    1. Use ComputerID for specific lookups - Faster than hostname searches
    2. Filter by ClientID when possible - Reduces data transfer
    3. Implement pagination - Always handle multiple pages
    4. Monitor LastContact - Check for stale offline status
    5. Cache inventory data - Software/hardware changes infrequently
    6. Batch operations - Group requests to stay under rate limits
    7. Use EDFs for custom data - Extra Data Fields for business-specific info
    8. Schedule inventory scans - Keep software/hardware data current
    9. Track agent versions - Plan upgrades based on version distribution
    10. Document naming conventions - Consistent hostnames across clients

    Computer Health Assessment

    Determining Computer Health

    function assessComputerHealth(computer, patches, antivirus, drives) {
      const issues = [];
    
      // Check online status
      if (computer.Status !== 'Online') {
        issues.push({
          severity: 'critical',
          message: `Computer is ${computer.Status}`
        });
      }
    
      // Check agent age
      const lastContact = new Date(computer.LastContact);
      const minutesSinceContact = (Date.now() - lastContact) / 60000;
    
      if (minutesSinceContact > 60) {
        issues.push({
          severity: 'warning',
          message: `No contact in ${Math.round(minutesSinceContact)} minutes`
        });
      }
    
      // Check patch status
      if (patches.Missing > 0) {
        const severity = patches.Missing > 10 ? 'critical' : 'warning';
        issues.push({
          severity,
          message: `${patches.Missing} missing patch(es)`
        });
      }
    
      // Check antivirus
      if (!antivirus.RealTimeProtection) {
        issues.push({
          severity: 'critical',
          message: 'Real-time protection disabled'
        });
      }
    
      const defAge = (Date.now() - new Date(antivirus.DefinitionDate)) / 86400000;
      if (defAge > 7) {
        issues.push({
          severity: 'warning',
          message: `AV definitions ${Math.round(defAge)} days old`
        });
      }
    
      // Check disk space
      for (const drive of drives) {
        if (drive.Type === 'Fixed' && drive.PercentFree < 10) {
          issues.push({
            severity: drive.PercentFree < 5 ? 'critical' : 'warning',
            message: `Drive ${drive.Letter} only ${drive.PercentFree}% free`
          });
        }
      }
    
      return {
        healthy: issues.filter(i => i.severity === 'critical').length === 0,
        issues
      };
    }
    

    Related Skills

    Frequently asked questions

    What to verify before installation and use

    What does the ConnectWise Automate Computers source document cover?

    ConnectWise Automate computer/endpoint management: computer identifiers (ComputerID, Name, ComputerGUID, MAC), status values, OS types, hardware/software inventory, disk, patch, and antivirus status, plus remote management operations.

    How do I install ConnectWise Automate Computers?

    The source record exposes this install command: npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/connectwise/automate/skills/computers". Inspect the command and pinned source before running it.

    Alternatives

    Compare before choosing

    Computed 10025,136

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 9967

    brucesongs/kali-claw

    insecure-design

    Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.

    Computed 9916

    NintendaDev/unikit-ai

    unikit-docs

    Generate and maintain the project's TECHNICAL documentation from its codebase — scans the project structure, tech stack, and module boundaries, then writes a lean README landing page plus detailed topic pages (architecture, modules, setup, build, APIs), only the docs that are relevant. Use whenever the user wants to create, update, or validate documentation of the CODE or the project itself, e.g. "generate documentation", "create docs", "write the README", "update the project docs", "document th

    Computed 9836,049

    K-Dense-AI/scientific-agent-skills

    dask

    Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.