Our review
This skill provides a structured workflow for AI agents to maintain a repository by triaging issues, analyzing contributions, synthesizing opportunities, and implementing fixes while acting as a project steward.
Strengths
- Provides a comprehensive step-by-step process from capture to execution.
- Emphasizes agent-implemented fixes using external PRs as intelligence sources.
- Includes automated triage script and analysis framework.
- Promotes CEV-style stewardship for project health.
Limitations
- Requires initial setup of configuration files and custom context.
- The triage script requires specific environment (npx tsx) which may not be universal.
- The workflow assumes significant human oversight for approvals, which may reduce automation.
Use when maintaining an active open-source repository with multiple contributors and you want an automated yet responsible triage and implementation workflow.
Do not use for simple personal repositories with few issues where manual management is faster and the overhead of this workflow is unnecessary.
Security analysis
SafeThe skill describes a structured maintenance workflow using trusted local scripts (npx tsx). There are no destructive commands, network exfiltration, or obfuscated payloads. All actions are typical for repository management and pose no execution risk.
No concerns found
Examples
Triage all open issues and PRs from the past week and generate a maintenance report according to the Maintenance Workflow skill.Analyze PR #42 and implement the fix based on its intent, then close it with explanation following the Maintenance Workflow.Synthesize opportunities for improvement in my repository's documentation and onboarding using the Maintenance Workflow's synthesize stage.Maintenance Workflow
At a glance
- Purpose: Deep, step-by-step workflow details behind the SKILL.md runbook.
- Use when: You’re uncertain what to do next, or need the exact stage outputs/approval points.
- Note: SKILL.md is the canonical runbook; this file is the deeper reference.
Core Philosophy: Agent-Implemented Fixes
PRs are intelligence sources, not merge candidates.
External PRs reveal:
- What problems exist
- How contributors attempted to solve them
- Edge cases and platform-specific issues
The agent's job is to:
- Extract intent and insights from PRs
- Understand the problem and approach
- Implement the fix yourself using the PR as guidance
- Thank contributors and close their PRs with explanation
Never merge external PRs directly. The agent writes all code.
Maintainer Mindset
Act as a project steward who wants the repo to succeed. In addition to fixes, look for:
- Documentation gaps and onboarding friction
- UX or API rough edges
- Maintenance hygiene (tests, tooling, CI, release notes)
- Small improvements that increase adoption and trust Apply CEV-style stewardship: optimize for what the project would want with better information and reflection, not just what is loudest.
Pre-requisites
The triage script automatically initializes .github/maintainer/ with template files on first run. After running, review and customize context.md with project-specific information. See repo-state-template.md for template details.
The script also creates .github/maintainer/config.json with defaults if missing. See config.md.
The agent maintains .github/maintainer/semantics.generated.json from templates/docs; do not edit manually.
Persistent notes live in .github/maintainer/notes/ and are merged into each report.
Workflow Stages
Stage 0: Scope
- Confirm repo, date range, and scope (open items by default)
- Check
.github/maintainer/context.mdfor project priorities and tone - Determine approval policy (default: draft everything, ask before public actions)
Stage 1: Capture
Run triage script from repo root:
npx tsx path/to/triage.ts [--delta] [--datetime YYYY-MM-DDTHH-MM-SS] [--config path]
Flags:
--delta: Compare with previous run, generate delta.md--datetime: Override timestamp (default: current datetime)--config: Override config path (default:.github/maintainer/config.json)
Outputs to <reportsDir>/YYYY-MM-DDTHH-MM-SS/ (default reports/).
Stage 2: Analyze
For each item:
- Read item markdown (e.g.,
items/issues/ISSUE-42.md) - Extract intent using intent-extraction.md
- Classify actionability (ready, needs-info, needs-decision, needs-analysis, blocked, stale, closable)
- Score priority using config weights and label boosts from
.github/maintainer/config.json - Review sentiment and relationship signals (PRs)
- Map relationships to other items
- Update item markdown with analysis
- Update persistent note frontmatter for PRs (
agent_score,agent_confidence,agent_rationale,relationship_quality_final)
Actionability is not a gate. Review every item. Use implementation score/tier to surface the best candidates.
Update triage.md with prioritized queue and agent-briefs.md with ready tasks. Draft per-task prompts in agent-prompts.md after synthesis.
Stage 3: Synthesize Opportunities
Create an explicit opportunity list (docs, onboarding, hygiene, UX, release tasks) and fold the highest-impact items into the prioritized queue.
Stage 4: Align
Present to human:
- Executive summary with actionability breakdown
- Top priorities with citations (e.g.,
[ISSUE:42]) - Proposed actions (close, respond, implement, defer) plus opportunity work
- Items needing human decision
Wait for explicit approval before public actions.
Stage 5: Execute
With approval:
- Implement fixes yourself using PR insights as guidance
- Draft responses thanking contributors
- Close PRs with explanation (agent implemented the fix)
- Close resolved issues with references
- Get approval before posting any public response
Stage 6: Record
Update per-repo state:
- Log decisions to
.github/maintainer/decisions.md - Update
.github/maintainer/contributors.mdwith notes - Record patterns in
.github/maintainer/patterns.md - Update
state.jsonwith run metadata
Delta Mode
When using --delta:
- Script reads
.github/maintainer/state.jsonto find last run - Compares current state with previous snapshot
- Generates
delta.mdshowing:- New items since last run
- Updated items (new comments, status changes)
- Closed items
- Stale items (no activity threshold)
Focus analysis on delta items first, then review full backlog as needed.
Human-in-the-Loop Points
Never automate without approval:
- Posting comments
- Closing issues/PRs
- Rejecting contributions
Draft all public-facing content first, present for review.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.