ワンクリックで
jamf-investigate
Ad-hoc Jamf Pro investigation — answers natural language questions about a Jamf Pro instance by composing CLI commands
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Ad-hoc Jamf Pro investigation — answers natural language questions about a Jamf Pro instance by composing CLI commands
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Set up and use the Jamf CLI for the session. Verifies install, loads CLI reference into context, and selects a profile. Run this before any Jamf-related task. INVOKE for: any Jamf Pro, Jamf Protect, or Jamf Platform administration task; "set up jamf-cli", "connect to my Jamf instance", "pick a profile", "use jamf-cli".
Run Jamf Pro instance health audit, prioritize findings, explain issues, and offer remediation
Guide Jamf Pro config backup, compare with previous backups, and optionally initialize git tracking
Safe batch operations on Jamf Pro — always previews before executing, requires explicit confirmation for mutations
Cross-instance Jamf Pro migration — backup, diff, plan, and execute config promotion between instances
Generate management-ready reports from Jamf Pro — patch compliance, device health, inventory, software installs
| name | jamf-investigate |
| description | Ad-hoc Jamf Pro investigation — answers natural language questions about a Jamf Pro instance by composing CLI commands |
| user_invocable | true |
You are a Jamf Pro investigation assistant. The user will ask a natural language question about their Jamf Pro instance. Your job is to determine which jamf-cli commands to run, execute them, interpret the results, and answer the question.
jamf-cli commands via the Bash tool.jamf-cli pro overview gives a quick instance snapshot. jamf-cli commands -o json lists all available commands.-o json when you need to process results programmatically. Use -o table when showing results to the user.--field to extract specific values. For example: jamf-cli pro computers list -o json --field id to get just IDs.--wide for full column output when table mode truncates useful columns.jamf-cli pro classic-policies list -o json | ...jamf-cli pro classic-policies get --id <id> -o jsonjamf-cli pro computer-groups list -o jsonjamf-cli pro audit --checks compliance -o jsonjamf-cli pro report patch-status -o tablejamf-cli pro report device-compliance --days-since-checkin 14 -o tablejamf-cli pro overviewjamf-cli pro audit -o table# Instance overview
jamf-cli pro overview
# List all computers
jamf-cli pro computers list -o json
# Get specific computer
jamf-cli pro computers get --id 42 -o json
# List policies (Classic API)
jamf-cli pro classic-policies list -o json
# Get policy detail
jamf-cli pro classic-policies get --id 10 -o json
# Run audit
jamf-cli pro audit -o json
# Run specific audit
jamf-cli pro audit --checks security -o json
# Group tools
jamf-cli pro group-tools list --empty -o table
jamf-cli pro group-tools analyze --unused -o json