원클릭으로
sem
Semantic version control workflow: sem (structural truth) -> inspect (review prioritization) -> weave (coordination + merge semantics).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Semantic version control workflow: sem (structural truth) -> inspect (review prioritization) -> weave (coordination + merge semantics).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review Qodo findings on the open GitHub pull request for the current branch using the persistent review as the canonical finding list and GitHub inline threads as discussion anchors, then fix, verify, refresh, or escalate with `/ask` using evidence and Qodo acknowledgment state.
Delegate planning to Codex/GPT. Returns dense, AI-optimized plan (not prose). Caller specifies reasoning effort (high/xhigh) based on complexity.
Codex reviews a plan. Returns dense verdict + feedback (not prose). Caller specifies reasoning effort (medium/high/xhigh) based on review depth needed.
Use the Google Workspace CLI to work with Gmail, Drive, Calendar, Docs, and Sheets from the local host shell.
Guide for creating or updating agent skills. Use when users want to create a new skill, update an existing skill, or need guidance on SKILL.md structure and best practices across Claude Code, Codex, and other compatible agents.
| name | sem |
| description | Semantic version control workflow: sem (structural truth) -> inspect (review prioritization) -> weave (coordination + merge semantics). |
| metadata | {"short-description":"Semantic impact, blame, dependency analysis, and review prioritization"} |
This skill teaches a single coherent workflow:
sem -> inspect -> weave
Use it when you need entity-level understanding (functions/classes/properties), risk-focused review prioritization, and safe merge/coordination semantics.
If diff.external = sem-diff-wrapper is configured, plain git diff gives the default semantic diff view. Use git diff --no-ext-diff ... when you need raw hunks, patch context, or exact line-by-line output.
| Tool | Core Role | Notes |
|---|---|---|
sem | structural truth | Entity-level diff/graph/impact/blame. Establishes what changed. |
inspect | review prioritization | Classifies + risk-scores entities (blast radius, dependents, public API) and groups changes for review order. |
weave | coordination + merge semantics | Entity-level merge semantics and optional advisory coordination (claims). |
sem diff --from HEAD~1 --to HEAD --format json
inspect diff HEAD~1 --format json
# Replace <base-ref> with the integration branch, e.g. origin/main or origin/master.
sem diff --from <base-ref> --to HEAD --format json
inspect diff <base-ref>..HEAD --format json
sem impact <entity>
sem impact <entity> --files <path> # narrow scope on large repos
sem graph
weave preview <target-branch>
git -c diff.external=sem-diff-wrapper diff <base-ref>..HEAD
git -c diff.external=sem-diff-wrapper diff -- <path>
Run weave only when:
Never run weave setup unless the user explicitly asks (it mutates repo merge-driver configuration).
Scripts in scripts/ are optional helpers.
sem, inspect, and weave directly.sem-diff-wrapper is a git diff external wrapper, not a standalone CLI.sem works best on supported programming languages and structured formats. On unsupported files it falls back to chunk-based diffing.--files on large repos when impact analysis would otherwise scan too broadly.