تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:٠
forks:٠
updated:٣ أبريل ٢٠٢٦ في ١٣:٠٨
SKILL.md
| name | reporting |
| description | Generate individual employee reports and session summary reports. |
Generate structured reports from evaluation scores.
To generate a report for one employee:
data/evaluations/<session-id>/employees.yamldata/evaluations/<session-id>/scores/<slugified-name>.yamlBuild a JSON report with:
employee: name and masked phone number (show only last 4 digits,
e.g., +336***5678)training_name: from the manifeststatus: the employee's current statusoverall_score: from the score file (null if not completed)nudges_sent: number of nudge attemptsconcepts: array of per-concept scores with evidence, quotes, and
follow_up flagflags: list of concepts scored weak or partial, formatted as
"[concept]: [score] understanding, recommend follow-up"completed_at: timestamp (null if not completed)For non-completed employees (unresponsive, delivery_failed, in_progress):
Write the report to data/reports/<session-id>/<slugified-name>.json.
To generate a summary for an entire session:
data/evaluations/<session-id>/employees.yaml for all statusesdata/evaluations/<session-id>/scores/Build a JSON summary with:
session_id, training_name, statusemployee_count: total employeescompletion_rate: percentage of employees with status "completed"employees: array of per-employee rows with name, status,
overall_score, concept_scores (dict of concept name → score),
and flagsconcept_summary: for each concept, count of strong/partial/weak/
not_assessed across all completed employeessession_flags: list concepts where any employee scored weak,
formatted as "[concept]: N employee(s) scored weak"Write the summary to data/reports/<session-id>/summary.json.
Always mask phone numbers in reports:
+XXX***XXXX (e.g., +336***5678)