원클릭으로
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