تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآنclaude-code-workflows
Advanced Claude Code workflows and automation
النجوم١
التفرعات٠
آخر تحديث٢٥ مايو ٢٠٢٦ في ٢١:٣٦
SKILL.md
readonlyالقائمة
Advanced Claude Code workflows and automation
Automated code review with AI agents
Modern AI-assisted development workflow
AI safety and responsible AI practices
Customizing Claude Code with CLAUDE.md
Using Claude Code CLI for autonomous development
Using Cursor IDE with advanced AI features
| name | claude-code-workflows |
| description | Advanced Claude Code workflows and automation |
| category | ai |
| tags | ["claude","workflows","automation","ci","devops"] |
| models | ["sonnet","opus"] |
| version | 1.0.0 |
| created | "2026-05-14T00:00:00.000Z" |
Build automated development pipelines with Claude Code for CI/CD, code review, and maintenance.
# Automated PR review workflow
claude -p "Review all changed files in this PR. Check for:\n1. Security vulnerabilities\n2. Type safety issues\n3. Performance regressions\n4. Missing error handling\nOutput a structured review report."
# Batch refactoring across many files
claude -p "Rename all usages of `oldFunction` to `newFunction` across the src/ directory. Update type definitions accordingly."
# Automated changelog generation
git log --oneline $(git describe --tags --abbrev=0)..HEAD | claude -p "Generate a changelog from these commits, grouped by type (feat, fix, chore, docs)."
# CI integration script
cat << 'SCRIPT' > .ci/claude-review.sh
#!/bin/bash
git diff main...HEAD --name-only | claude -p "Review these changed files for bugs and style issues. Format output as GitHub Actions annotations."
SCRIPT
Chain Claude Code calls together for multi-stage workflows. Use with git hooks, CI pipelines, and cron jobs. Pipe data between stages for context. Store CLAUDE.md with project conventions for consistent output.