feat: implement filesystem-based hierarchical subcommand routing#623
Open
AboMeezO wants to merge 12 commits intoneplextech:mainfrom
Open
feat: implement filesystem-based hierarchical subcommand routing#623AboMeezO wants to merge 12 commits intoneplextech:mainfrom
AboMeezO wants to merge 12 commits intoneplextech:mainfrom
Conversation
…ding for command parsing and routing
…resolution and middleware support
…with middleware support
…g and demo utilities
…mand management and routing
…I utilities for enhanced command management
|
@AboMeezO is attempting to deploy a commit to the Neplex Team on Vercel. A member of the Team first needs to authorize it. |
…command nesting depth across parsers, handlers, and execution contexts.
…mmand discovery and routing conventions
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Introduces a filesystem-based routing system for Discord commands, enabling hierarchical subcommands and subcommand groups to be defined through directory structure. The system builds a
CommandTreeand resolves it into valid Discord application commands automatically.This update improves modularity, scalability, and command organization while maintaining full backward compatibility with flat command structures.
Key Changes
Filesystem Router
CommandsRouterto resolve directory structure into a command treeCommandTreeto represent hierarchical command relationshipsCommand Registration
AppCommandHandlerto process hierarchical nodesApplicationCommandDatafrom the resolved treeMiddleware System
+middleware.tsat the directory levelMessage Command Support
MessageCommandParserto support hierarchical command pathsTesting & Examples
test-botapplicationImpact