Skip to content

Commit b5a54d5

Browse files
committed
security: add telemetry and privacy guidance
1 parent a3abf27 commit b5a54d5

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Telemetry and Privacy
2+
3+
AI-OS should be privacy-first.
4+
5+
## Principles
6+
7+
- No telemetry by default.
8+
- Prefer local logs for local workflows.
9+
- Do not collect secrets, prompts, private code, or personal data.
10+
- Make any telemetry opt-in and documented.
11+
- Keep observability useful for debugging loops and verifier outcomes.
12+
13+
## Observability loop
14+
15+
```mermaid
16+
flowchart TD
17+
Event[Loop event] --> Classify[Classify]
18+
Classify --> Sensitive{Sensitive?}
19+
Sensitive -- Yes --> Redact[Redact or drop]
20+
Sensitive -- No --> Record[Record metric]
21+
Redact --> Record
22+
Record --> Review[Review usefulness]
23+
```
24+
25+
## Useful metrics
26+
27+
- loop count
28+
- verifier pass rate
29+
- time to recover
30+
- docs drift
31+
- release readiness
32+
- model escalation count

0 commit comments

Comments
 (0)