Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

resolve-pegasus-conflicts解决飞马座冲突

Agent Skill

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

总安装

256

周安装

11

GitHub Stars

6

下载量

90
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:resolve-pegasus-conflicts(解决飞马座冲突)
来源仓库:https://github.com/saaspegasus/pegasus-skills
仓库路径:skills/resolve-pegasus-conflicts
安装命令:
npx skills add https://github.com/saaspegasus/pegasus-skills --skill resolve-pegasus-conflicts
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/saaspegasus/pegasus-skills --skill resolve-pegasus-conflicts

简介

查找、检索和筛选与飞马座冲突相关的信息。

  • 适合根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 需确认权限范围、维护状态,注意是否触发联网或文件读写。
  • resolve-pegasus-conflicts 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Resolve Pegasus Conflicts

Instructions

This skill helps users resolve merge conflicts when upgrading their SaaS Pegasus codebase. Most users will invoke this skill when they have merge conflicts after merging their main branch into a Pegasus upgrade branch, but you can also help run the merge process for them.

When invoked

First, determine what the user needs help with by checking their current state:

  1. Check git status: Run git status to see if there's an active merge in progress
  2. Ask the user: If unclear, ask whether they:

- Already ran git merge and need help resolving conflicts (most common) - Want you to run the merge process for them - Need help understanding which conflicts to prioritize

If there's an active merge with conflicts

The user has already run git merge <main branch> and has conflicts to resolve. Help them resolve the conflicts using these strategies:

