By littlebreak
A collection of Claude Code skills, commands, and guides for development workflows
npx claudepluginhub littlebreak/claude-devs遵循 Conventional Commits 规范生成提交信息并提交代码
开发前准备工作:拉取 jd-release 最新代码,并基于它创建新分支。
调用chrome-devtools,搜索已经打开的页面,找到http://test.jd.com:9091/
将执行计划按照标准模板组织为结构化的 Phase 任务文档
Quick scan for obvious issues in a file or directory
修正 Markdown 文档标题序号,按层级使用小写阿拉伯数字重新排序
根据用户提供的问题描述,定位 Bug 根本原因并提出修复方案。适用于 Vue3 升级兼容性问题、Element UI 不兼容等场景。Use when user reports a bug, describes an issue to fix, or says "修复", "fix", "排查问题", "定位问题".
Reviews code for quality, security, and performance issues. Use when reviewing code changes, checking PRs, or analyzing code quality.
在项目中快速搭建 Playwright E2E 全量巡检测试框架。自动采集项目信息,生成认证、页面审计、错误过滤、全量路由巡检等完整测试代码。Use when "搭建e2e", "接入playwright", "添加e2e测试", "setup e2e", "e2e setup".
开发任务验证后,将问题的发现、原因、修复过程记录到对应的 task.md 文档中。当修复验证阶段发现的问题后自动触发,或用户主动调用。Use when a bug/issue is found and fixed during task verification, or user says something like "记录一下这个问题" or "更新问题记录".
A Claude Code plugin for managing reusable skills, commands, and development workflow guides.
This repository is a Claude Code plugin that bundles custom skills, slash commands, hooks, and reference documents into a single installable package. Use it to extend Claude Code with team-shared or personal development workflows.
claude-devs/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── skills/ # Agent skills (directory-based, with SKILL.md entry point)
│ └── code-review/
│ ├── SKILL.md # Skill definition
│ └── reference.md # Supporting reference docs
├── commands/ # Simple slash commands (.md files)
│ └── quick-check.md
├── hooks/ # Event hooks
│ └── hooks.json
├── CHANGELOG.md
├── LICENSE
└── README.md
claude --plugin-dir /path/to/claude-devs
# Full code review
/claude-devs:code-review src/app.ts
# Quick scan
/claude-devs:quick-check src/utils.js
claude --plugin-dir /path/to/claude-devs --debug
Create a directory under skills/:
skills/my-skill/
├── SKILL.md # Required — YAML frontmatter + instructions
├── reference.md # Optional — detailed reference material
└── scripts/ # Optional — helper scripts
Define the skill in SKILL.md:
---
name: my-skill
description: What this skill does
allowed-tools: Read, Grep
---
Instructions for Claude when this skill is invoked...
Test it:
claude --plugin-dir .
/claude-devs:my-skill [args]
Create a .md file in commands/:
---
description: What this command does
---
Instructions for Claude...
Commands are simpler than skills — single file, no supporting documents.
main.--plugin-dir.MIT
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Runs pre-commands
Contains inline bash commands via ! syntax
Bash prerequisite issue
Uses bash pre-commands but Bash not in allowed tools
Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Works with Claude Code, Kiro, Clawd CLI, Gemini CLI, Cursor, Continue, and 16+ AI coding assistants. Now with Arabic, German, Spanish, and Chinese (Simplified & Traditional) support.
Tools to maintain and improve CLAUDE.md files - audit quality, capture session learnings, and keep project memory current.
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Claude Code skills for Godot 4.x game development - GDScript patterns, interactive MCP workflows, scene design, and shaders
Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer