telemetry — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited telemetry (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Execute all three phases in order.
Wrap the critical-path function in a trace span:
OpenTelemetry:
tracer.startActiveSpan('operation.name', (span) => {
// ... function body
span.end();
});Sentry:
const transaction = Sentry.startTransaction({ name: 'operation.name' });
// ... function body
transaction.finish();Datadog:
tracer.trace('operation.name', () => {
// ... function body
});Inside the span, attach:
user_id, tenant_id, endpointPropose an alert rule with all four fields specified:
| Field | Value |
|---|---|
| Metric | (e.g. trace.operation.duration) |
| Threshold | (e.g. > 200ms) |
| Evaluation window | (e.g. last 5 minutes) |
| Severity | (e.g. P2 / warning) |
Examples:
avg(last_5m):avg:trace.operation.duration{env:prod} > 0.200 → P2histogram_quantile(0.99, rate(http_request_duration_seconds_bucket[5m])) > 0.2 → warning~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.