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
7 changes: 4 additions & 3 deletions .github/workflows/sec-core-rpmbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,10 @@ jobs:
ls /usr/bin/agent-sec-daemon
echo "=== Verify codex plugin ==="
ls /opt/agent-sec/codex-plugin/
ls /opt/agent-sec/codex-plugin/hooks/
ls /opt/agent-sec/codex-plugin/hooks/code_scanner_hook.py
ls /opt/agent-sec/codex-plugin/hooks/skill_ledger_hook.py
ls /opt/agent-sec/codex-plugin/hooks-plugin/hooks/
ls /opt/agent-sec/codex-plugin/hooks-plugin/hooks/code_scanner_hook.py
ls /opt/agent-sec/codex-plugin/hooks-plugin/hooks/skill_ledger_hook.py
ls /opt/agent-sec/codex-plugin/hooks-plugin/.codex-plugin/plugin.json
ls /opt/agent-sec/codex-plugin/install.sh
ls /opt/agent-sec/codex-plugin/.agents/plugins/marketplace.json
echo "=== Verify skills ==="
Expand Down
2 changes: 1 addition & 1 deletion src/agent-sec-core/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ build-hermes-plugin: ## Stage hermes-plugin Python sources to BUILD_DIR
.PHONY: stage-codex-plugin
stage-codex-plugin: ## Stage codex-plugin hooks and install script to BUILD_DIR
install -d -m 0755 $(BUILD_DIR)/codex-plugin
cp -rp codex-plugin/hooks-plugin/. $(BUILD_DIR)/codex-plugin/
cp -rp codex-plugin/hooks-plugin $(BUILD_DIR)/codex-plugin/
cp -p codex-plugin/install.sh $(BUILD_DIR)/codex-plugin/
cp -rp codex-plugin/.agents $(BUILD_DIR)/codex-plugin/

Expand Down
Loading