dwiki 2026.3.1

Unofficial CLI for the DeepWiki MCP server — query repository documentation from your terminal or coding agent
1
2
3
4
5
6
7
8
9
10
11
# Release new version (CalVer: YYYY.M.PATCH, no v-prefix)

release-check:
    cargo test --all --all-features
    cargo build --release
    cargo publish --dry-run

release: release-check
    version=$(grep -m1 '^version = ' Cargo.toml | cut -d '"' -f 2); \
    git tag "${version}"; \
    git push origin "${version}"