What problem does it solve? It provides a single entry point for GitHub automation tasks by routing each request to the correct specialized sub-skill, so users do not need to know which of the seven child skills handles PRs, issues, discussions, authentication, code review, repository management, or codebase inspection. ## Core Features & Use Cases - Parent Routing Index: Validates the input contract (request string plus context with owner/repo) and delegates to one of seven sub-skills via the Hermes skill loading mechanism. - Sub-Skill Coverage: Includes codebase-inspection (pygount LOC analysis), github-auth, github-code-review, github-discussions (GraphQL-based), github-issues, github-pr-workflow, and github-repo-management. - Safe Error Handling: Rejects unknown sub-skill names and incomplete contexts with structured errors containing context and recovery hints, verified by a golden test set. - Use Case: A user asks to search open discussions about self-evolution in a repository; the parent skill validates owner/repo context and delegates to github-discussions, which runs the GraphQL query. ## Quick Start Ask the agent to handle a GitHub task such as listing open issues or creating a discussion in a specific owner/repo, and it will route the request to the matching sub-skill automatically.