From 32c1ed26577502979668f42c9bccb033dea1099a Mon Sep 17 00:00:00 2001 From: ForeverAProgrammer <> Date: Sat, 7 Mar 2026 20:27:28 -0600 Subject: [PATCH] feat(projects): update Claude Commands project to Claude Devflow Renames the project to Claude Devflow and updates the GitHub URL to the new repo. Expands the skill list from 9 slash commands to 24 plugin skills grouped by category, and updates the description to reflect the Claude plugin installation model. --- src/data/projects.js | 10 ++--- src/pages/projects/claude-commands.js | 56 +++++++++++++++++++++------ 2 files changed, 50 insertions(+), 16 deletions(-) diff --git a/src/data/projects.js b/src/data/projects.js index d40ef34..22573e4 100644 --- a/src/data/projects.js +++ b/src/data/projects.js @@ -31,13 +31,13 @@ export const projects = [ }, { id: 'claude-commands', - title: 'Claude Code Commands', + title: 'Claude Devflow', description: - 'A collection of productivity-focused slash commands for the Claude Code VS Code extension. Streamlines common development tasks like standup updates, PR descriptions, commit messages, branch naming, emails, action items, and GitHub PR creation.', + 'A Claude Code plugin with 24 productivity-focused skills covering the full development workflow — commit messages, PR creation, standup updates, ADRs, design documents, GitHub issue automation, code review, and more.', overview: - 'A curated set of slash commands that extend Claude Code with productivity-focused workflows. Commands install via symlinks to ~/.claude/commands/, enabling automatic updates on git pull without reinstalling. Covers nine commands across common dev tasks: standup updates (with git log integration), PR and commit message generation, professional email drafting, action item extraction, branch naming, and GitHub PR creation via the GitHub CLI.', - technologies: ['Shell', 'Claude Code', 'GitHub CLI', 'Developer Tooling', 'Automation'], - githubUrl: 'https://github.com/ForeverAProgrammer/claude-commands', + 'Claude Devflow is a Claude Code plugin that extends the editor with 24 developer workflow skills. It installs via the Claude plugin system and skills are available as /devflow:. Covers the full dev lifecycle: writing conventional commits, generating PR descriptions from git history, drafting standup updates, creating Jira-style tickets, generating HLD and LLD design documents, automating GitHub issue resolution end-to-end, reviewing code with severity-rated feedback, and resolving merge conflicts via rebase.', + technologies: ['Claude Code', 'Claude Plugin', 'GitHub CLI', 'Developer Tooling', 'Automation', 'Shell'], + githubUrl: 'https://github.com/ForeverAProgrammer/claude-devflow', link: '/projects/claude-commands', featured: true, }, diff --git a/src/pages/projects/claude-commands.js b/src/pages/projects/claude-commands.js index b6d5aa7..d138398 100644 --- a/src/pages/projects/claude-commands.js +++ b/src/pages/projects/claude-commands.js @@ -3,7 +3,7 @@ import Layout from '@theme/Layout'; import Link from '@docusaurus/Link'; import { getProjectById } from '../../data/projects'; -export default function ClaudeCommands() { +export default function ClaudeDevflow() { const project = getProjectById('claude-commands'); return ( @@ -21,17 +21,51 @@ export default function ClaudeCommands() {
-

Commands Included

+

Skills Included

+

Skills are invoked as /devflow:<skill-name> inside Claude Code.

+ +

Writing & Communication

+ + +

Planning & Design

+ + +

Git Workflow

+ + +

GitHub Automation

+ + +

Code Quality