fix(colibri): add ListSkills + RegisterSkill to Command enum (Hermes) #23
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "fix/colibri-cli-skills-enum"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The colibri CLI's
parse_argsandrunhandler referencedCommand::ListSkillsandCommand::RegisterSkill, but both variants were missing from the enum definition. This caused a build failure on Linux (rustc 1.95.0).Added the missing variants with their fields (
name,description,categoryfor RegisterSkill).Gates:
cargo build --workspace --release✅cargo test --workspace✅ (151 tests)./scripts/check-format.sh✅Co-Authored-By: Hermes Agent