소스 정보
- 저장소
- EveryInc/symphony-thumbtack
- 최근 소스 활동
- 2026년 5월 6일 00:43
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 4
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/EveryInc/symphony-thumbtack --skill push명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Land a local PR by resolving conflicts and squash-merging the feature
Merge local `main` into the current branch and resolve merge conflicts
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 | push |
| description | Finalize the local feature branch and create or update a local PR record on |
There is no origin remote in this demo. "Push" means: make sure the branch
is in a clean reviewable state and record a local PR entry on the issue via
the tasks CLI so the human reviewer can drag the issue to Merging when
ready.
commit skill).{{ issue.identifier }}
for the agent that invoked you, but you can also re-read it from the
workpad).symphony/<identifier> — that's what the
after_create hook set up.Identify branch: branch=$(git branch --show-current).
Verify the working tree is clean and committed:
git status --porcelain
If anything is unstaged, commit it first via the commit skill.
Resolve the issue identifier. If your branch is named symphony/eng-3,
the identifier is the suffix uppercased: ENG-3. If you're unsure, check
the workpad header you stamped earlier.
Build the PR body. If the workpad has a clean summary, reuse it; otherwise write a concise outcome-focused note covering:
tasks://{{ issue.identifier }})Write it to a file:
cat > /tmp/pr_body.md <<'EOF'
## What
...
## Why
tasks://IDENT — see issue body.
## How
...
## Validation
...
EOF
Check whether a local PR already exists for this issue:
tasks pr-view IDENT --json
null or (no PR) — create one:
tasks pr-create IDENT \
--branch "$branch" \
--title "<clear PR title>" \
--body-file /tmp/pr_body.md \
--label symphony
OPEN — update it in place:
tasks pr-update IDENT \
--title "<clear PR title>" \
--body-file /tmp/pr_body.md \
--label symphony
MERGED or CLOSED — that PR is final. Create a fresh one
(the tasks CLI will refuse to create over an OPEN PR but accepts a new
one over a closed/merged one):
tasks pr-create IDENT \
--branch "$branch" \
--title "<clear PR title>" \
--body-file /tmp/pr_body.md \
--label symphony
Confirm the local PR is recorded:
tasks pr-view IDENT
Capture the PR number — it's pr.number in the JSON output.
The branch lives only on this machine. Do NOT call git push and do NOT
call gh — neither will work. The branch is the artifact; the local PR
record points at it.
git push, gh pr ..., or any remote-touching command. There
is no remote.--force anything; there's nothing to force against.pr field
is the canonical view, accessible via tasks pr-view IDENT.