ワンクリックで
gcm
Gest Commit. Create a jj commit/bookmark/push checkpoint using conventional commit style and GitHub metadata when present.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Gest Commit. Create a jj commit/bookmark/push checkpoint using conventional commit style and GitHub metadata when present.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Gest Setup. Bootstrap or refresh a jj/Gest agent-operable repository surface across tools, command contracts, Justfile targets, hooks, ignores, installs, and setup follow-ups.
Gest Test. Run unit, API regression, smoke, regression, and integration tests appropriate to the changed code; add missing tests when the task changes callable behavior.
Gest Brainstorm. Explore rough ideas or ambiguous requests, inspect existing code/docs/Gest context, ask clarifying questions when needed, and decide whether to create a spec, outline issue, plan, or session task.
Gest Docs. Audit, create, update, and verify user-facing docs, developer-facing docs, and in-code documentation affected by a task.
Install jj Gest package extras after npx installs the skills, including hooks/settings and AGENTS guidance.
Gest Format. Run formatting, linting, typechecking, compile/static checks, and mechanical diff hygiene; fix mechanical issues. Use gte for tests and gdo for documentation.
| name | gcm |
| description | Gest Commit. Create a jj commit/bookmark/push checkpoint using conventional commit style and GitHub metadata when present. |
Use when the user asks to commit, when a verified development checkpoint should be committed, before GitHub issue/PR sync, or when the final dirty-workspace gate finds Codex-owned changes at a commit-required checkpoint.
Committing is VCS hygiene, not a Gest task by itself. Do not create a Gest task whose only purpose is making a normal commit.
jj status
jj diff
jj log -r 'trunk()..@ | @ | bookmarks()' --no-pager
jj bookmark list --all
jj git remote list
Read related Gest notes and metadata. Look for github.issue, github.url,
vcs.bookmark, vcs.review_mode, and stack metadata. Also check
classification.tags.* and impact.ast_grep.* metadata/notes from
references/tag_dependency_workflow.md; commit bodies should mention important tag
or dependency-impact follow-ups when they affect reviewer expectations.
There is no staging area in jj. The working copy is a commit named @.
Use jj describe when you want to label the current working-copy commit and
continue editing it:
jj describe -m "<message>"
Use jj commit when the current change is complete and you want to advance to
a fresh empty @:
jj commit -m "<message>"
jj new also advances to a new empty @, but it does not create the final
conventional message by itself. Use it for workflow boundaries only when that
is the intended shape.
Draft a conventional commit:
<type>(<scope>): <description>
[body]
[footer]
Never include Gest IDs in commit messages. Include GitHub footers only when Gest metadata contains a real GitHub issue and the commit semantically closes or references it.
Derive useful bodies from completed Gest notes: Done, Verification, and
real Follow-up items.
Bookmarks are review handles and do not advance automatically. After a commit, create or move the intended bookmark explicitly:
jj bookmark set <bookmark> -r @-
# or, for an existing bookmark:
jj bookmark move <bookmark> --to @-
Push only the intended bookmark:
jj git push --bookmark <bookmark>
jj bookmark list --all
For a new GitHub-backed repo, the first mainline publication normally looks like:
jj describe -m "chore: initialize project"
jj new
jj bookmark set main -r @-
jj git push --bookmark main
After the first push, jj bookmark list --all should show local main,
main@git, and main@origin.
For local LazyJJ stack ergonomics, use commands such as:
jj start
jj create <bookmark>
jj tug
jj stack
jj ss
For stacked PRs, prefer jj-stack when GitHub remote/auth prerequisites are
available:
jst submit <top-bookmark> --dry-run
jst submit <top-bookmark>
jj sprs may also create/update PR stacks when the installed LazyJJ aliases,
gh, and a GitHub remote are configured. Treat live PR creation as a gated
operation.
Run checkpoint hygiene:
jj status
jj bookmark list --all
For reviewable non-local work, create or move the bookmark and push it unless the user explicitly requested local-only work or the push is blocked. Local bookmark state is not a completed checkpoint by itself.
If a non-mainline bookmark was pushed, create/update the PR, run gpa, report
the PR state, and ask before merging unless the user explicitly requested merge
in the current turn.
After a PR is merged, check the repository's project instructions and command contract for deployment or release steps. If the repo defines a deploy command for this kind of change, run it or record the concrete blocker before handoff.