Skip to content

Commit

Permalink
readme cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Revxrsal committed Sep 26, 2024
2 parents d36ac00 + a0d0f6e commit 1ff9d9b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,24 @@ robust solution with a clean, idiomatic API.
## Core Features

- **Multi-Platform Support**: Easily integrate with various platforms including Bukkit, BungeeCord, Sponge, Velocity,
JDA,
and more.
JDA, Minestom, and more.
- **Command Management**:
- Define commands using simple annotations and manage them effortlessly.
- Use spaces to define subcommands easily
- Have multiple variants of the same command
- Define parameters that come in the middle of the command
- **Advanced Parameter Handling**: Support for context-based parameters, custom parameter types, and multiple parameter
variants.
- **Optional parameters**: Define optional parameters and default values easily with `@Optional` and `@Default`
- **Flags and switches**:
- Define Unix-style switches (`--switch` and `-s`) and flags (`--value <value>` or `-v <value>`)
- Use shorthand-syntax `-s -p -r` as `-spr`
- **Response Handling**: Configure how command responses are processed with flexible `ResponseHandlers`.
- **Dependency Injection**: Inject dependencies directly into command classes using a simple builder pattern.
- **Context Resolving**: Use context resolvers to handle complex command input scenarios.
- **Command Permissions**: Apply granular permissions with `@CommandPermission` annotations.
- **Command Permissions**: Use built-in platform permissions, or define your own permission implementation with custom annotations.
- **Modular Design with Visitors**: Extend Lamp’s functionality through modular visitors for dynamic feature additions.
- **Custom annotation support**: Lamp allows you to create custom annotations and customize their behaviors.
- **Fool-proof**: Lamp has been designed to reduce user error as much as possible. It uses idiomatic APIs, immutability,
and builders, to ensure you never run into bugs. Combined with extensive compiler annotations that will help you catch
any problems at compile-time
Expand Down

0 comments on commit 1ff9d9b

Please sign in to comment.