[PR #6364] [CLOSED] [PM-30849] Add Claude command templates #54738

Closed
opened 2026-05-01 20:26:24 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/6364
Author: @SaintPatrck
Created: 1/15/2026
Status: Closed

Base: mainHead: context-rules


📝 Commits (2)

  • e5d887e feat(claude): Add Claude command templates
  • 32502c4 Add newline

📊 Changes

7 files changed (+457 additions, -0 deletions)

View changed files

.claude/commands/code-explainer.md (+48 -0)
.claude/commands/code-review.md (+82 -0)
.claude/commands/file-cleaner.md (+51 -0)
.claude/commands/implement-it.md (+77 -0)
.claude/commands/refactor.md (+67 -0)
.claude/commands/task-creator.md (+64 -0)
.claude/commands/test-writer.md (+68 -0)

📄 Description

🎟️ Tracking

PM-30849

📔 Objective

Introduces a set of standardized templates for common software engineering tasks to be used with Claude. These templates aim to streamline workflows and ensure consistent, high-quality outputs for tasks like code explanation, code review, refactoring, and implementation planning.

The new command templates are:

  • code-explainer.md: To explain code at a high level, detailing its function, data flow, dependencies, and potential risks.
  • code-review.md: To provide structured, actionable feedback on a pull request, covering correctness, style, security, and performance.
  • file-cleaner.md: To improve the readability of a source file without altering its behavior, focusing on naming, comments, and formatting.
  • implement-it.md: To translate a user story or ticket into a detailed implementation plan, including architecture, code skeletons, and tests.
  • refactor.md: To guide the refactoring of legacy code towards a specific goal, emphasizing safety through tests and incremental changes.
  • task-creator.md: To break down a feature specification into smaller, sprint-ready engineering tasks.
  • test-writer.md: To generate thorough tests for a function or module, covering unit, integration, and property-based testing.

Reminders before review

  • Contributor guidelines followed
  • All formatters and local linters executed and passed
  • Written new unit and / or integration tests where applicable
  • Protected functional changes with optionality (feature flags)
  • Used internationalization (i18n) for all UI strings
  • CI builds passed
  • Communicated to DevOps any deployment requirements
  • Updated any necessary documentation (Confluence, contributing docs) or informed the documentation team

🦮 Reviewer guidelines

  • 👍 (:+1:) or similar for great changes
  • 📝 (:memo:) or ℹ️ (:information_source:) for notes or general info
  • (:question:) for questions
  • 🤔 (:thinking:) or 💭 (:thought_balloon:) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion
  • 🎨 (:art:) for suggestions / improvements
  • (:x:) or ⚠️ (:warning:) for more significant problems or concerns needing attention
  • 🌱 (:seedling:) or ♻️ (:recycle:) for future improvements or indications of technical debt
  • ⛏ (:pick:) for minor or nitpick changes

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/bitwarden/android/pull/6364 **Author:** [@SaintPatrck](https://github.com/SaintPatrck) **Created:** 1/15/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `context-rules` --- ### 📝 Commits (2) - [`e5d887e`](https://github.com/bitwarden/android/commit/e5d887edf8ae9fad55e4b007df5e39ff039dcf37) feat(claude): Add Claude command templates - [`32502c4`](https://github.com/bitwarden/android/commit/32502c424abcd67e4a75c6e7e8bab13b8df7b6bd) Add newline ### 📊 Changes **7 files changed** (+457 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `.claude/commands/code-explainer.md` (+48 -0) ➕ `.claude/commands/code-review.md` (+82 -0) ➕ `.claude/commands/file-cleaner.md` (+51 -0) ➕ `.claude/commands/implement-it.md` (+77 -0) ➕ `.claude/commands/refactor.md` (+67 -0) ➕ `.claude/commands/task-creator.md` (+64 -0) ➕ `.claude/commands/test-writer.md` (+68 -0) </details> ### 📄 Description ## 🎟️ Tracking PM-30849 ## 📔 Objective Introduces a set of standardized templates for common software engineering tasks to be used with Claude. These templates aim to streamline workflows and ensure consistent, high-quality outputs for tasks like code explanation, code review, refactoring, and implementation planning. The new command templates are: - `code-explainer.md`: To explain code at a high level, detailing its function, data flow, dependencies, and potential risks. - `code-review.md`: To provide structured, actionable feedback on a pull request, covering correctness, style, security, and performance. - `file-cleaner.md`: To improve the readability of a source file without altering its behavior, focusing on naming, comments, and formatting. - `implement-it.md`: To translate a user story or ticket into a detailed implementation plan, including architecture, code skeletons, and tests. - `refactor.md`: To guide the refactoring of legacy code towards a specific goal, emphasizing safety through tests and incremental changes. - `task-creator.md`: To break down a feature specification into smaller, sprint-ready engineering tasks. - `test-writer.md`: To generate thorough tests for a function or module, covering unit, integration, and property-based testing. ## ⏰ Reminders before review - Contributor guidelines followed - All formatters and local linters executed and passed - Written new unit and / or integration tests where applicable - Protected functional changes with optionality (feature flags) - Used internationalization (i18n) for all UI strings - CI builds passed - Communicated to DevOps any deployment requirements - Updated any necessary documentation (Confluence, contributing docs) or informed the documentation team ## 🦮 Reviewer guidelines <!-- Suggested interactions but feel free to use (or not) as you desire! --> - 👍 (`:+1:`) or similar for great changes - 📝 (`:memo:`) or ℹ️ (`:information_source:`) for notes or general info - ❓ (`:question:`) for questions - 🤔 (`:thinking:`) or 💭 (`:thought_balloon:`) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion - 🎨 (`:art:`) for suggestions / improvements - ❌ (`:x:`) or ⚠️ (`:warning:`) for more significant problems or concerns needing attention - 🌱 (`:seedling:`) or ♻️ (`:recycle:`) for future improvements or indications of technical debt - ⛏ (`:pick:`) for minor or nitpick changes --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-01 20:26:24 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/android#54738