refactor: Migrated the .skills command completion to use StateFlags and updated the help messages

This commit is contained in:
2026-06-18 14:30:55 -06:00
parent d4dbda1e89
commit 3299a4699e
3 changed files with 160 additions and 11 deletions
+2
View File
@@ -672,6 +672,8 @@ bitflags::bitflags! {
const RAG = 1 << 3;
const AGENT = 1 << 4;
const FUNCTION_CALLING = 1 << 5;
const AUTO_CONTINUE = 1 << 6;
const SKILLS_ENABLED = 1 << 7;
}
}