From cmds-cc/skills
Use when managing Cisco CUCM log files via the cisco-dime CLI — selecting, downloading, and listing service logs from Cisco UC products via DIME.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cmds-cc/skills:cisco-dime-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
CLI for downloading log files from Cisco UC products (VOS) via DIME.
CLI for downloading log files from Cisco UC products (VOS) via DIME.
Configure a cluster (one-time, interactive prompt for password — never pass credentials on the command line):
cisco-dime config add <name> --host <host> --username <user> --insecure
# You will be prompted securely for the password
cisco-dime config test
For Secret Server integration:
cisco-dime config add <name> --host '<ss:ID:host>' --username '<ss:ID:username>' --password '<ss:ID:password>' --insecure
Or use environment variables (set via your shell profile, a .env file, or a secrets manager — never hardcode credentials):
export CUCM_HOST=<host>
export CUCM_USERNAME=<user>
export CUCM_PASSWORD=<pass>
cisco-dime list-services
| Preset | Services |
|---|---|
| sip-traces | Cisco CallManager, Cisco CTIManager |
| cti-traces | Cisco CTIManager |
| curri-logs | Cisco Extended Functions |
| syslog | messages, CiscoSyslog |
| tomcat | Tomcat, Tomcat Security |
| oamp | Cisco Unified OS Admin, Cisco Unified CM Admin |
| audit | Cisco Audit Logs |
cisco-dime select sip-traces --last 30m --download --insecure
cisco-dime select sip-traces --last 2h --insecure
cisco-dime download 1,3,5 --insecure
cisco-dime select sip-traces --last 1h --all-nodes --insecure
cisco-dime download --all --organize --insecure
cisco-dime select "Cisco CallManager" --from "2026-03-19 08:00" --to "2026-03-19 09:00" --timezone America/Chicago --insecure
cisco-dime download --all --decompress --output-dir ./logs --insecure
--format table (default) — human-readable--format json — for scripting/parsing--format toon — token-efficient for AI agents (recommended)--format csv — for spreadsheets--insecure — required for self-signed CUCM certs (most environments)--all-nodes — query all cluster nodes automatically--last <duration> — relative time (30m, 2h, 1d)--download — download immediately after select--organize — save files in host/date subdirectories--decompress — gunzip .gz files after download--debug — enable verbose loggingnpx claudepluginhub cmds-cc/skillsGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.