We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/venikman/fpf-agent-stack'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
SKILL.md•1.06 KiB
---
name: fpf-skill:telemetry-verify-compliance
description: Verifies that a telemetry span complies with FPF Discipline-Health (G.12).
version: 0.1.0
allowed_tools: []
---
# telemetry/verify-compliance Kernel
## Context
This skill acts as a **Discipline-Health Checkpoint** (G.12). It validates that a given telemetry record (Span) contains the necessary evidence to be considered "Lawful Telemetry".
## Instructions
Analyze the provided Span JSON and verify the following invariants:
### 1. 4D Completeness
Check for the presence of all mandatory FPF Anchors:
- [ ] `fpf.spec_ref`
- [ ] `fpf.performer_ref`
- [ ] `fpf.context_ref`
- [ ] `fpf.system_ref`
### 2. Validity Checks
- **Spec Validity**: `fpf.spec_ref` must start with `method:` or compatible scheme.
- **Context Validity**: `fpf.context_ref` must start with `ctx:` or `U.BoundedContext`.
### 3. Output
Return a structured Compliance Report:
```json
{
"compliant": boolean,
"missing_anchors": string[],
"violations": string[]
}
```
If `compliant` is false, `violations` must list the specific G.12 rules broken.