用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/EveryInc/symphony-thumbtack --skill pull命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Land a local PR by resolving conflicts and squash-merging the feature
Finalize the local feature branch and create or update a local PR record on
Use the local `tasks` CLI to read/write `tasks.json` — the offline-demo replacement for Linear. Covers reading issues, posting/editing comments, transitioning issue state, attaching local PRs, and creating follow-up issues. Use when working a ticket through Symphony in offline mode.
基于 SOC 职业分类
正在显示 SKILL.md
| name | pull |
| description | Merge local `main` into the current branch and resolve merge conflicts |
There is no remote in this demo. "Pull" here means: bring local main
commits into the current feature branch.
git config rerere.enabled true
git config rerere.autoupdate true
symphony/<identifier>), not on
main:
git branch --show-current
main into the current branch:
git -c merge.conflictstyle=zdiff3 merge main
git add <files>, git commit
(or git merge --continue).git diff --check.Note: git pull and git fetch origin will both fail in this demo because
there is no origin. Use git merge main directly.
git status, git diff --merge, and
git diff :1:path :2:path (base vs ours), git diff :1:path :3:path
(base vs theirs) for file-level views.merge.conflictstyle=zdiff3, conflict markers show: <<<<<<< ours,
||||||| base, ======= split, >>>>>>> theirs. Matching context near
the edges is trimmed automatically.ours/theirs only when one side should clearly win entirely.Default: don't. Make a best-effort decision, document the rationale in the merge commit, and proceed. Ask only when: