ソース情報
- リポジトリ
- foeken/meeting-notes
- ソースの最終更新活動
- 2026年7月24日 07:15
- 検出された SKILL.md の言語
- 英語
- スター
- 7
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/foeken/meeting-notes --skill releaseコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | release |
| description | Build, sign, notarize, and publish a Meeting Notes release |
| argument-hint | VERSION BUILD [RELEASE_NOTES_FILE] |
| allowed-tools | Bash, Read, Glob, Grep |
Build, sign, notarize, and publish a release of Meeting Notes as a DMG with Sparkle auto-update support.
VERSION — Semantic version, e.g. 0.2.0BUILD — Integer build number, e.g. 2. Must increase with every release.RELEASE_NOTES_FILE — Optional Markdown file with release notes.Before running the release script, verify these prerequisites:
Clean checkout: git status --porcelain must be empty. Commit or stash everything first; the script commits the version bump and appcast itself.
notarytool keychain profile: Run xcrun notarytool history --keychain-profile "notarytool" 2>&1 | head -3 to check. If missing, tell the user to run:
xcrun notarytool store-credentials "notarytool" --apple-id APPLE_ID --team-id 6DA7MK99T2 --password APP_SPECIFIC_PASSWORD
Developer ID certificate: Run security find-identity -v -p codesigning | grep "Developer ID Application". Must show Andre Foeken (6DA7MK99T2).
Sparkle tools: Verify generate_appcast exists at .build/artifacts/sparkle/Sparkle/bin/. If missing, run swift package resolve first.
Sparkle signing key: generate_appcast reads the EdDSA private key from the login keychain under the account meeting-notes-menu. If it is missing, restore it from 1Password before releasing; never regenerate it, or existing installs cannot verify updates.
GitHub CLI: gh auth status must succeed for account foeken.
If all prerequisites pass, confirm with the user:
foeken/meeting-notes on GitHub and the appcast is committed to mainThen run the release script:
MEETING_NOTES_NOTARY_PROFILE=notarytool ./scripts/release.sh VERSION BUILD [RELEASE_NOTES_FILE]
The script runs these steps automatically:
CFBundleShortVersionString/CFBundleVersion in Resources/Info.plistMeeting Notes.app with Developer ID Applicationappcast.xml with an embedded, Sparkle-signed entrymainvVERSION with the DMG attachedReport the results to the user:
https://github.com/foeken/meeting-notes/releases/tag/vVERSIONhttps://raw.githubusercontent.com/foeken/meeting-notes/main/appcast.xmlswift package resolve so SPM fetches the Sparkle artifact containing generate_appcast.notarytool keychain profile and that the Developer ID certificate is valid.vVERSION release with --clobber; bump the version if that is not intended.meeting-notes-menu.scripts/release.sh — The release automation scriptResources/Info.plist — App version fields plus Sparkle config (SUFeedURL, SUPublicEDKey)appcast.xml — Sparkle feed, committed to main in this repo