Explore org chart
Skill bonusly/bonusly-claude-plugin/skills/explore-org-chart
Bonusly's Claude Plugin
npx -y skills add bonusly/bonusly-claude-plugin --skill explore-org-chartAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
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.
SKILL.md
1.7 KB, 344 tokens by cl100k_base, as published. Nobody here has run it
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:
- A starting person — resolve them with
searchUsersorgetUserby name or email. (Not needed if they want the top of the org chart.) - Direction — up the chain toward leadership, or down through their reports?
- Depth — for downward views, how many layers deep?
Then call the matching tool:
- Upward / management chain —
getManagerChainwalks from the person to the top of the org, ordered closest-first. - Downward / reporting tree —
getReportingTreewalks the layers beneath a person. Setdepth(default 1, max 5) to control how deep. For just the immediate reports,getDirectReportsis simpler. - Top of the org chart —
listTopLevelUsersreturns 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.