Install
openclaw skills install @yamyeed/office-collaboration-radar-enExtract an evidence-linked collaboration status card from chat logs, meeting notes, and project updates. Use when a user needs project progress, confirmed decisions, owner-and-deadline actions, blockers, cross-functional dependencies, human-review items, an executive summary, a radar chart, or stable JSON. Designed for English collaboration material; redacts PII and remains read-only by default.
openclaw skills install @yamyeed/office-collaboration-radar-enTurn scattered collaboration records into a stable, auditable project status card. Extract only facts supported by the supplied material. Do not produce a full weekly report, judge individual performance, send reminders, or write to external systems.
Chinese version: Office Collaboration Radar
Not provided when no reliable evidence exists.Accept Markdown, plain text, exported chats, meeting notes, or project logs. Label the source of each segment when combining materials. Optional metadata includes project name, time range, departments, and a list of known entities to redact.
If the material does not state a project name, time range, owner, deadline, or department, use Not provided. Do not infer or complete it.
Separate facts from opinions, questions, tentative statements, small talk, and duplicates.
Draft the seven-module card using the key order in templates/json-output-schema.md.
Keep owner and deadline values verbatim. If an exact value cannot be found in the supplied source, replace it with Not provided.
Enforce evidence, redaction, Markdown-cell sanitization, conflict checks, and priority ordering:
python3 scripts/process.py enforce --card draft-card.json --source source.txt --out enforced-card.json
Aggregate multiple cards first when needed:
python3 scripts/process.py aggregate --cards card-1.json card-2.json --out aggregated.json
Optionally generate a radar chart:
python3 scripts/radar_chart.py generate --card enforced-card.json --out collaboration-radar.svg
Optionally export a downstream mapping:
python3 scripts/export_card.py export-card --card enforced-card.json --format csv --out actions.csv
Return the Markdown card, JSON result, and executive summary. Before publishing or changing the skill, run:
python3 scripts/process.py selftest
python3 scripts/validate_output.py
Keep every heading in this order, even when a section contains only Not provided:
# Collaboration Status Card
## Project Overview
## Progress
## Confirmed Decisions
## Owner × Deadline Actions
## Risks / Blockers / Dependencies
## Cross-functional Relationships
## Human Review Required
## JSON Output
Use templates/collaboration-status-card.md for the Markdown layout and templates/json-output-schema.md for the machine-readable contract.
Conflict detected; human review required consistently and add a matching human-review item.The example under examples/enterprise-ai-pilot/ is synthetic and redacted. It demonstrates extraction behavior only; it is not evidence of a production deployment or business outcome.