Skip to main content
Glama

Fcop Report

fcop_report

Reports project status at session start, showing initialization modes when unconfigured or role-assignment prompts when unbound, while flagging protocol-rule version drift.

Instructions

FCoP Rule 0 — first tool call of every new session, also the general project-status report.

Returns one of two reports plus a versions block + optional drift warning (ADR-0006):

  1. Initialization report when docs/agents/fcop.json is missing. Lists the detected project path + resolution source and the available init modes (Solo / preset teams / custom). Does NOT ask for a role assignment — there's no team yet.

  2. UNBOUND report when the project is initialized but this session has no role. Shows project state and a role-assignment template for ADMIN to fill in.

In both cases the [Versions] block reports installed fcop-mcp / fcop versions plus the project-local vs packaged versions of the protocol rules. When the project's .cursor/rules/*.mdc is older than the wheel-bundled copy a drift warning is appended prompting ADMIN to run redeploy_rules(). Agents must NOT invoke redeploy themselves.

While UNBOUND (or uninitialized) the agent MUST NOT read task bodies, write any files (except via the explicit init tools), or claim a role from context clues.

.. note:: This tool replaced unbound_report in 0.6.3. The deprecated alias was removed in 0.7.0; existing system prompts and LETTER-TO-ADMIN.md references that still reference unbound_report must switch to fcop_report.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoOutput language, ``zh`` or ``en``. Default: ``zh``.zh

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.4

TDQS

A4.7/5.0
Behavior5/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It is exceptionally transparent: it explains the two report shapes, the versions block, the drift warning behavior, the fact that no role assignment is requested in the init report, and the constraints on agent behavior while unbound. This goes well beyond a simple 'returns a report' statement.

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 long but well-structured and front-loaded: the core purpose is in the first sentence, followed by clearly separated numbered and bulleted details. The note about the deprecated unbound_report alias earns its place because it prevents confusion with older references. Every sentence adds necessary context.

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

Completeness5/5

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

The description is complete given the tool's complexity: it covers both call scenarios, the versions/drift block, the output variants, role-assignment behavior, and agent prohibitions. Since an output schema is present, detailed return-value documentation is not required. Nothing an agent needs to call fcop_report correctly is missing.

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?

There is only one parameter, lang, and the input schema already documents it completely with 'Output language, ``zh`` or ``en``. Default: ``zh``.' Schema description coverage is 100%, so the description need not repeat parameter details. A baseline 3 is appropriate because the description adds no parameter-specific value, but none is needed.

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?

The description opens with a specific, actionable definition: 'FCoP Rule 0 — first tool call of every new session, also the general project-status report.' It clearly distinguishes the tool from siblings by naming the two report variants (initialization and UNBOUND) and the versions/drift block, so an agent knows exactly what fcop_report does.

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

Usage Guidelines5/5

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

Usage guidance is explicit: call it first in every new session, and the description lists the exact conditions for each report type (missing fcop.json vs. initialized but no role). It also gives exclusions and guardrails, such as 'Agents must NOT invoke redeploy themselves' and prohibitions on reading task bodies or claiming roles while unbound.

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