Database Migrations

  • Strategy: Discard Pegasus migration changes, keep the user's changes
  • Reason: Migration files should be regenerated, not merged
  • Action: For conflicted migration files, accept theirs (the user's version from main), then run ./manage.py makemigrations after all conflicts are resolved
  • Git command: git checkout --theirs <migration-file> for each conflicted migration
  • djstripe migration references: If djstripe was upgraded, check if app migrations reference old djstripe migrations that no longer exist (see the "djstripe 2.10 upgrade" section below).

Dependency Lock Files (uv.lock, requirements.txt, package-lock.json)

  • Strategy: Accept Pegasus changes to lock files, merge source files manually
  • Source files: pyproject.toml, requirements.in, package.json
  • Lock files: uv.lock, requirements.txt, package-lock.json
  • Action:

1. For source files: Merge carefully, keeping customizations 2. For lock files: Accept ours (Pegasus version) with git checkout --ours <lock-file> and git add <lock-file> 3. Immediately regenerate: Run uv sync (for uv.lock) or npm install (for package-lock.json) right after resolving to ensure dependencies are properly synced

  • Important: Don't wait until post-merge steps - regenerate lock files immediately after resolving them

Static Assets (JavaScript/CSS bundles in static/)

  • Strategy: Delete and regenerate
  • Action: Accept either version (doesn't matter), will be rebuilt
  • Regenerate: Run npm run build or npm run dev after merge

Configuration Files (.env.example, settings files)

  • Strategy: Merge carefully, keep customizations
  • Action: Review both sides and combine them intelligently

Other Files

  • Strategy: Evaluate case-by-case
  • Action: Read both versions, understand the changes, merge intelligently

If running the full merge process

If the user wants you to run the merge:

  1. Fetch latest changes: Run git fetch to download the latest branches and commits from the remote (this ensures you can see the latest Pegasus upgrade branch)
  2. Find the latest upgrade branch: Run git branch -a to list all branches and look for the latest Pegasus upgrade branch (usually prefixed with pegasus-YYYY.MM, e.g., pegasus-2025.01)
  3. Check current branch: Run git status to see if they're already on the upgrade branch
  4. Checkout the upgrade branch: If not already on it, run git checkout <pegasus-branch-name>
  5. Pull latest changes: Run git pull to ensure the upgrade branch is up to date with the remote
  6. Identify main branch: Determine the main development branch (usually main or master)
  7. Run merge: Execute git merge <main-branch> to merge the main development branch into the Pegasus upgrade branch
  8. Handle conflicts: Follow the conflict resolution strategies above
  9. Dependency sync: Once conflicts have been resolved, you should re-sync dependencies.

- Python: uv sync - JavaScript: npm install

Post-merge steps

After all conflicts are resolved and the merge is complete, ask the user if they want to proceed with the post-merge steps or if they prefer to do them manually later.

If the user wants to proceed, run these steps:

  1. Build assets: npm run build (or npm run dev for development)
  2. Optional - Database migrations: Run ./manage.py makemigrations to create new migrations if needed
  3. Optional - Run migrations: ./manage.py migrate to apply database changes
  4. Optional - Run Tests: ./manage.py test to run the Python test suite
  5. Optional - Docker users: They can run make upgrade instead of manual steps above
  6. Push to GitHub: Run git push to push the merged changes to GitHub. Once pushed, the upgrade branch should be ready to merge into the main branch via pull request

If the user prefers to do these manually, inform them what steps they should take when ready.

Important reminders

  • Enable rerere: Suggest running git config rerere.enabled true to remember conflict resolutions for future upgrades
  • Never squash: When merging Pegasus PRs in GitHub, always use "Create a merge commit" (not squash or rebase)
  • Review changes: Always review what changed in the upgrade before committing
  • Always compare clean versions: When resolving non-trivial conflicts, use git show HEAD:<file> and git show main:<file> to see the clean versions from each branch, rather than trying to parse the conflict markers in place

Examples

Example 1: User has conflicts (most common)

User: "I have merge conflicts after upgrading Pegasus"
You: [Check git status, see conflicts in migrations and uv.lock]
You: "I can see you have conflicts in migrations and uv.lock. Let me help resolve these:
- For migrations: I'll keep your version and we'll regenerate them
- For uv.lock: I'll accept the Pegasus version and regenerate it
[Proceed to resolve conflicts]"

Example 2: User wants help with the merge

User: "Can you help me merge my changes into the Pegasus upgrade branch?"
You: "I can help with that. Let me:
1. Find the latest Pegasus upgrade branch
2. Check out that branch (or confirm you're already on it)
3. Merge your main development branch into it
4. Help resolve any conflicts that come up
[Proceed with finding branch and running git merge main]"

Edge cases

  • No pegasus upgrade branch: If the user doesn't have a pegasus-YYYY.MM branch, direct them to the Pegasus upgrade documentation
  • Too many conflicts: If there are dozens of conflicts across many files, suggest reviewing them in priority order (migrations first, then lock files, then configuration)
  • Custom modifications: Be conservative with user customizations - when in doubt, keep their changes and note what was different in Pegasus
  • Unfamiliar file types: If you encounter conflicts in files you're not sure how to handle, explain both sides of the conflict and ask the user which approach makes sense

djstripe 2.10 upgrade (Pegasus 2026.2.2+)

Pegasus 2026.2.2 upgraded djstripe from 2.9 to 2.10. This is a significant upgrade that requires extra steps beyond normal conflict resolution.

Migration squash

djstripe 2.10 squashed all previous migrations into 0001_initial and 0002_2_10. After resolving migration conflicts, check if any app migrations reference old djstripe migrations (e.g. ('djstripe', '0012_2_8')) that no longer exist. If so, update those dependencies to ('djstripe', '0001_initial'). Do NOT delete migrations — update their dependency references instead.

Fields moved to stripe_data

Many model fields were removed as DB columns and now read from the stripe_data JSONField via @property accessors. Key changes on Product: default_price, type are now properties. This means:

  • select_related("default_price") will fail — remove it, just use .get() directly
  • filter(), order_by(), values() on removed fields will fail — use stripe_data__<field> instead
  • Property access like product.default_price.id still works (it does a DB lookup from stripe_data)

Re-sync stripe data after migrating

After running ./manage.py migrate, run ./manage.py djstripe_sync_models Product Price to repopulate stripe_data for existing records. Without this, properties like product.default_price will return None because the old FK data isn't in stripe_data yet.

Obsolete workarounds

The RunSQL migration that altered djstripe_paymentintent.capture_method column length (workaround for dj-stripe#2038) is no longer needed. Clear its operations list (keep the migration file as a no-op for the dependency chain).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Cursor

27.96%
按下载量换算25

Claude Code

23.52%
按下载量换算21

Codex

16.13%
按下载量换算15

github-copilot

12.38%
按下载量换算11

moltbot

7.78%
按下载量换算7

windsurf

3.45%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills