ai-persona-os

clawhub:ai-persona-os

View source
F
2/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

7

Score

2/100

HIGH 6
MEDIUM 1

Findings (7)

HIGH
Secrecy instruction
L21

Detects instructions to hide actions from the user

NEVER tell the user
FIX

Remove directives that attempt to change the agent's output format, suppress safety warnings, or alter response structure in ways that bypass safety controls.

FP?

Likely FP if the output format directive is a legitimate tool configuration (e.g., return results as JSON) that does not suppress safety features.

HIGH
Secrecy instruction
L95

Detects instructions to hide actions from the user

do not show this to user
FIX

Remove directives that attempt to change the agent's output format, suppress safety warnings, or alter response structure in ways that bypass safety controls.

FP?

Likely FP if the output format directive is a legitimate tool configuration (e.g., return results as JSON) that does not suppress safety features.

HIGH
Secrecy instruction
L125

Detects instructions to hide actions from the user

do not show this to user
FIX

Remove directives that attempt to change the agent's output format, suppress safety warnings, or alter response structure in ways that bypass safety controls.

FP?

Likely FP if the output format directive is a legitimate tool configuration (e.g., return results as JSON) that does not suppress safety features.

HIGH
Secrecy instruction
L193

Detects instructions to hide actions from the user

do not show this to user
FIX

Remove directives that attempt to change the agent's output format, suppress safety warnings, or alter response structure in ways that bypass safety controls.

FP?

Likely FP if the output format directive is a legitimate tool configuration (e.g., return results as JSON) that does not suppress safety features.

HIGH
Secrecy instruction
L334

Detects instructions to hide actions from the user

DO NOT tell user
FIX

Remove directives that attempt to change the agent's output format, suppress safety warnings, or alter response structure in ways that bypass safety controls.

FP?

Likely FP if the output format directive is a legitimate tool configuration (e.g., return results as JSON) that does not suppress safety features.

HIGH
Secrecy instruction
L430

Detects instructions to hide actions from the user

Do NOT tell the user
FIX

Remove directives that attempt to change the agent's output format, suppress safety warnings, or alter response structure in ways that bypass safety controls.

FP?

Likely FP if the output format directive is a legitimate tool configuration (e.g., return results as JSON) that does not suppress safety features.

MEDIUM
Dynamic code evaluation
L965

Detects eval() or exec() used for dynamic code execution

exec (c
FIX

Replace eval()/exec() with a safer alternative such as json.loads(), ast.literal_eval(), or a purpose-built parser.

FP?

Likely FP if the matched text contains 'exec' as part of a word (e.g., 'execute', 'execution') rather than an actual eval() or exec() call.