Adds unified installation management for Claude Code integration: blue install - Install hooks, skills, MCP server blue uninstall - Remove Blue from Claude Code blue doctor - Check installation health Components managed: - Hooks: session-start.sh (PATH), guard-write.sh (guard) - Skills: Symlinks to ~/.claude/skills/ - MCP Server: Configuration in ~/.claude.json Features: - --hooks-only, --skills-only, --mcp-only flags - --force to overwrite existing files - Managed files tagged with "# Managed by: blue install" - Idempotent - safe to run repeatedly Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
620 B
TOML
29 lines
620 B
TOML
[package]
|
|
name = "blue"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Blue CLI - Welcome home"
|
|
build = "build.rs"
|
|
|
|
[[bin]]
|
|
name = "blue"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
blue-core.workspace = true
|
|
blue-mcp.workspace = true
|
|
blue-ollama.workspace = true
|
|
clap.workspace = true
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
chrono.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
dirs.workspace = true
|
|
tempfile.workspace = true
|
|
serde_yaml.workspace = true
|
|
serde_json.workspace = true
|
|
which = "7.0"
|