소스 정보
- 저장소
- danielbuechele/goofy
- 최근 소스 활동
- 2026년 4월 22일 22:14
- 감지된 SKILL.md 언어
- 영어
- 스타
- 986
- 포크
- 112
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/danielbuechele/goofy --skill publish명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | publish |
| description | Build, sign, notarize, and release a new version of Goofy |
| user_invocable | true |
This skill builds, signs, notarizes, and releases a new version of the Goofy macOS app.
notarytool-profile must exist. If not, the user needs to run:
xcrun notarytool store-credentials "notarytool-profile" --apple-id "EMAIL" --team-id K5C6E7A2D6 --password "APP_SPECIFIC_PASSWORD"
gh CLI must be authenticated with GitHubRun each step sequentially. Stop and report errors if any step fails.
On failure after step 1 and before step 6 (commit): revert the version bump so the next attempt starts from a clean state. The bump only touches goofy.xcodeproj/project.pbxproj, so:
cd /Users/danielbuechele/goofy
git checkout -- goofy.xcodeproj/project.pbxproj
Do not revert after step 6 — at that point the bump is committed and tagged, and recovery is different.
cd /Users/danielbuechele/goofy
VERSION_OUTPUT=$(bash scripts/increment_build.sh)
echo "$VERSION_OUTPUT"
Parse the output to extract the new version. The script prints Build NNN, version X.Y.Z.
Extract the version (e.g. 4.0.155) — you will need it for all subsequent steps. Store it as NEW_VERSION.
cd /Users/danielbuechele/goofy
xcodebuild archive \
-project goofy.xcodeproj \
-scheme goofy \
-configuration Release \
-archivePath build/Goofy.xcarchive \
CODE_SIGN_IDENTITY="Developer ID Application" \
CODE_SIGN_STYLE=Manual \
DEVELOPMENT_TEAM=K5C6E7A2D6 \
2>&1 | tail -30
Verify the output ends with ** ARCHIVE SUCCEEDED **.
cd /Users/danielbuechele/goofy
xcodebuild -exportArchive \
-archivePath build/Goofy.xcarchive \
-exportPath build/export \
-exportOptionsPlist ExportOptions.plist \
2>&1 | tail -20
This produces build/export/Goofy.app.
Create a zip for notarization submission and submit it:
cd /Users/danielbuechele/goofy
(cd build/export && zip -r -y ../Goofy-notarize.zip Goofy.app)
xcrun notarytool submit build/Goofy-notarize.zip \
--keychain-profile "notarytool-profile" \
--wait
The --wait flag blocks until Apple finishes processing (typically 1-5 minutes). Verify the status is Accepted.
Staple the notarization ticket to the app, then create the release zip:
cd /Users/danielbuechele/goofy
xcrun stapler staple build/export/Goofy.app
(cd build/export && zip -r -y "../Goofy-${NEW_VERSION}.zip" Goofy.app)
Use zip -r -y (not ditto). Modern Xcode signing adds a sticky com.apple.provenance extended attribute to files in the bundle; ditto encodes those as ._* AppleDouble entries, and AppUpdater's /usr/bin/unzip then writes them as literal ._* files inside the installed bundle, which corrupts the code signature ("damaged" error). zip ignores xattrs entirely. The notarization ticket lives inside the bundle (Contents/CodeResources), so it survives.
Verify before releasing: extract the zip with /usr/bin/unzip to a temp dir and run codesign --verify --deep --strict on it. Must pass. If it reports "a sealed resource is missing or invalid", stop — the release will be broken.
Ask the user for confirmation before proceeding with this step.
cd /Users/danielbuechele/goofy
git add -A
git commit -m "v${NEW_VERSION}"
git tag "${NEW_VERSION}"
git push origin main --tags
This commits all changes (the version bump plus any other uncommitted work). The build/ directory is in .gitignore so it won't be included.
cd /Users/danielbuechele/goofy
gh release create "${NEW_VERSION}" \
"build/Goofy-${NEW_VERSION}.zip" \
--title "${NEW_VERSION}" \
--generate-notes
rm -rf /Users/danielbuechele/goofy/build/
Report the published version and the GitHub release URL to the user.
SOC 직업 분류 기준