Team Lead Prompts
Team management, code reviews, sprint oversight, and workload balancing.
Team Overview
"Who are the members of
my-org/apiand their access levels?"
"Show me the activity of my team members this week"
{
"action": "list_project",
"project_id": "my-org/api",
"per_page": 50
}{
"action": "list_all_project",
"project_id": "my-org/api",
"per_page": 50
}Review Queue Management
"Show me all open MRs that haven't been reviewed yet"
"Which MRs have been open the longest?"
"List MRs with unresolved discussions"
{
"action": "list",
"project_id": "my-org/api",
"state": "opened",
"order_by": "created_at",
"sort": "asc",
"per_page": 20
}{
"action": "list",
"project_id": "my-org/api",
"state": "opened",
"wip": "yes",
"per_page": 20
}{
"action": "list",
"project_id": "my-org/api",
"state": "opened",
"author_username": "alice",
"per_page": 20
}Sprint Tracking
"What's the progress on milestone 'Sprint 14'?"
"Show me unfinished issues in the current sprint"
"How many issues were closed vs opened this week?"
{
"action": "issues",
"namespace": "my-org/api",
"milestone_id": "42",
"per_page": 50
}{
"action": "burndown",
"namespace": "my-org/api",
"milestone_id": "42",
"per_page": 20
}Team Member Management
"Add @bob as a developer to
my-org/api"
"Change @carol's role to maintainer"
{
"action": "add_to_project",
"project_id": "my-org/api",
"user_id": "42",
"access_level": 30
}{
"action": "update_project",
"project_id": "my-org/api",
"user_id": "42",
"access_level": 40
}Workload Analysis
"How many open MRs does each team member have?"
"Show me issues assigned to @alice that are overdue"
"List team members who haven't been assigned any issues this sprint"
Combine these queries to balance workload:
"List all open issues in Sprint 14 grouped by assignee"
"Show me MRs created this week per team member"
"Who has the most unresolved review comments?"
Code Review Delegation
"Assign @bob as reviewer on MR !42"
"Add @carol and @dave as reviewers for the API changes"
{
"action": "update",
"project_id": "my-org/api",
"merge_request_iid": "42",
"reviewer_ids": ["42", "43"]
}Weekly Reporting
Generate a weekly summary:
"How many MRs were merged this week in
my-org/api?""What issues were closed in the current milestone?"
"Show me pipeline success rate for the last 7 days"
"List any open blockers — issues with label
blocker"
Related
- Sprint Planning — Milestone management
- Code Review — Review workflows
- Issue Triage — Organizing issues
