Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

positron-intake-rotation正电子吸入旋转

Agent Skill

positron-intake-rotation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,285

周安装

53

GitHub Stars

3,994

下载量

420
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:positron-intake-rotation(正电子吸入旋转)
来源仓库:https://github.com/posit-dev/positron
仓库路径:skills/positron-intake-rotation
安装命令:
npx skills add https://github.com/posit-dev/positron --skill positron-intake-rotation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/posit-dev/positron --skill positron-intake-rotation

简介

positron-intake-rotation 用于查找、检索和筛选相关信息,支持在多种 AI 宿主环境中快速定位目标内容。

  • 适用于需要基于关键词或任务场景进行信息聚合的检索场景。
  • 通过 npx skills add 命令从官方 GitHub 仓库安装并调用。
  • 安装前应核实权限范围、项目维护状态及潜在的文件或网络访问行为。
  • 建议参考原始 SKILL.md 和 README 文档以确认具体功能边界和使用限制。

SKILL.md

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 gh commands 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:

  1. scripts/fetch_intake_issues.sh - List open issues without status (the intake queue)
  2. scripts/fetch_discussions.sh - List recent open discussions needing attention
  3. scripts/fetch_labels.sh - Show all available repository labels for categorization
  4. scripts/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:

  1. references/intake_workflow.md - Complete workflows for handling issues, discussions, and support tickets
  2. references/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:

  1. Check for new items

- Run scripts/fetch_intake_issues.sh to see issues without status - Run scripts/fetch_discussions.sh to see recent discussions - Check Support Tickets in Jira

  1. 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)

  1. 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

  1. Recommend categorization and organization

- Run scripts/fetch_labels.sh to 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 gh commands for user to execute manually

  1. Draft response for user review

- Consult references/response_examples.md for 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

  1. 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:

  1. Search for duplicates using scripts/search_related.sh
  2. Suggest labels (area, "Bug" type) for user to apply
  3. Recommend setting status to "Triage"
  4. Draft response thanking reporter and acknowledging the issue

If incomplete:

  1. Draft message thanking the reporter
  2. Include specific questions about missing information
  3. Suggest referencing the bug report template if helpful
  4. Advise keeping issue open until information is provided

Refer to references/intake_workflow.md for detailed bug handling workflows.

Feature Requests

For feature requests:

  1. Draft message thanking the user for the suggestion
  2. Search for existing related feature requests
  3. If duplicate, draft message linking to existing issue (user closes manually)
  4. If new, suggest labels and recommend adding to backlog
  5. Draft message setting realistic expectations about prioritization

Discussions

For discussions:

  1. Determine discussion type (question, idea, bug report, announcement)
  2. 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

  1. Review ticket context in Jira
  2. Search for related public issues
  3. Draft response in Jira (not publicly) for user to post
  4. Recommend creating sanitized public issue if needed
  5. Suggest linking between ticket and issue

Security Issues

If an issue describes a security vulnerability:

  1. Do NOT discuss details publicly
  2. Draft message asking reporter to email security@posit.co
  3. Recommend closing public issue with note about private reporting (user closes manually)
  4. 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

Workflow Summary

Daily Intake (Assistant Mode - Draft & Recommend):
1. Fetch new items (scripts/fetch_intake_issues.sh, scripts/fetch_discussions.sh)
2. Review and assess each item
3. Search for related content (scripts/search_related.sh)
4. SUGGEST labels and categorization (scripts/fetch_labels.sh)
5. DRAFT response (references/response_examples.md) for user review
6. PREPARE gh commands for user to execute
7. RECOMMEND setting status to "Triage" (user executes)
8. ADVISE on follow-through or handoff

Remember: The goal is to ASSIST the user with timely response and actionable
organization. NEVER execute GitHub modification commands directly - always
present drafts and recommendations for the user to review and execute manually.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.14%
按下载量换算114

windsurf

24.05%
按下载量换算101

trae

16.16%
按下载量换算68

OpenCode

10.76%
按下载量换算45

Codex

7.46%
按下载量换算31

Antigravity

3.53%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/posit-dev/positron --skill positron-intake-rotation;npx skills add posit-dev/positron --skill "positron-intake-rotation" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills