- Add comprehensive Config system with TOML support (~/.miyabi/config.toml) - Add Agent module for autonomous task execution with tool approval - Add Session management for conversation persistence - Extend CLI with new commands: init, sessions, agent, version - Add CLI flags: --model, --max-tokens, --thinking, --config, --session - Fix all clippy warnings (16 → 0) - Improve code quality with collapsible pattern matching 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
779 B
TOML
39 lines
779 B
TOML
[package]
|
|
name = "miyabi-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "Miyabi CLI - Main command-line interface"
|
|
|
|
[[bin]]
|
|
name = "miyabi"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# Workspace crates
|
|
miyabi-core = { path = "../miyabi-core" }
|
|
miyabi-tui = { path = "../miyabi-tui" }
|
|
|
|
# CLI
|
|
clap = { workspace = true }
|
|
|
|
# TUI Framework
|
|
ratatui = { workspace = true }
|
|
crossterm = { workspace = true }
|
|
|
|
# Async Runtime
|
|
tokio = { workspace = true }
|
|
|
|
# Error Handling
|
|
anyhow = { workspace = true }
|
|
|
|
# Serialization
|
|
serde_json = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|