Skip to main content
Glama

Fcop Create Alert

fcop_create_alert

Manually file governance alerts for gaps missed by automated scanning. Create a structured ALERT file with severity, type, and summary to trigger admin review and resolution.

Instructions

ADMIN / Governance Observer only. Manually file a governance alert.

Use when you (as ADMIN or an authorized governance observer) detect a governance gap that automated scanning has not yet captured. Creates a new ALERT-*.md file in fcop/alerts/.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
summaryYesPlain-text description of the governance gap (1-3 sentences).
severityYes``high``, ``medium``, or ``low``.
alert_typeYesOne of: ``missing_independent_verdict``, ``commit_flood_without_governance``, ``critical_tool_unreviewed``, ``long_running_without_reconciliation``.
suggestionNoRecommended action for ADMIN. Default: "ADMIN review recommended".ADMIN review recommended

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.4

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full transparency burden. It discloses the side effect (creates a new ALERT-*.md file), the target location (fcop/alerts/), and an access restriction (ADMIN / Governance Observer only). It does not mention permissions enforcement, overwrite behavior, or failure modes, but for a simple create-file operation the core behavior is clear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short, front-loaded with the access restriction and core action, and avoids repeating schema details. Every sentence contributes either a usage condition or an output effect.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Together with the schema, the description tells the agent who is authorized, when to use it, what file will be created, and where. It lacks details on idempotency/overwrite behavior or post-creation effects, but this is a minor gap for such a simple creation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already describes all four parameters with 100% coverage, including allowed enum values for severity and alert_type. The description adds little parameter meaning beyond the schema, so a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a precise action: 'Manually file a governance alert', and names the concrete artifact it creates: 'a new ALERT-*.md file in fcop/alerts/'. It also restricts use to ADMIN or Governance Observer, which disambiguates its role from other tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly tells the agent when to use it ('when you ... detect a governance gap that automated scanning has not yet captured') and who is allowed to use it. It does not name an alternative sibling tool, but the condition for use is clear enough to route an agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.