From bonusly
Use when exploring the reporting hierarchy, finding who someone reports to, listing a person's full management chain, mapping the team beneath a manager, or finding top-level employees with no manager.
How this skill is triggered — by the user, by Claude, or both
Slash command
/bonusly:explore-org-chartThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill walks the organization's reporting structure — upward to a person's managers, downward through the people who report to them, or across the top of the org chart. It's a read-only navigation tool useful for org audits and "who reports to whom" questions.
This skill walks the organization's reporting structure — upward to a person's managers, downward through the people who report to them, or across the top of the org chart. It's a read-only navigation tool useful for org audits and "who reports to whom" questions.
Start by figuring out what the user wants:
searchUsers or getUser by name or email. (Not needed if they want the top of the org chart.)Then call the matching tool:
getManagerChain walks from the person to the top of the org, ordered closest-first.getReportingTree walks the layers beneath a person. Set depth (default 1, max 5) to control how deep. For just the immediate reports, getDirectReports is simpler.listTopLevelUsers returns employees who have no manager (the entry points of the org chart).Render the result as an indented outline so the hierarchy is easy to scan, rather than a flat list. Include each person's name and, where helpful, their title or department.
These endpoints paginate and limit depth; if a tree is large or truncated, say so and offer to expand a specific branch. Note that cross-company manager IDs return no results.
Access note: these are read-only and require user:read. If a call fails, surface the required permission.
npx claudepluginhub bonusly/bonusly-claude-plugin --plugin bonuslyGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.