fix: use directory path format for commands/agents/skills

Claude Code requires simple directory paths like "./commands/"
not object declarations with individual entries.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-12 11:48:06 -05:00
parent cff97eb3bb
commit 011251c84e
2 changed files with 5 additions and 70 deletions

View File

@@ -16,28 +16,6 @@
"ipam",
"dcim"
],
"commands": {
"cmdb-search": {
"description": "Search NetBox for devices, IPs, sites, or any CMDB object",
"source": "commands/cmdb-search.md"
},
"cmdb-device": {
"description": "Manage network devices (create, view, update, delete)",
"source": "commands/cmdb-device.md"
},
"cmdb-ip": {
"description": "Manage IP addresses and prefixes",
"source": "commands/cmdb-ip.md"
},
"cmdb-site": {
"description": "Manage sites and locations",
"source": "commands/cmdb-site.md"
}
},
"agents": {
"cmdb-assistant": {
"description": "Infrastructure management assistant for NetBox CMDB operations",
"source": "agents/cmdb-assistant.md"
}
}
"commands": "./commands/",
"agents": "./agents/"
}