knowledge 0.11.0

The launcher and updater for the Knowledge.Dev MCP binary
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Loader justfile

info:
    just -l

# Check all
check:
    cargo check

# Build release
build:
    cargo build --release

# Bump version (patch by default, or specify: major, minor, patch)
bump level:
    cargo set-version --bump {{level}}