Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sysknife",
"version": "0.13.1",
"version": "0.14.0",
"description": "Linux sysadmin co-pilot as an MCP server: plain-language requests become typed, risk-classified actions that a privileged daemon runs only after out-of-band terminal approval, with an Ed25519-signed audit chain and automatic rollback.",
"repository": "https://github.com/lacs-project/sysknife",
"homepage": "https://lacs-project.github.io/sysknife/",
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@ Releases before `0.2.5` predate the public launch; their notes live in the

## [Unreleased]

## [0.14.0] — 2026-09-07

The middle digit moves because an exit code changed. `sysknife audit checkpoint`
with no database configured returned 2 and now returns 4, and an exit code is
the contract a wrapper script reads. Nothing was removed and no signature
changed; under the rule in [docs/release.md](docs/release.md#version-numbering)
that is still a compatibility break, the same way v0.9.0 was when
`sysknife-setup` began refusing a malformed `.mcp.json` it used to overwrite.

Two of these are security fixes in the daemon's authorization path. A cancelled
transaction could keep a live approval receipt, and a peer the kernel could not
pin was still credited with the supplementary groups of whatever process held
that PID by the time `/proc` was read.

### Changed

- **A CLI timeout no longer reports that an action ran, and a missing
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions apps/sysknife-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysknife-cli"
version = "0.13.1"
version = "0.14.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -15,12 +15,12 @@ name = "sysknife"
path = "src/main.rs"

[dependencies]
sysknife-brain = { path = "../../crates/sysknife-brain", version = "0.13.1" }
sysknife-core = { path = "../../crates/sysknife-core", version = "0.13.1" }
sysknife-daemon = { path = "../../crates/sysknife-daemon", version = "0.13.1" }
sysknife-brain = { path = "../../crates/sysknife-brain", version = "0.14.0" }
sysknife-core = { path = "../../crates/sysknife-core", version = "0.14.0" }
sysknife-daemon = { path = "../../crates/sysknife-daemon", version = "0.14.0" }
chrono = "0.4"
libc = "0.2"
sysknife-types = { path = "../../crates/sysknife-types", version = "0.13.1" }
sysknife-types = { path = "../../crates/sysknife-types", version = "0.14.0" }

clap = { version = "4", features = ["derive"] }
clap_complete = "4"
Expand All @@ -40,11 +40,11 @@ tokio-vsock = "0.7.2"

[dev-dependencies]
# `test-support` unlocks `Plan::assume_authorized` for tests only.
sysknife-brain = { path = "../../crates/sysknife-brain", version = "0.13.1", features = ["test-support"] }
sysknife-brain = { path = "../../crates/sysknife-brain", version = "0.14.0", features = ["test-support"] }
# and `AttributionCensus::from_counts_for_tests`, so the verify renderers can be
# tested without building signed chain rows. Dev-only: production builds of this
# bin do not compile dev-dependencies, so the constructor stays unreachable there.
sysknife-daemon = { path = "../../crates/sysknife-daemon", version = "0.13.1", features = ["test-support"] }
sysknife-daemon = { path = "../../crates/sysknife-daemon", version = "0.14.0", features = ["test-support"] }
assert_cmd = "2"
predicates = "3"
tempfile = "3"
Expand Down
4 changes: 2 additions & 2 deletions apps/sysknife-shell/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/sysknife-shell/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sysknife-shell",
"private": true,
"version": "0.13.1",
"version": "0.14.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
6 changes: 3 additions & 3 deletions apps/sysknife-shell/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysknife-shell"
version = "0.13.1"
version = "0.14.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -14,8 +14,8 @@ default = ["demo"]
demo = []

[dependencies]
sysknife-brain = { path = "../../../crates/sysknife-brain", version = "0.13.1" }
sysknife-core = { path = "../../../crates/sysknife-core", version = "0.13.1" }
sysknife-brain = { path = "../../../crates/sysknife-brain", version = "0.14.0" }
sysknife-core = { path = "../../../crates/sysknife-core", version = "0.14.0" }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tauri = { version = "2.5.6" }
Expand Down
2 changes: 1 addition & 1 deletion apps/sysknife-shell/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"identifier": "org.lacsfoundation.LacsShell",
"productName": "SysKnife Shell",
"version": "0.13.1",
"version": "0.14.0",
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
Expand Down
6 changes: 3 additions & 3 deletions crates/sysknife-brain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysknife-brain"
version = "0.13.1"
version = "0.14.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -18,8 +18,8 @@ test-support = []
[dependencies]
async-trait = { workspace = true }
futures = "0.3"
sysknife-core = { path = "../sysknife-core", version = "0.13.1" }
sysknife-types = { path = "../sysknife-types", version = "0.13.1" }
sysknife-core = { path = "../sysknife-core", version = "0.14.0" }
sysknife-types = { path = "../sysknife-types", version = "0.14.0" }
async-openai = { version = "0.41", features = ["chat-completion"] }
# rig-core 0.40 renamed its lib crate `rig` -> `rig_core`; alias it back to `rig`
# so existing `use rig::...` paths keep working.
Expand Down
2 changes: 1 addition & 1 deletion crates/sysknife-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysknife-core"
version = "0.13.1"
version = "0.14.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/sysknife-daemon-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysknife-daemon-test"
version = "0.13.1"
version = "0.14.0"
publish = false
edition.workspace = true
license.workspace = true
Expand All @@ -13,6 +13,6 @@ name = "sysknife-daemon-test"
path = "src/main.rs"

[dependencies]
sysknife-daemon = { path = "../sysknife-daemon", version = "0.13.1" }
sysknife-daemon = { path = "../sysknife-daemon", version = "0.14.0" }
serde_json = { workspace = true }
tokio = { workspace = true }
8 changes: 4 additions & 4 deletions crates/sysknife-daemon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysknife-daemon"
version = "0.13.1"
version = "0.14.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -17,8 +17,8 @@ categories = ["command-line-utilities", "os::linux-apis"]
test-support = []

[dependencies]
sysknife-core = { path = "../sysknife-core", version = "0.13.1" }
sysknife-types = { path = "../sysknife-types", version = "0.13.1" }
sysknife-core = { path = "../sysknife-core", version = "0.14.0" }
sysknife-types = { path = "../sysknife-types", version = "0.14.0" }
rusqlite = { version = "0.40", features = ["bundled"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down Expand Up @@ -61,7 +61,7 @@ sqlx-postgres = { version = "0.9", default-features = false, features = [
chrono = { version = "0.4", features = ["serde"] }

[dev-dependencies]
sysknife-brain = { path = "../sysknife-brain", version = "0.13.1" }
sysknife-brain = { path = "../sysknife-brain", version = "0.14.0" }
# `test-util` provides the paused test clock, so deadline tests assert on the
# timer firing instead of sleeping for the real duration.
tokio = { version = "1", features = ["test-util"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/sysknife-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysknife-proto"
version = "0.13.1"
version = "0.14.0"
edition = "2021"
build = "build.rs"
license.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/sysknife-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysknife-types"
version = "0.13.1"
version = "0.14.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -10,7 +10,7 @@ keywords = ["llm", "ai-agent", "linux", "actions", "types"]
categories = ["command-line-utilities", "os::linux-apis"]

[dependencies]
sysknife-proto = { path = "../sysknife-proto", version = "0.13.1" }
sysknife-proto = { path = "../sysknife-proto", version = "0.14.0" }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/setup/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sysknife-setup",
"version": "0.13.1",
"version": "0.14.0",
"description": "Zero-friction setup for SysKnife MCP server \u2014 Claude Code, Cursor, and Codex CLI",
"author": "Vladimir Rotariu",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "io.github.lacs-project/sysknife",
"title": "SysKnife",
"description": "Administers Linux via typed, approval-gated actions with an Ed25519-signed audit trail.",
"version": "0.13.1",
"version": "0.14.0",
"websiteUrl": "https://lacs-project.github.io/sysknife/",
"repository": {
"url": "https://github.com/lacs-project/sysknife",
Expand All @@ -23,7 +23,7 @@
"registryType": "cargo",
"registryBaseUrl": "https://crates.io",
"identifier": "sysknife-cli",
"version": "0.13.1",
"version": "0.14.0",
"transport": {
"type": "stdio"
},
Expand Down
Loading