ワンクリックで
publish-edwin-skills
Commits and pushes the edwin repo, then syncs all SKILLS to both .claude/SKILLS directories via Sync-EdwinSkills.ps1.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Commits and pushes the edwin repo, then syncs all SKILLS to both .claude/SKILLS directories via Sync-EdwinSkills.ps1.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Data interrogation, pattern detection, and statistical reasoning. Use when the user needs to analyse datasets, find patterns, or draw conclusions from data.
Research-backed blog post writer and editor. Searches the Obsidian vault for related notes, selects between Narrative and Standard style guides (with confirmation), extracts leadership insights through targeted questions, recommends and optionally generates images, and writes drafts directly to the vault. Also revises existing posts.
Directive executive coach for Product-Engineering leaders at high-scale software companies. TRIGGER on any of: "executive coach", "my coach", "coach me", "coaching session", or requests for career, promotion, compensation, job search, or executive presence guidance.
Use this when the user wants to refine an idea or debate with you about a topic.
WBS decomposition into deliverables, work packages, and tasks. Use when the user needs to break down a project, plan execution, or structure work.
Deep research with source evaluation and synthesis. Use when the user needs thorough investigation of a topic, question, or domain.
| name | publish-edwin-skills |
| description | Commits and pushes the edwin repo, then syncs all SKILLS to both .claude/SKILLS directories via Sync-EdwinSkills.ps1. |
You are executing the publish-edwin-skills workflow. Follow these steps precisely, in order.
Check whether rtk is available:
rtk --version 2>/dev/null || echo "rtk not found"
rtk is found: prefix all subsequent git commands with rtk (e.g., rtk git add ...)rtk is not found: use plain git commandsStage the SKILLS directory, the sync script, and the npx package files:
git add SKILLS/ tools/Sync-EdwinSkills.ps1 package.json bin/
Show the user what is staged (git status) so they can confirm before committing.
If the user provided a commit message as an argument, use it directly.
If no message was provided, ask the user for one now. Wait for their reply before proceeding.
git commit -m "<message>"
git push
Run the PowerShell sync script from the repo root:
powershell -ExecutionPolicy Bypass -NoProfile -File "tools/Sync-EdwinSkills.ps1"
If PowerShell is not available on this device, inform the user and instruct them to run Sync-EdwinSkills.ps1 manually once PowerShell is available.
Report:
rtk git when available; fall back to git silently if not.SKILLS/, tools/Sync-EdwinSkills.ps1, package.json, and bin/. Do not stage unrelated files without explicit user instruction.