بنقرة واحدة
build
Build loop: fix Xcode build errors iteratively until clean. Triggers: "build", "fix errors", "ビルドして", "エラー直して"
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Build loop: fix Xcode build errors iteratively until clean. Triggers: "build", "fix errors", "ビルドして", "エラー直して"
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Archive every page of a Microsoft Forms (Office 365, forms.office.com) survey/quiz/assignment as PDF and/or MHTML using a pre-saved logged-in browser session. MUST use when the user shares a forms.office.com URL and asks to save, archive, back up, download, PDF化, MHTML化, 手元に残す, or 問題文を保存. Auto-fills required fields only to traverse multi-page forms, and NEVER clicks Submit. Not for Google Forms (docs.google.com/forms) or generic web pages. Triggers: "Forms保存して", "フォームをPDF化", "フォームをアーカイブ", "office formsを保存", "MS Formsアーカイブ", "問題文を保存", "save forms as pdf", "archive ms forms", "forms-archive <URL>", "formsarchive", "/forms-archive".
Turn a rough product or tool idea into a researched, implemented, tested, reviewed, pushed, and documented result. Use for autonomous end-to-end work that must compare competitors, inspect the local environment, choose a proven stack, build the solution, clean up Git, and produce an HTML handoff. Reuses focused research, implementation, and review skills instead of replacing them. Triggers: "take this idea to production", "research and build this", "build and ship this", "idea to implementation" 日本語: 「このアイデアを形にして」「競合調査から実装までやって」「最後まで自律的に作って」「調査して作ってpushまでして」 NOT for a small isolated edit, research-only request, or review-only request.
Initialize or retrofit a project for this dotfiles agent workflow. Use when the user asks to run init, project init, create a flake, set up direnv, or generate CLAUDE.md/AGENTS.md for a repository.
定期実行のタスクトリアージ(朝のtriageと日中のmidday check)を固定フォーマットで生成する。scheduler や手動トリガーで、vault の Daily note・Times・observations と(接続可能なら)Linear/Google Calendar MCP から状況を集め、優先タスクと今日の推奨アクションを1本のnoteと1本のプレーンテキスト要約にまとめる。使うのは次の場合: 「トリアージして」「morning triage」「midday check」「定期チェック」「scheduled triage」「/scheduled-triage」。使わない場合: 単一タスクの詳細な計画立案(通常のプランニングを使う)、実装作業、Linear/Calendar が接続済みでライブなissue操作を伴う本格的なタスク管理。
セッションの内容をdocs/にドキュメント化。「ドキュメント化して」「まとめて」「記録して」「docsに残して」で自動実行。テンプレート指定可(ADR/research/guide/session-log)
Add a single SwiftUI UI component from ShipSwift recipes (animation, chart, alert, loading, input, etc.). Use when the user asks to add a ShipSwift component, "add a shimmer/chart/loading view", or wants a specific SwiftUI UI element backed by a ShipSwift recipe. Requires the shipswift MCP server. 日本語: 「ShipSwiftのコンポーネント追加」「シマー/チャート/ローディングを追加」「SwiftUI部品を入れて」
| name | build |
| description | Build loop: fix Xcode build errors iteratively until clean. Triggers: "build", "fix errors", "ビルドして", "エラー直して" |
エラーがなくなるまでビルド→修正を繰り返す。
xcodebuild -scheme <SCHEME> -destination 'generic/platform=iOS Simulator' build 2>&1 | tee /tmp/build.log
grep -E "error:|fatal error:" /tmp/build.log
| エラーパターン | 対処 |
|---|---|
Cannot find 'X' in scope | import 追加 or 型定義確認 |
Cannot convert value | 型変換を追加 |
Missing argument | 必須引数を追加 |
詳細なトラブルシューティング → references/troubleshooting.md