소스 정보
- 저장소
- Dadmin88/hermes-agency
- 최근 소스 활동
- 2026년 8월 16일 06:25
- 감지된 SKILL.md 언어
- 영어
- 스타
- 8
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dadmin88/hermes-agency --skill contract-value-object-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Perform a structured accessibility audit of a product experience or implementation and produce prioritized remediation guidance.
Review product design artifacts before implementation for accessibility of information, interaction, focus, input, error recovery, responsive/reflow behavior, motion, contrast, content alternatives, and assistive-technology semantics.
Validate a user flow with keyboard or equivalent non-pointer input by checking reachability, order, focus visibility, activation, escape, shortcuts, custom widgets, and recovery from dynamic UI changes.
| name | contract-value-object-review |
| description | Use when reviewing bounded schema/value-object diffs. |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["code-review","contracts","value-objects","immutability","canonicalization","unicode","validation"],"related_skills":["requesting-code-review","runtime-architecture-auditing","test-driven-development"]}} |
Use for bounded read-only reviews of schema/value-object changes: frozen dataclasses, DTOs, recipe/config documents, parser contracts, canonical JSON identities, hashes, revisions, and other runtime-neutral domain values. This is a class-level review skill, not a feature-specific checklist.
NO BLOCKER or blocker path/line plus the smallest viable fix. Separate non-blocking test gaps from release blockers.Treat every public constructor as part of the contract, not just from_dict, from_json, or deserialization helpers.
TypeError, UnicodeError, RecursionError, KeyError, AttributeError, and OverflowError paths..encode(), iteration, mapping access, or serialization.A frozen outer dataclass is not enough. Trace every nested field reachable from public constructors.
A frozen or redacted dataclass is not automatically a safe capability. Treat every direct constructor, dataclasses.replace, and low-level mutation path as reachable when the value controls filesystem or other irreversible side effects.
__post_init__, but also revalidate at the side-effect boundary. A caller can manufacture a frozen instance with object.__setattr__ or dataclasses.replace; use-site checks must not trust that construction previously ran correctly.0600 mode, single hard link, and size bound both before copying and after the read; reject and remove the destination copy on any mismatch. Open with O_NOFOLLOW and read through the source FD so the canonical source is never modified.repr/logging/durable-state paths, and cleanup after partial-copy failure. A normal valid capability control must still copy and then clean up successfully.Find every .encode("utf-8"), json.dumps(..., ensure_ascii=False), and canonicalization boundary. Lone surrogates and malformed Unicode must produce the public domain error, not leaked UnicodeEncodeError. Apply the same policy to ordinary text, extension values, extension keys, repository/identifier fields, and nested values reaching canonicalization. Preserve exception causes only as implementation detail.
Compare parser and constructor paths side by side. A Git object ID supporting SHA-1 and SHA-256 is exactly 40 or 64 lowercase hexadecimal characters: no prefixes, whitespace, uppercase, or other lengths. Enforce identical grammar at from_dict and direct-constructor boundaries. Validate digest strings by exact type, grammar, and length before regex operations or hashing.
Canonical identity must depend only on semantic content. Use deterministic key ordering and compact serialization; exclude floating point or define an explicit cross-runtime representation. Normalize tuple/mapping values into one JSON-compatible form before hashing. Round-trip through canonical serialization, reorder input object keys, and mutate caller inputs after construction; hashes should remain stable. Reject unordered inputs unless deterministic ordering is explicitly part of the contract.
Inspect imports and consumers for runtime neutrality: logical contracts must not select a node/backend/scheduler, include host paths or execution plans, persist runtime state, or trigger side effects merely by construction or canonicalization.
When a public SDK accepts both legacy convenience values and structured message objects, review the conversion boundary as part of the contract—not merely the protobuf wrapper.
Message/Part objects) into the wire message. Assert that text, raw bytes, media type, and metadata survive each path; a text-only compatibility helper must not silently discard structured fields.text/plain text or raw bytes with a non-text media type).str(...), .get(...), iteration, or protobuf assignment. Do not silently stringify invalid text/media values or let protobuf TypeError/AttributeError escape when the SDK promises a domain-level validation error. Defaults must be presence-aware: do not use truthiness fallbacks such as value or b"", value or "text/plain", or value or {} before validation, because explicit falsey values (False, 0, "", []) are malformed inputs, not missing fields.For a compact structured-message adapter checklist and reproduction matrix, see references/sdk-structured-transport-boundary.md.
Use the compact matrix in references/bounded-contract-review.md. Prefer focused tests and direct probes over broad suites. Record actual outputs and limitations; never claim a test ran when setup prevented it.
Report:
path:line — concise violated invariant.NO BLOCKER and list concise validation notes.A frequent blocker is list(value) used to freeze a collection. If the contract requires list/tuple semantics, add an exact type guard, then normalize to a tuple. This prevents accidental strings/mappings/sets, nondeterministic hashes, and leaked errors.
See references/bounded-contract-review.md for reusable probes, failure classifications, and review transcript patterns.