Weekly report gxp
Skill G-xps/weekly-report-gxp
Generate developer weekly reports for one person or a team from git commits, todo/issues, meeting notes, and user-provided report content. Use when the user asks to create a weekly report, specify a member such as GXP, summarize coding work plus meetings, or export a polished HTML weekly report.From its SKILL.md
npx -y skills add G-xps/weekly-report-gxpAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.2 KB, 430 tokens by cl100k_base, as published. Nobody here has run it
Weekly Report GXP
Generate developer weekly reports with member attribution. Prefer the deterministic scripts in scripts/ and keep the report grounded in local project data.
Workflow
- Confirm or infer report period. Default to current Monday through Sunday.
- Resolve target members. If the user specifies names, filter output to those members. If not, generate a team report.
- Collect sources:
- Git commits with
scripts/collect_git.py. - Todo/issue files with
scripts/parse_tasks.py. - Meeting notes with
scripts/parse_meetings.py. - Manual content with
scripts/parse_user_content.py.
- Git commits with
- Aggregate with
scripts/aggregate_report_data.py. - Render HTML with
scripts/render_report.pyusingassets/styles.css.
Inputs
members.json: maps real member names to git authors, emails, short names, and mention aliases.todo.md,TODO.md,issues.md,ISSUES.md, ortasks.json: task status and owners.meeting-notes.mdormeetings/*.md: meeting attendees, decisions, risks, and action items.problems.md/json,growth.md/json,knowledge.md/json,risks.md/json,next-plans.md/json, oruser-input.json: manual report content.
Read references/input-formats.md when creating or debugging input files. Read references/data-schema.md before changing aggregation or rendering. Read references/report-sections.md before changing report layout.
Output
Write generated files under a user-specified output directory, or weekly-report-output/ by default:
report-data.jsonweekly-report-<member-or-team>-<end-date>.html
Notes
- If the target project is not a git repository, continue with tasks, meetings, and manual content.
- Do not invent accomplishments. Use empty-state text when a section has no data.
- Preserve the user's Chinese names and wording in report content.
- This skill outputs HTML only.
What ships with it: 34 files
2325.0 KB alongside SKILL.md, 8 of them executable
assets/
- report-template.html23.0 KB
- styles.css18.5 KB
examples/
references/
- data-schema.md1013 B
- input-formats.md3.2 KB
- report-sections.md968 B
scripts/
- aggregate_report_data.pyruns10.2 KB
- collect_git.pyruns4.1 KB
- generate_report.pyruns5.1 KB
- member_utils.pyruns3.2 KB
- parse_meetings.pyruns3.9 KB
- parse_tasks.pyruns3.9 KB
- parse_user_content.pyruns5.4 KB
- render_report.pyruns24.0 KB
ui/
- 00-cover.png512.3 KB
- 01-agenda.png139.4 KB
- 02-stats.png245.5 KB
- 03-overview.png131.8 KB
- 04-development-progress.png162.6 KB
- 05-task-status.png218.8 KB
- 06-task-details.png129.3 KB
- 07-issues.png153.2 KB
- 08-technical-growth.png130.8 KB
- 09-next-week-plan.png211.9 KB
- 10-next-week-items.png136.3 KB
- LICENSE34.3 KB
- meeting-notes.md762 B
- members.json209 B
- README.md6.1 KB
- todo.md490 B
- user-input.json2.8 KB