Skip to main content

Claude Code Daily Commands

Quick reference for the skills and commands you'll use regularly when working on Rossoctl. For setup, prerequisites, and workflow details, see the Claude Code Development Guide.

Developer Commands

Morning Orientation

Start your day by checking what needs your attention:

CommandWhat it does
/github:my-statusYour open PRs, pending reviews, assigned issues, worktree status
/git:statusAll worktrees with PR status and TODO files overview

Example morning workflow:

> /github:my-status
> /git:status

During Development

CommandWhat it doesWhen to use
/git:worktree <name>Create isolated worktree for a feature/fixStarting new work
/git:rebaseRebase onto upstream/main (gfur alias)Before push, when PR has conflicts
/ci:status <PR#>Check CI status for a specific PRAfter pushing changes
/ci:monitoringWatch running CI, get notified on completionAfter push, waiting for results
/k8s:healthPlatform health check across all componentsBefore testing, after deploy
/k8s:podsDebug pod crashes, failures, networkingPod not starting or crashing
/k8s:logsSearch component logs for errorsInvestigating runtime issues

Committing and Shipping

CommandWhat it doesWhen to use
/git:commitProperly formatted commit with emoji + sign-offEvery commit
/tdd <issue/PR/desc>Full TDD loop (implement, test, push, iterate)Feature work or bug fixes
/rca <failure URL>Systematic failure investigationCI failure or runtime issue

Maintainer Commands

Weekly Repository Health

Run these weekly (or before standup) to stay on top of repository health:

CommandWhat it does
/github:last-weekFull weekly report: merged PRs, new issues, CI trends, recommendations
/github:issuesIssue triage: stale, unattended, blocking, close candidates
/github:prsPR health: needs review, stale, failing CI, merge conflicts

Example weekly workflow:

> /github:last-week

This calls github:issues and github:prs internally, so you get everything in one command. Use the individual skills when you need focused triage.

CI and Quality

CommandWhat it doesWhen to use
/ci:status <PR#>Detailed CI check analysis for a PRReviewing contributor PRs
/skills:retrospectiveEnd-of-session skill improvement reviewAfter debugging sessions

Issue and PR Management

CommandWhat it does
/repo:issueCreate properly formatted issue (bug, feature, epic)
/repo:prCreate properly formatted PR with summary

Skill Map

All skills organized by how often you'll use them.

Daily Use

SkillPurpose
github:my-statusPersonal status dashboard
git:statusWorktree and PR overview
git:commitCommit with proper format
git:rebaseKeep branch current

Weekly Use

SkillPurpose
github:last-weekWeekly repository report
github:issuesIssue triage
github:prsPR health analysis
skills:retrospectiveSession review

Per-Task Use

SkillPurpose
tddTest-driven development loop
rcaRoot cause analysis
git:worktreeCreate isolated worktree
ci:statusCheck PR CI
ci:monitoringWatch running CI
k8s:healthCluster health check
k8s:podsDebug pods
k8s:logsSearch logs

Infrastructure (Occasional)

SkillPurpose
kind:clusterManage local Kind cluster
hypershift:clusterCreate/destroy HyperShift clusters
hypershift:quotasCheck AWS quotas
rossoctl:deployDeploy platform
helm:debugDebug Helm charts
auth:keycloak-confidential-clientCreate OAuth2 clients