ワンクリックで
code-standards
The quality bar for code, covering simplicity, clarity, tests, and secure-by-construction.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
The quality bar for code, covering simplicity, clarity, tests, and secure-by-construction.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Draft an academic paper or thesis in phases that survive peer review, from fitting the venue through shaping the contribution, storyboarding the skeleton, and writing the prose.
Pressure-test a paper at any phase, whether shape, skeleton, draft, or final, by reviewing it three ways at once, four when citations need checking against sources, then synthesize a mock notification with a phased revision list.
Build a single-file HTML slide deck in three light passes, content and mechanics first, then a unique visual identity, then the assembled deck, so revising the sequence never means regenerating the whole file.
Use after implementation is committed on a branch to open or update a PR, write the PR body, link work items, monitor checks, and handle CI feedback. Works for a feature or a standalone fix/perf/refactor.
Record an architecture decision by creating, updating, or superseding an ADR after a significant, costly-to-reverse technical choice is approved.
Define how approved requirements will be implemented (service boundaries, APIs, data model, integrations, failure modes, technical contracts) before coding.
| name | code-standards |
| description | The quality bar for code, covering simplicity, clarity, tests, and secure-by-construction. |
| user-invocable | false |
You are the simplification pass, not its input. Code ships already legible, so a change that would need a rewrite to be read is unfinished. Clarity never alters what the code does.
pnpm add, cargo add, uv add, go get), never a hand-written version, and code against the installed API. Reach for the standard library and existing helpers first.Validate external input at the boundary and handle predictable failures explicitly. A missing or failed value defaults silently only where the domain defines a safe fallback. User-facing errors stay safe and actionable; boundary responses carry enough structured context to explain the failure while internals stay hidden.
Cover changed behavior, fixed bugs, and real edge cases. Assert observable behavior, mocking only external dependencies: network, filesystem, time, randomness, third-party services. A failing test means the implementation is wrong unless the test demonstrably is.
Build so the flaw never enters; the security-review agent traces input to sink for whatever slips past.