ワンクリックで
describe
Generate a well-structured jj describe message based on staged changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate a well-structured jj describe message based on staged changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Analyze the changes in the current Jujutsu (jj) changeset and give it a clear, concise description with type and scope trailers. Use when the user asks to describe a change or commit.
Read and parse jj logs, commit messages, and descriptions. Use when the agent needs to inspect commit history, search for commits by message content or trailers, filter by author/date/branch, parse jj log output into structured data (subject, body, type/scope trailers), or navigate jj revision ranges. Triggered by requests to "show git log", "find commits with fix", "what changed in this branch", "list recent jj commits", or any history browsing task.
Read ShopifySharp source code and map GraphQL response types to application models. Use when working with ShopifySharp library, converting GraphQL API responses to C# or F# types, or understanding Shopify's generated types.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends the agent's capabilities with specialized knowledge, workflows, or tool integrations.
Split the current Jujutsu (jj) changeset into smaller, logically separate commits using non-interactive `jj split` with filesets. Use when the user asks to break up a change, split the working copy, separate unrelated edits into their own commits, stack a messy change into clean commits, or otherwise reshape one jj revision into several. Covers jj >= 0.42 topology, working-copy placement, and verification.
Break up the pending git changes into small, logical commits and commit them using well-structured commit messages.
| name | describe |
| description | Generate a well-structured jj describe message based on staged changes. |
Generate a well-structured jj describe message based on staged changes.
This command analyzes the changes in the current jj changeset and creates a clear, concise changeset description. It reviews the changes, categorizes the nature and scope, and then saves the description without asking for confirmation.
describe
jj status --no-pager to see modified, added and removed files in the current changeset
--no-pager flag with jj status.jj diff --no-pager, or an individual file diff with jj diff --no-pager ./path/to/file if needed.
--no-pager flag with jj diff.jj describe to write a description message with:
type: fix and scope: database)Add password reset functionality
Implemented the Forgot Password flow with a 24h expiry for the Password Reset tokens.
Added the Email Notification service.
type: feature
scope: auth
Resolve null pointer in user validation
Validation was failing when optional fields were undefined.
Added null checks before accessing nested properties.
Fixes #123
type: fix
scope: auth
--no-pager flag with jj status and jj diff.