원클릭으로
commit
Create git commits for dotfiles changes, grouping by component with conventional prefix style
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create git commits for dotfiles changes, grouping by component with conventional prefix style
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a concise weekly status update in team format by pulling data from the current Jira sprint (tickets assigned to me), backlog, and recent activity. Outputs bullet points covering "What I worked on" (completed/in-progress this sprint), "What's next" (To Do in current sprint), and standard blockers/leaves fields. When asked for last week's report, covers completed items from last week. Upcoming items are based on the current sprint's To Do tickets. Triggers: /my-weekly-report, "my weekly update", "my weekly status", "generate my weekly", "write my weekly", "my weekly report"
Daily backlog management — full planning review OR add a single entry from a URL. Full review: gathers Jira sprint, GitHub PRs, checked-off items, and collaboratively plans the day. Add from URL: looks up a Teams message, Jira ticket, GitHub PR/issue, or incident.io alert and creates a concise backlog entry with a [ref] link. Triggers: /backlog-review, /update-backlog, "update my backlog", "plan my backlog", "what should I work on today", "refresh backlog", "backlog update", /backlog-add, "add this link to backlog", "backlog from link", "look up and add to backlog"
Open a draft in emacsclient (blocking) so the user can review or edit it before further action. Triggers: /edit-in-emacs, 'open in emacs', 'open in emacsclient', 'let me edit', 'edit before submitting', 'open it in emacs and let me edit'
Save an AI-generated artifact to the artifacts repository with structured metadata. Triggers: /save-artifact, "save this artifact", "store this artifact", "add to artifacts", "save to artifacts repo"
Review and clean up Claude auto-memory for the current project. Opens the memory list in Emacs for annotation, then applies deletions, updates, and relocations based on edits. Triggers: /memory-review, "review my memories", "clean up memories", "prune memories", "update my memories"
Analyze agent skills to find deterministic command chains that should be extracted into scripts. Follows the principle: use AI to decide which tool to call, not to execute deterministic logic repeatedly. Triggers: /optimize-skill, "optimize this skill", "extract deterministic commands", "refactor this skill", "find command chains to extract"
| name | commit |
| description | Create git commits for dotfiles changes, grouping by component with conventional prefix style |
When the user asks you to commit changes in this dotfiles repo, follow these steps:
emacs/, zsh/, home-manager/, scripts/, etc.[component] brief descriptionCo-Authored-By lines unless the user asks for itRun these in parallel:
git status
git diff --staged
git diff
git log --oneline -10
emacs/, zsh/, home-manager/)For each group, draft a message following the existing style:
[component] brief-area: what changed[emacs] fix dired block brackets[zsh] tweak how reporoot and gitroot is set[scripts] ,markdown-to-pdf: use gfm input format and fix parameter handling[home-manager] add emacs-lsp-booster packageutils:, web:) when it clarifies which part of the component changedFor each group, stage the relevant files and commit:
git add <specific-files> && git commit -m "$(cat <<'EOF'
[component] brief description
Optional detailed explanation of why this change was made,
if not obvious from the diff itself.
EOF
)"
git add -A or git add .git add && git commit calls as parallel tool calls in a single response so the user can approve them all at onceRun git log --oneline -5 to confirm all commits were created, then show the output to the user.
claude/.claude/settings.json model changes — the "model" field changes frequently and is not worth tracking; omit it from commits unless other meaningful settings changed alongside it