ワンクリックで
update-pins
After `nix flake update`, sync `input_rev` and `input_hash` metadata in all flake-input skill files to match new `flake.lock`.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
After `nix flake update`, sync `input_rev` and `input_hash` metadata in all flake-input skill files to match new `flake.lock`.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints, defining type contracts between modules, or establishing boundaries between frontend and backend.
Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze network requests, profile performance, or verify visual output with real runtime data. Requires the chrome-devtools MCP server to be configured.
Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test runners in CI, or establish deployment strategies.
Conducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to assess code quality across multiple dimensions before it enters the main branch.
Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend than it should be. Use when reviewing code that has accumulated unnecessary complexity.
Optimizes agent context setup. Use when starting a new session, when agent output quality degrades, when switching between tasks, or when you need to configure rules files and context for a project.
| name | update-pins |
| description | After `nix flake update`, sync `input_rev` and `input_hash` metadata in all flake-input skill files to match new `flake.lock`. |
| metadata | {"when_to_use":"update pins, sync skill hashes, after flake update, pin update"} |
After nix flake update or nix flake update <input>:
flake.lock — extract new narHash and rev for changed input.opencode/skills/<input-name>/SKILL.md:
metadata.input_rev → new revmetadata.input_hash → new narHash (hash only, no quotes)grep -A4 '"<input-name>"' flake.lock | grep narHashFirst-level inputs in flake.lock root node map directly:
| flake.lock input | Skill folder |
|---|---|
disko | .opencode/skills/disko/ |
eh | .opencode/skills/eh/ |
import-tree | .opencode/skills/import-tree/ |
lanzaboote | .opencode/skills/lanzaboote/ |
nix-cachyos-kernel | .opencode/skills/nix-cachyos-kernel/ |
nix-index-database | .opencode/skills/nix-index-database/ |
nix-topology | .opencode/skills/nix-topology/ |
nixcord | .opencode/skills/nixcord/ |
nixos-hardware | .opencode/skills/nixos-hardware/ |
nixpkgs | .opencode/skills/nixpkgs/ |
nixpkgs-stable | .opencode/skills/nixpkgs-stable/ |
nixvim | .opencode/skills/nixvim/ |
nix-secrets | .opencode/skills/nix-secrets/ |
sops-nix | .opencode/skills/sops-nix/ |
wrapper-modules | .opencode/skills/wrapper-modules/ |
wrappers | .opencode/skills/wrappers/ |
For all 28 flake inputs: read flake.lock, find root.inputs, update each skill's input_rev and input_hash.
narHash in lock is "sha256-..." with quotes/comma. Skill input_hash needs raw hash, no quotes.pre-commit-hooks → .opencode/skills/git-hooks.nix/). Check Pin check section in each SKILL.md.grep "input_hash:" .opencode/skills/<name>/SKILL.md && grep -A4 '"<name>"' flake.lock | grep narHash — hashes must match.