skills/global-prompts-sync/SKILL.md
Synchronizes prompt files (agents, rules, commands) from the skill's prompts directory to both GitHub Copilot and OpenCode global configuration directories. Use when the user wants to update their AI editor prompt libraries.
npx skillsauth add atman-33/atman-workspace global-prompts-syncInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill synchronizes prompt files from the prompts/ directory to both GitHub Copilot and OpenCode global configuration directories:
global-prompts-sync/
├── SKILL.md
├── scripts/
│ └── sync_prompts.py
└── prompts/
├── agents/ # Agent files (*.agent.md for Copilot, *.md for OpenCode)
├── rules/ # Instruction files (*.instructions.md for Copilot, merged into AGENTS.md for OpenCode)
└── commands/ # Command files (*.prompt.md for Copilot, *.md for OpenCode)
All files are synced to:
/mnt/c/Users/<USERNAME>/AppData/Roaming/Code/User/prompts*.agent.md*.instructions.md*.prompt.mdFiles are synced to separate directories:
~/.config/opencode/agent/ or /mnt/c/Users/<USERNAME>/.config/opencode/agent/~/.config/opencode/AGENTS.md (merged from all rules files, front matter removed)~/.config/opencode/command/ or /mnt/c/Users/<USERNAME>/.config/opencode/command/To synchronize prompts to both GitHub Copilot and OpenCode:
python3 {path}/scripts/sync_prompts.py
The script will:
Run with specific targets:
# Sync to GitHub Copilot only
python3 scripts/sync_prompts.py --target copilot
# Sync to OpenCode only
python3 scripts/sync_prompts.py --target opencode
# Sync to both (default)
python3 scripts/sync_prompts.py
.md files to prompts/agents/.md files to prompts/rules/.md files to prompts/commands/The script will automatically handle naming conventions for each target editor.
For OpenCode, multiple rule files are merged into a single AGENTS.md file:
AGENTS.md is created in OpenCode's config directorytools
Zenn記事のMarkdown校正を行うスキル。記事を読み、Zenn独自記法の正確性・見出し構造・コードブロック・リンク・画像・テーブル・埋め込み・メッセージ/アコーディオン記法をチェックし、改善提案を行う。ユーザーが「Zenn記事を校正して」「Zennの記法をチェックして」「記事をレビューして」「Markdown確認して」と依頼した際に使用する。
tools
Develop React applications for VS Code Webview surfaces. Use when working on the `webview-ui` package, creating features, components, or hooks for VS Code extensions. Includes project structure, coding guidelines, and testing instructions.
testing
Best practices for reliable terminal command execution and output capture. Use this skill when running shell commands, especially in environments like WSL where output might be truncated or lost, to ensure results are properly captured and inspected.
databases
Supabaseデータベースマイグレーションの準備を行うスキル。バックアップの作成と差分マイグレーションファイルの生成を実施します。ユーザーが「マイグレーションを準備」「バックアップと差分を作成」「マイグレーションファイルを生成」などのリクエストをした際に使用します。