26 lines
949 B
Rust
26 lines
949 B
Rust
|
|
//! MCP story tools — create, update, move, and manage stories, bugs, refactors,
|
||
|
|
//! and spikes via MCP.
|
||
|
|
//!
|
||
|
|
//! This module is a thin adapter: it deserialises MCP payloads, delegates to
|
||
|
|
//! `crate::service::story` and `crate::http::workflow` for business logic,
|
||
|
|
//! and serialises responses.
|
||
|
|
|
||
|
|
mod bug;
|
||
|
|
mod criteria;
|
||
|
|
mod refactor;
|
||
|
|
mod spike;
|
||
|
|
mod story;
|
||
|
|
|
||
|
|
pub(crate) use bug::{tool_close_bug, tool_create_bug, tool_list_bugs};
|
||
|
|
pub(crate) use criteria::{
|
||
|
|
tool_add_criterion, tool_check_criterion, tool_edit_criterion, tool_ensure_acceptance,
|
||
|
|
tool_get_story_todos, tool_record_tests, tool_remove_criterion,
|
||
|
|
};
|
||
|
|
pub(crate) use refactor::{tool_create_refactor, tool_list_refactors};
|
||
|
|
pub(crate) use spike::tool_create_spike;
|
||
|
|
pub(crate) use story::{
|
||
|
|
tool_accept_story, tool_create_story, tool_delete_story, tool_get_pipeline_status,
|
||
|
|
tool_list_upcoming, tool_purge_story, tool_unblock_story, tool_update_story,
|
||
|
|
tool_validate_stories,
|
||
|
|
};
|