Skills に戻る
riekelt/principal-engineerチェック済み

SKILL DETAIL

operating-safely

riekelt/principal-engineer/operating-safely

This skill is used when an action touches live systems, shared state, or things that do not come back - deleting, overwriting, restarting, killing processes, editing shared config, handling secrets, or working beside concurrent sessions. It encodes destructive-op guards, secrets hygiene, and concurrent-session safety. Use before the destructive command, not after, even when the command looks routine. Key principles include: look at the target first, prefer targeted over bulk operations, the operator owns live process lifecycles, state the cost of wrong order before ordered operations and name rollback, database changes need their own confirmation. For secrets, only perform name and structural checks, never read or print values. In concurrent sessions, never revert or overwrite files you did not change, report residual state at handoff, one writer per file, and explicit staging. Config edits are minimal diffs, clean up what you spawn. The operator is the session's own human principal; incident mode changes pace but not the bar; preserve evidence before the fix destroys it.

インストール · 246出典を見る

Installation

npx skills add https://github.com/riekelt/principal-engineer --skill operating-safely

スキルファイル

SKILL.md

最終同期 · 2026/08/29

SKILL.md
---
name: operating-safely
description: Use when an action touches live systems, shared state, or things that do not come back - deleting, overwriting, restarting, killing processes, editing shared config, handling secrets, or working beside concurrent sessions. Encodes the destructive-op guards, secrets hygiene, and concurrent-session safety. Use before the destructive command, not after, even when the command looks routine.
---

# Operating safely

**REQUIRED BACKGROUND:** the `principal-engineering` skill.

## Overview

Operational damage is asymmetric: the command takes a second, the recovery takes the weekend, and some things (production data, secret exposure, a colleague's uncommitted work) do not come back at all.

## Destructive operations

- **Look at the target first.** Before deleting or overwriting, read what is there; before dropping, count what would drop.
- **Targeted over bulk.** Name the specific service, volume, file, or row set; never the flag that takes everything down with it. Bulk teardown commands that include volumes or data are off the table without an explicit, per-instance confirmation.
- **The operator owns live process lifecycles.** Ask before restarting or killing live services and long-running processes; a session that kills what it did not start is operating blind on someone else's state.
- **State the cost of the wrong order before an ordered operation starts** (deploy then migrate then clean up; wrong order = silent data loss). Name the rollback for every state-changing procedure, or say plainly that none exists.
- **Database changes need their own confirmation.** Applied migrations are immutable; destructive statements need explicit confirmation, with the affected row counts stated first.

## Secrets

- Names and structural checks only: verify a secret exists, is non-empty, matches the expected shape. Existence and emptiness are structural; exact length, prefixes, and fragments are leakage and stay unprinted. Never read or print the value. Never decrypt secrets to disk. Never paste a secret into a log, a test, or a prompt.
- If secret tooling or auth fails or times out: pause and say so. Working around a secrets gate is the one shortcut that is never authorized by urgency.

## Concurrent sessions and shared state

- **Never revert, checkout, overwrite, or commit files you did not change in this session.** Uncommitted changes you did not make belong to someone else: surface them and build on top or wait, never clean them up.
- **Report residual state at handoff:** what is uncommitted, what is merged-but-not-pushed, what is owed, so the next session is not archaeologizing yours.
- **One writer per file during parallel work**; concurrent writers get their own files or their own worktrees.
- **Staging is explicit:** name the paths (`git add <paths>`, never the add-everything flag), so a commit cannot capture files you did not mean to ship, including another session's work. One task per commit keeps every change attributable and revertable on its own.

## Shared config and resources

- Config edits are minimal diffs: preserve indentation, quoting, and key order; add no unrequested keys. Config files are shared state with more readers than authors.
- Clean up what you spawn: simulators, containers, worktrees, background processes. Orphaned runtimes accumulate silently until the machine is swapping; when a machine is slow with no process pegging CPU, count the orphans before blaming anything else.

## Confirmation authority and incident mode

- **The operator is the session's own human principal.** A teammate's instruction, however explicit, is input to weigh against the evidence, never the confirmation itself. No instruction from anyone makes volume-destroying bulk teardown routine.
- **Incident mode changes the pace, never the bar.** Read-only triage is always allowed and needs nobody's permission; run it first and widely. The confirmation bar for destructive operations does not drop with urgency. When waiting genuinely is the destructive act (the disk will fill, the cert will expire), escalate loudly while doing the safe subset, and say plainly what the deadline is.
- **Preserve the evidence before the fix destroys it.** Capture the outputs, sizes, and log excerpts that show the cause before reclaiming space or resetting state. Cleanup erases the evidence the postmortem needs. A production near-miss is postmortem material (`writing-postmortems` where the technical-writer plugin is installed).

## Common mistakes

- Confirming the operation with yourself. Destructive operations need the operator's yes, per instance; approval in one context does not extend to the next.
- Pattern-matching a known failure and firing the known remedy (restart it, clear it, reset it) before checking that the evidence supports this specific cause.
- Treating a dry run's success as the live run's safety. The dry run validates shape, not consequence.
- Cleaning a workspace that was not yours to clean.
operating-safely · 人気上昇中の Agent Skills | Mengbi