원클릭으로
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 직업 분류 기준
Draft and create pull requests using the repository's conventions and template
Write documentation consumed by LLM agents — AGENTS.md, skill files, .ai/ plans, and agent instructions
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.
Inspect local OpenCode session data safely with the `opencode db` command
Keep DESIGN.md and plan docs synchronized with implementation decisions across repositories
| 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"