원클릭으로
git-log
Deterministic block. Emit the commit log for a revision range as one line per commit (hash, date, subject), oldest first.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deterministic block. Emit the commit log for a revision range as one line per commit (hash, date, subject), oldest first.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Fuzzy block. Assign exactly one label from a closed set to a text, with a bounded confidence and a one-sentence grounded reason.
Deterministic block. Read a workspace-relative text file; refuses absolute paths and anything that escapes the workspace.
Deterministic block. Write content to a workspace-relative path, creating parent directories. The workflow's write grants decide where it may land.
Compose a new Blocks workflow (*.workflow.json) from the block library for a stated problem. Use when asked to automate a repeatable task with blocks — inventory, wire, gate, validate, render, iterate until clean.
Execute a saved Blocks workflow deterministically. Use when asked to run a *.workflow.json — the CLI runs deterministic nodes; you act only as the oracle for fuzzy nodes and never improvise the DAG.
Fuzzy block. Approve or hold a release artifact. Answers must be signed by a key carrying the release-approver claim — the approval is recorded, attributable, and re-verifiable.
| name | git-log |
| description | Deterministic block. Emit the commit log for a revision range as one line per commit (hash, date, subject), oldest first. |
Runs exactly:
git log --no-color --reverse --date=short --pretty=format:%h %ad %s <range>
Same repository state + same range → same bytes out. The range arrives as one literal argument — it is never shell-interpreted.
range (string) — any git revision range: HEAD~15..HEAD, v1.0..v1.1, a branch name.text (string) — one commit per line: abc1234 2026-07-02 subject line.