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
22 changes: 22 additions & 0 deletions src/agent-sec-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 0.8.0

**Build & Packaging**

- Installed the Codex plugin during source builds so source deployments include the same Codex integration as packaged installs. (#1302)
- Updated source build scripts for the sec-core install flow. (#1348)
- Fixed system-mode source builds by placing uv-managed Python under the shared sec-core library directory and adding a system install smoke check. (#1400)

**Code Scanner**

- Added sensitive file path rules for common agent credentials to block API key exposure. (#1401)

**OpenClaw Plugin**

- Hardened OpenClaw deploy compatibility handling and covered deployment edge cases with unit tests. (#1358)
- Added an OpenClaw plugin cross-version E2E matrix that validates packaged plugin loading, Gateway flows, policy behavior, and observability across supported OpenClaw hosts. (#1372)

**Documentation**

- Added bilingual agent-sec-core user guide documentation and documentation maintenance rules. (#1311)
- Documented OpenClaw plugin deployment, compatibility, and upgrade guidance. (#1370)

## 0.7.1

**Prompt Scanner**
Expand Down
2 changes: 1 addition & 1 deletion src/agent-sec-core/adapters/component.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ anolisa_min_version = "0.1.12"

[component]
name = "sec-core"
version = "0.7.1"
version = "0.8.0"
layer = "runtime"
domain = "security"
description = "Agent security core adapters for OpenClaw and Hermes"
Expand Down
2 changes: 1 addition & 1 deletion src/agent-sec-core/agent-sec-cli/Cargo.lock

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

2 changes: 1 addition & 1 deletion src/agent-sec-core/agent-sec-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-sec-cli"
version = "0.7.1"
version = "0.8.0"
edition = "2021"
description = "Agent Security Core CLI - Native Rust extensions"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/agent-sec-core/agent-sec-cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "agent-sec-cli"
version = "0.7.1"
version = "0.8.0"
description = "Agent Security Core CLI - System hardening, sandbox isolation, and asset integrity verification for AI Agents"
readme = "README.md"
license = {text = "Apache-2.0"}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Agent Security Core CLI - System hardening, sandbox isolation, and asset integrity verification."""

__version__ = "0.7.1"
__version__ = "0.8.0"
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

__version__ = get_version("agent-sec-cli")
except Exception:
__version__ = "0.7.1" # pragma: no cover
__version__ = "0.8.0" # pragma: no cover

app = typer.Typer(
name="agent-sec-cli",
Expand Down
2 changes: 1 addition & 1 deletion src/agent-sec-core/agent-sec-cli/uv.lock

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

3 changes: 3 additions & 0 deletions src/agent-sec-core/agent-sec-core.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,9 @@ rm -rf $RPM_BUILD_ROOT
make install-all-for-rpmbuild DESTDIR=$RPM_BUILD_ROOT

%changelog
* Fri Jul 10 2026 YiZheng Yang <YiZheng.Yang@linux.alibaba.com> - 0.8.0-1
- Update version to 0.8.0

* Thu Jul 02 2026 YiZheng Yang <YiZheng.Yang@linux.alibaba.com> - 0.7.1-1
- Update version to 0.7.1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "agent-sec-core",
"version": "0.7.1",
"version": "0.8.0",
"description": "Agent security core plugin for Codex - code scanning, prompt scanning, PII checking, and skill ledger integrity verification."
}
2 changes: 1 addition & 1 deletion src/agent-sec-core/cosh-extension/cosh-extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agent-sec-core",
"version": "0.7.1",
"version": "0.8.0",
"hooks": {
"PreToolUse": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/agent-sec-core/hermes-plugin/src/plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: agent-sec-core-hermes-plugin
version: 0.7.1
version: 0.8.0
description: "OS-level security guardrails for Hermes Agent — powered by agent-sec-cli"
provides_hooks:
- pre_llm_call
Expand Down
2 changes: 1 addition & 1 deletion src/agent-sec-core/openclaw-plugin/openclaw.plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "agent-sec",
"name": "Agent Security",
"version": "0.7.1",
"version": "0.8.0",
"description": "Security hooks powered by agent-sec-cli",
"activation": {
"onCapabilities": ["hook"]
Expand Down
4 changes: 2 additions & 2 deletions src/agent-sec-core/openclaw-plugin/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 src/agent-sec-core/openclaw-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agent-sec-openclaw-plugin",
"version": "0.7.1",
"version": "0.8.0",
"type": "module",
"main": "dist/index.js",
"files": [
Expand Down
Loading