ワンクリックで
nvim-config
Apply Neovim configuration conventions for this dotfiles repo
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Apply Neovim configuration conventions for this dotfiles repo
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Write documentation consumed by LLM agents — AGENTS.md, skill files, .ai/ plans, and agent instructions
Keep DESIGN.md and plan docs synchronized with implementation decisions across repositories
Recall prior work from local session stores (opencode SQLite + Claude Code JSONL)
Draft and create pull requests using the repository's conventions and template
Write documentation for human readers — READMEs, design docs, protocol specs, ADRs, runbooks, and API guides
Iterate on Grafana dashboard JSON files. Use when the user wants to create, modify, or fix Grafana dashboards — including panel layout, queries, colors, variables, and styling.
| name | nvim-config |
| description | Apply Neovim configuration conventions for this dotfiles repo |
config/nvim/config/opencode/AGENTS.md for non-trivial changes.Run Neovim against workspace config from the repo root:
XDG_CONFIG_HOME="$PWD/config" nvim
Run with isolated workspace-local data/state/cache:
mkdir -p .tmp/xdg-data .tmp/xdg-state .tmp/xdg-cache
XDG_CONFIG_HOME="$PWD/config" \
XDG_DATA_HOME="$PWD/.tmp/xdg-data" \
XDG_STATE_HOME="$PWD/.tmp/xdg-state" \
XDG_CACHE_HOME="$PWD/.tmp/xdg-cache" \
nvim
Smoke-test startup without opening UI:
XDG_CONFIG_HOME="$PWD/config" nvim --headless "+qa"