storkit: merge 357_story_bot_assign_command_to_pre_assign_a_model_to_a_story

This commit is contained in:
Dave
2026-03-20 18:49:20 +00:00
parent 972d8f3c12
commit 83879cfa9e
2 changed files with 391 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
//! as they are added.
mod ambient;
mod assign;
mod cost;
mod git;
mod help;
@@ -75,6 +76,11 @@ pub struct CommandContext<'a> {
/// Add new commands here — they will automatically appear in `help` output.
pub fn commands() -> &'static [BotCommand] {
&[
BotCommand {
name: "assign",
description: "Pre-assign a model to a story: `assign <number> <model>` (e.g. `assign 42 opus`)",
handler: assign::handle_assign,
},
BotCommand {
name: "help",
description: "Show this list of available commands",