[package]
edition = "2024"
name = "lwc"
version = "0.17.11"
build = false
exclude = [
".agent/**",
".agents/**",
".local-benchmarks/**",
".pi-subagents/**",
".superpowers/**",
"**/__pycache__/**",
"**/*.pyc",
"AGENTS.md",
"docs/images/**",
"docs/superpowers/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-driven proactive memory CLI for AI agents — autonomously recall, maintain, and evolve persistent, source-grounded knowledge across sessions."
homepage = "https://github.com/JanYork/llm-wiki-cli"
readme = "README.md"
keywords = [
"agent-memory-system",
"ai-agents",
"proactive-memory",
"knowledge-bases",
"context-engineering",
]
categories = [
"command-line-utilities",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/JanYork/llm-wiki-cli"
[[bin]]
name = "lwc"
path = "src/main.rs"
[[bin]]
name = "lwc-book"
path = "src/bin/lwc-book.rs"
[[bin]]
name = "lwc-practice"
path = "src/bin/lwc-practice.rs"
[[bin]]
name = "lwc-tutor"
path = "src/bin/lwc-tutor.rs"
[[test]]
name = "agent_cli"
path = "tests/agent_cli.rs"
[[test]]
name = "agent_cli_windows"
path = "tests/agent_cli_windows.rs"
[[test]]
name = "agent_hooks"
path = "tests/agent_hooks.rs"
[[test]]
name = "book_cli"
path = "tests/book_cli.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "codegraph_cli"
path = "tests/codegraph_cli.rs"
[[test]]
name = "codegraph_cli_windows"
path = "tests/codegraph_cli_windows.rs"
[[test]]
name = "core_parity"
path = "tests/core_parity.rs"
[[test]]
name = "graph_benchmark"
path = "tests/graph_benchmark.rs"
[[test]]
name = "learning_contract_probes"
path = "tests/learning_contract_probes.rs"
[[test]]
name = "learning_plugins_cli"
path = "tests/learning_plugins_cli.rs"
[[test]]
name = "learning_subjects"
path = "tests/learning_subjects.rs"
[[test]]
name = "learning_sync_cli"
path = "tests/learning_sync_cli.rs"
[[test]]
name = "lint_cli"
path = "tests/lint_cli.rs"
[[test]]
name = "mcp_cli"
path = "tests/mcp_cli.rs"
[[test]]
name = "office_cli"
path = "tests/office_cli.rs"
[[test]]
name = "plan_cli"
path = "tests/plan_cli.rs"
[[test]]
name = "practice_cli"
path = "tests/practice_cli.rs"
[[test]]
name = "production_acceptance"
path = "tests/production_acceptance.rs"
[[test]]
name = "safety_workflows"
path = "tests/safety_workflows.rs"
[[test]]
name = "search_benchmark"
path = "tests/search_benchmark.rs"
[[test]]
name = "storage_regressions"
path = "tests/storage_regressions.rs"
[[test]]
name = "structure_contract"
path = "tests/structure_contract.rs"
[[test]]
name = "sync_cli"
path = "tests/sync_cli.rs"
[[test]]
name = "tag_benchmark"
path = "tests/tag_benchmark.rs"
[[test]]
name = "tag_cli"
path = "tests/tag_cli.rs"
[[test]]
name = "temporal_memory"
path = "tests/temporal_memory.rs"
[[test]]
name = "temporal_memory_benchmark"
path = "tests/temporal_memory_benchmark.rs"
[[test]]
name = "todo_cli"
path = "tests/todo_cli.rs"
[[test]]
name = "trans_cli"
path = "tests/trans_cli.rs"
[[test]]
name = "trans_cli_windows"
path = "tests/trans_cli_windows.rs"
[[test]]
name = "tutor_cli"
path = "tests/tutor_cli.rs"
[[test]]
name = "view_cli"
path = "tests/view_cli.rs"
[[test]]
name = "word_graph_benchmark"
path = "tests/word_graph_benchmark.rs"
[dependencies.axum]
version = "0.8.9"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.grafeo]
version = "0.5.42"
features = [
"edge",
"wal",
"grafeo-file",
]
default-features = false
[dependencies.jsonc-parser]
version = "0.33.1"
features = [
"cst",
"serde_json",
]
[dependencies.pulldown-cmark]
version = "0.13.4"
default-features = false
[dependencies.rs-fsrs]
version = "=1.2.1"
features = ["serde"]
[dependencies.rusqlite]
version = "0.39"
features = [
"backup",
"blob",
"bundled",
"session",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.similar]
version = "=3.1.1"
[dependencies.surrealdb]
version = "3.2.4"
features = ["kv-surrealkv"]
default-features = false
[dependencies.tokio]
version = "1"
features = [
"net",
"rt-multi-thread",
"signal",
]
[dependencies.unicode-segmentation]
version = "1.13.3"
[dev-dependencies.tempfile]
version = "3.27"