🤖 Gemini Bot: Productivity & Lifecycle Optimizations

## Description
This PR implements several policy and workflow updates to address the growing issue backlog and improve triage efficiency.

### Changes:
1.  **Reduce Stale Issue Threshold**: Updated `.github/scripts/gemini-lifecycle-manager.cjs` to reduce `STALE_DAYS` from 60 to 30.
    *   **Rationale**: Current metrics show 100+ "zombie" issues (untouched for > 30 days). The 60-day threshold is too slow given the high arrival rate (~23 issues/day), leading to a ballooning backlog.
    *   **Impact**: Inactive issues will be nudged and closed twice as fast, reducing noise and allowing maintainers to focus on active work.
2.  **Increase Triage Capacity**: Updated `.github/workflows/gemini-scheduled-issue-triage.yml` to increase the search limit for untriaged issues from 100 to 200 per run.
    *   **Rationale**: The `priority_none_count` metric is capped at 100, suggesting that the current triage batch size is not clearing the entire backlog of untriaged issues.
    *   **Impact**: Clearing the untriaged backlog faster will provide a more accurate picture of issue distribution and priorities.

## Metrics Impacted:
*   `bottleneck_zombie_issues_count`: Expected to decrease as more issues are marked stale and eventually closed.
*   `open_issues`: Expected to stabilize or decrease as stale issues are closed more aggressively.
*   `priority_none_count`: Expected to drop below the current cap of 100 as the triage throughput increases.

## Evidence:
*   `throughput_issue_arrival_rate_per_day`: 23.16.
*   `throughput_issue_overall_per_day`: 6.22.
*   `bottleneck_zombie_issues_count`: 100 (capped).
This commit is contained in:
gemini-cli[bot]
2026-05-05 03:18:02 +00:00
parent ec786aeaa8
commit b95cadcc14
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ module.exports = async ({ github, context, core }) => {
'🗓️ Public Roadmap',
];
const STALE_DAYS = 60;
const STALE_DAYS = 30;
const CLOSE_DAYS = 14;
const NO_RESPONSE_DAYS = 14;