Token导航 LogoToken导航TokenDH.com
前端设计可写文件github未标认证来源可访问clear审计通过

positron-pr-helper正电子公关助手

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

1,242

周安装

51

GitHub Stars

3,991

下载量

420
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/posit-dev/positron --skill positron-pr-helper

简介

positron-pr-helper 用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码。
  • 使用时需结合项目现有设计系统、路由和构建方式,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • 建议保持与项目技术栈的一致性,避免引入不兼容改动。

SKILL.md

Positron PR Helper

This skill helps you create comprehensive PR bodies for the posit-dev/positron repository with up-to-date e2e test tags fetched directly from the source of truth.

When to Use This Skill

Use this skill when:

  • Creating a new PR and need a well-structured body
  • Updating an existing PR body with the correct format
  • You need the current list of e2e test tags for QA notes
  • You want to ensure your PR body follows Positron conventions

Prerequisites

  • GitHub CLI (gh) installed and authenticated
  • Working in the Positron repository
  • Access to the repository's test-tags.ts file

Workflow

I'll guide you through creating a comprehensive PR body:

Step 1: Gather Context

First, I'll ask you:

  1. Issue number (if this PR addresses a specific issue)
  2. PR type (bug fix, feature, UI change, maintenance, etc.)
  3. Summary of what the PR does
  4. Screenshots needed? (for UI changes)
  5. Related PRs (e.g., in ark repository)

If you provide an issue number, I'll use gh issue view to fetch details and understand the context better.

Step 2: Fetch Current Test Tags

I'll dynamically fetch the current e2e test tags from test/e2e/infra/test-runner/test-tags.ts using our extraction script. This ensures we always have the complete, up-to-date list of tags including:

  • Feature tags (functionality-specific)
  • Platform tags (OS/environment control)
  • Performance tags
  • Special tags (critical, soft-fail)

Step 3: Generate PR Body

Based on the PR type and context, I'll create a structured PR body with:

  1. Opening Line

- "Addresses #[issue]." if applicable - Brief statement of what the PR does otherwise

  1. Description/Summary

- Concise explanation of changes - Technical context if needed - Related PRs referenced

  1. Screenshots (for UI changes only)

- Placeholder text or actual URLs if provided

  1. Release Notes

- New Features (if applicable) - Bug Fixes (if applicable) - User-facing descriptions

  1. QA Notes

- Relevant e2e test tags based on affected areas - Testing instructions - Code examples if helpful

Step 4: Output Options

Once the PR body is ready, you can choose:

  1. Copy to clipboard (Mac only) - I'll use pbcopy
  2. Update existing PR - I'll use gh pr edit
  3. Save to file - I'll write to a file of your choice
  4. Display only - I'll show it for manual copying

Helper Scripts

fetch-test-tags.sh

This script extracts and categorizes all test tags from the TypeScript enum:

# Usage:
./scripts/fetch-test-tags.sh [format]
# format: markdown (default), json, or list

The script:

  • Parses test-tags.ts without needing TypeScript compilation
  • Categorizes tags automatically (feature, platform, performance, special)
  • Outputs in multiple formats for different use cases
  • Runs quickly (<1 second)

PR Body Templates

I use different templates based on PR type:

Bug Fix Template

Addresses #[issue].

[2-3 sentences explaining the fix]

### Release Notes

#### New Features
- N/A

#### Bug Fixes
- [User-facing description] (#[issue])

### QA Notes

[relevant tags]

[Simple test instructions]

New Feature Template

Addresses #[issue].

### Summary
[1-2 paragraphs explaining the feature]
[Technical implementation notes if relevant]
[Related PRs if applicable]

### Release Notes

#### New Features
- [User-facing description] (#[issue])

#### Bug Fixes
- N/A

### QA Notes

[relevant tags]

[Detailed test steps with code examples]

Examples

Example 1: Bug Fix PR

Addresses #8930.

This PR fixes the Data Explorer scrollbars snapping back to 0 on Safari. The issue was caused by incorrect event handling in the virtual scrolling implementation.

### Release Notes

#### New Features
- N/A

#### Bug Fixes
- Fix Data Explorer scrollbars snapping back to 0 on Safari (#8930)

### QA Notes

@:data-explorer

Open a large data frame in Data Explorer on Safari and verify scrollbars can be dragged without snapping back.

Example 2: New Feature PR

Addresses #8484.

### Summary
Adds support for native DuckDB connections in the Connections Pane. Users can now inspect DuckDB databases directly without needing external tools. This implementation uses the native DuckDB Python API for better performance.

Related PR: posit-dev/ark#456 (adds DuckDB kernel support)

### Release Notes

#### New Features
- Added support for inspecting native DuckDB connections in the Connections Pane (#8484)

#### Bug Fixes
- N/A

### QA Notes

@:connections @:duck-db

1. Install DuckDB: `pip install duckdb`
2. Create a new DuckDB connection using the modal
3. Run the following to create test data:

conn.execute(""" CREATE TABLE employees ( id INTEGER, name VARCHAR, salary INTEGER ) """) conn.execute("INSERT INTO employees VALUES (1, 'Alice', 75000)")


1. Verify tables appear in the Connections pane

Tips

  • Be concise but complete - no flowery language
  • Use present tense ("fixes", "adds", "enables")
  • Include issue references in parentheses in release notes
  • Always include at least one e2e test tag in QA notes
  • For complex changes, numbered test steps are better
  • Keep release notes user-facing (avoid implementation details)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.5%
按下载量换算120

windsurf

24.3%
按下载量换算102

trae

16.23%
按下载量换算68

OpenCode

12.58%
按下载量换算53

Codex

7.92%
按下载量换算33

Antigravity

3.21%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills