positron-intake-rotation
This skill should be used when handling issue intake rotation duties for the Positron repository. It provides workflows for reviewing and organizing new issues, responding to discussions, handling support tickets, and searching for related content. Use this skill when on intake rotation duty, when helping someone with intake tasks, or when learning the intake rotation process.
Install
mkdir -p .claude/skills/positron-intake-rotation && curl -L -o skill.zip "https://mcp.directory/api/skills/download/2313" && unzip -o skill.zip -d .claude/skills/positron-intake-rotation && rm skill.zipInstalls to .claude/skills/positron-intake-rotation
About this skill
Positron Intake Rotation
Overview
This skill provides comprehensive guidance for handling issue intake rotation for the Positron IDE repository. Intake rotation is a weekly assignment (Monday-Friday) where team members review and respond to new issues, discussion posts, and support tickets to ensure timely responses and actionable issue tracking.
The goal is to respond to new items within approximately one business day and ensure all issues have the details required to be actionable.
🚨 CRITICAL: Manual Action Protocol
This skill assists with intake rotation but NEVER executes GitHub actions directly.
All GitHub interactions must be performed manually by the user:
- ✅ Draft responses for review before posting
- ✅ Suggest labels and categorization
- ✅ Prepare commands for user to execute
- ✅ Search and analyze issues/discussions
- ❌ NEVER post comments or responses directly
- ❌ NEVER edit issues, add labels, or change status
- ❌ NEVER close issues or create new ones
- ❌ NEVER execute
ghcommands that modify GitHub state
Workflow: Analyze → Recommend → Draft → User executes manually
When to Use This Skill
Use this skill when:
- Currently on intake rotation duty
- Helping another team member with intake tasks
- Learning the intake rotation process
- Reviewing backlog items without status
- Responding to GitHub discussions
- Handling customer support tickets
- Searching for duplicate or related issues
Quick Start
Essential Scripts
Four shell scripts are provided to streamline intake tasks:
scripts/fetch_intake_issues.sh- List open issues without status (the intake queue)scripts/fetch_discussions.sh- List recent open discussions needing attentionscripts/fetch_labels.sh- Show all available repository labels for categorizationscripts/search_related.sh <query>- Search for related issues and discussions
All scripts support --json flag for programmatic use. Run scripts from the skill directory.
Essential References
Two comprehensive reference documents provide detailed workflows:
references/intake_workflow.md- Complete workflows for handling issues, discussions, and support ticketsreferences/response_examples.md- Response patterns and examples from experienced team members
Load these references when drafting responses or handling complex scenarios.
Core Workflow
Daily Intake Process
Follow this process each day during rotation:
-
Check for new items
- Run
scripts/fetch_intake_issues.shto see issues without status - Run
scripts/fetch_discussions.shto see recent discussions - Check Support Tickets in Jira
- Run
-
Review each item systematically
- Read the full description and context
- Assess completeness (are system details, reproduction steps, etc. provided?)
- Determine item type (bug, feature request, question, duplicate)
-
Search for related content
- Use
scripts/search_related.sh "<keywords>"to find similar issues - Check documentation at https://positron.posit.co/welcome.html
- Look for existing discussions on the topic
- Use
-
Recommend categorization and organization
- Run
scripts/fetch_labels.shto see available labels - Suggest appropriate labels (area, type, priority) for user to apply
- Recommend setting status to "Triage" once organized
- Suggest adding to "Positron Backlog" project if applicable
- Prepare
ghcommands for user to execute manually
- Run
-
Draft response for user review
- Consult
references/response_examples.mdfor patterns - Draft welcoming message thanking the contributor
- Include clarifying questions if information is missing
- Suggest workarounds or links to related content when available
- Set realistic expectations about next steps
- Present draft to user for review before posting
- Consult
-
Recommend follow-through actions
- Suggest tagging relevant team members if specialized knowledge is needed
- Draft duplicate closure message with reference to canonical issue
- Recommend converting discussions to issues when appropriate
- Advise continuing follow-up even after rotation ends, or explicit handoff
Using GitHub CLI
Prefer using GitHub CLI (gh) over other methods for consistency. All commands below are for the USER to execute manually.
Read-only commands (can be executed to gather information):
# View issue with all comments
gh issue view <number> --repo posit-dev/positron --comments
# Search issues
gh issue list --repo posit-dev/positron --search "<query>" --state all
# View discussion
gh api graphql -f query='...' # (see scripts for examples)
Modification commands (prepare for user, NEVER execute directly):
# Add labels - DRAFT THIS COMMAND for user to run
gh issue edit <number> --repo posit-dev/positron --add-label "area: console,Bug"
# Close as duplicate - DRAFT THIS COMMAND for user to run
gh issue close <number> --repo posit-dev/positron --comment "Closing as duplicate of #<canonical-number>"
Important: Present modification commands to the user in a code block with clear instructions to review and execute manually.
Handling Different Scenarios
Bug Reports
For bug reports, assess completeness:
Complete bug report:
- System details (Positron version, OS, commit hash)
- Clear reproduction steps
- Expected vs. actual behavior
- Error messages or screenshots
If complete:
- Search for duplicates using
scripts/search_related.sh - Suggest labels (area, "Bug" type) for user to apply
- Recommend setting status to "Triage"
- Draft response thanking reporter and acknowledging the issue
If incomplete:
- Draft message thanking the reporter
- Include specific questions about missing information
- Suggest referencing the bug report template if helpful
- Advise keeping issue open until information is provided
Refer to references/intake_workflow.md for detailed bug handling workflows.
Feature Requests
For feature requests:
- Draft message thanking the user for the suggestion
- Search for existing related feature requests
- If duplicate, draft message linking to existing issue (user closes manually)
- If new, suggest labels and recommend adding to backlog
- Draft message setting realistic expectations about prioritization
Discussions
For discussions:
- Determine discussion type (question, idea, bug report, announcement)
- Draft appropriate response:
- Questions: Provide answer or link to docs
- Ideas: Acknowledge and link to related issues
- Bug reports: Ask user to create formal issue
- Off-topic: Politely redirect
Recommend converting discussions to issues when they contain clear, actionable bug reports or feature requests (user performs conversion manually).
Support Tickets
Support tickets require special handling:
⚠️ CRITICAL: Never mention customer names in public issues or discussions
- Review ticket context in Jira
- Search for related public issues
- Draft response in Jira (not publicly) for user to post
- Recommend creating sanitized public issue if needed
- Suggest linking between ticket and issue
Security Issues
If an issue describes a security vulnerability:
- Do NOT discuss details publicly
- Draft message asking reporter to email security@posit.co
- Recommend closing public issue with note about private reporting (user closes manually)
- Advise alerting team privately
Response Guidelines
Tone and Style
Be welcoming: Thank contributors for their time and effort
Be clear: Use simple language, explain technical terms, provide examples
Be helpful: Offer workarounds, link to resources, provide next steps
Be realistic: Don't overpromise timelines or solutions
Be professional: Remain calm and constructive, even with frustrated reporters
Learning from Examples
To see examples from experienced team members:
# Find issues commented on by key team members
gh search issues --repo posit-dev/positron --commenter juliasilge --limit 20
gh search issues --repo posit-dev/positron --commenter jmcphers --limit 20
# View specific issue with comments
gh issue view <number> --repo posit-dev/positron --comments
Pay special attention to responses by juliasilge and jmcphers for tone and approach guidance.
Load references/response_examples.md for detailed response patterns and anti-patterns.
Important Reminders
Team Collaboration
Don't try to solve everything alone. Reach out to team members when:
- The issue requires specialized domain knowledge
- You're unsure how to categorize or prioritize
- The issue describes complex technical problems
- You need help understanding the user's concern
Handoff Protocol
If handling an item extends beyond your rotation week:
- Typically: Continue following up yourself to get to triage
- If not possible: Explicitly communicate handoff to next person on rotation
- Don't drop items without clear handoff
Documentation
If recurring issues or common questions emerge:
- Consider creating FAQ entries
- Suggest documentation improvements
- Note patterns for team discussion
Quick Reference Links
- Issue Intake Board - Issues without status
- Discussions - Community discussions
- Support Tickets - Customer support (Jira)
- [Rotation Schedule](https://docs.google.com/spreadsheets/d/1JtE6NpwCx7x9ni-I_KYwCba63wo6LeJ6Z2CyYx_3Qss/edit?usp
Content truncated.
More by posit-dev
View all skills by posit-dev →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversUnlock seamless Figma to code: streamline Figma to HTML with Framelink MCP Server for fast, accurate design-to-code work
Official Laravel-focused MCP server for augmenting AI-powered local development. Provides deep context about your Larave
Safely connect cloud Grafana to AI agents with MCP: query, inspect, and manage Grafana resources using simple, focused o
Empower your workflows with Perplexity Ask MCP Server—seamless integration of AI research tools for real-time, accurate
Boost your productivity by managing Azure DevOps projects, pipelines, and repos in VS Code. Streamline dev workflows wit
Boost AI coding agents with Ref Tools—efficient documentation access for faster, smarter code generation than GitHub Cop
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.