经 AI Skill Hub 精选评估,克劳德工作流 获评「强烈推荐」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
克劳德工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
克劳德工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 克隆仓库 git clone https://github.com/byerlikaya/claude-starter-kit cd claude-starter-kit # 查看安装说明 cat README.md # 按 README 完成环境依赖安装后即可使用
# 查看帮助 claude-starter-kit --help # 基本运行 claude-starter-kit [options] <input> # 详细使用说明请查阅文档 # https://github.com/byerlikaya/claude-starter-kit
# claude-starter-kit 配置说明 # 查看配置选项 claude-starter-kit --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export CLAUDE_STARTER_KIT_CONFIG="/path/to/config.yml"
/brainstorm · /plan · /review · /ship · /handoff · /simplify.guard-bash.sh (tool-level gate), pre-commit + commit-msg (trace + secret scan), context-usage.sh and session-guard.sh (session measurement).<details> <summary><b>Full skill catalogue</b> — all 30, generated from each skill</summary>
| Skill | What it does |
|---|---|
a11y | Frontend accessibility audit (WCAG): semantic HTML, keyboard access, focus management, contrast, ARIA, screen readers. |
adr | Architecture Decision Record: context-decision-consequences, for decisions that are expensive to reverse. |
api-design | API contract design: resource naming, error model, versioning, pagination, backward compatibility, OpenAPI. |
brainstorm | Divergent discovery BEFORE planning: turn a fuzzy ask into 2–4 scoped options + named unknowns, pick a direction, hand to spec-planning. |
ci-pipeline | CI pipeline discipline: lint→build→test→quality→security, fail-fast, deterministic build, secret handling, PR gates. |
code-review | Code review discipline: severity-ranked, reasoned feedback on whether a change improves the system's overall code health. |
commit-message | Conventional Commits: reads the staged diff and proposes type(scope): summary, with body/footer when needed. |
db-migration | Apply schema migrations safely: detect the tool, classify the change by risk, gate destructive ones behind approval, back up in prod,… |
dependency-audit | Dependency audit: known CVEs, licence compliance, abandoned/outdated packages, lockfile integrity, and a justification for every new… |
devarch-module | DevArchitecture backend pattern: MediatR CQRS handler/command/query, IResult/IDataResult, Autofac AOP chain, FluentValidation, i18n. |
docs-writer | Keeps documentation in sync with the code: README, usage and related docs when a public API or behavior changes. |
frontend-rn-expo | OPTIONAL, stack-specific: React Native + Expo (prebuild). |
frontend | Stack-agnostic frontend discipline (web · mobile · desktop): component structure, state, data fetching, loading/empty/error states,… |
handoff | Session handover: when context fills, a phase closes, or the topic changes, write an action-oriented handover to docs/SESSION_STATE.md,… |
i18n-integrity | Translation integrity: every key present in every language, no hardcoded strings, consistent placeholders and plurals. |
incident-runbook | Production incident response: diagnose → mitigate → resolve, then a blameless postmortem and a repeatable runbook. |
iterate | Refine-to-Done loop: repeat until tests green + review clean + nothing deferred; bounded. |
observability | Stack-agnostic observability: structured logs, correlation ids, metrics and traces; no PII or secrets in logs. |
performance | Stack-agnostic performance: measure first, find the bottleneck, then optimise. |
privacy-compliance | KVKK/GDPR audit method: data inventory, purpose/basis/retention, minimisation, consent, transparency, data-subject rights, cross-border… |
red-team | Attacker's-eye test of LLM/agent defenses: instruction hijacking, data exfiltration and tool abuse through untrusted content; verifies… |
reflect | Retrospective self-audit after nontrivial work: unverified assumptions, skipped items, is-this-the-right- approach — findings, not code. |
release | Versioning and CHANGELOG: SemVer mapped from Conventional Commits, Keep a Changelog format, tagging, pre-release gates. |
security-scan | Stack-agnostic security audit: map the attack surface, trace untrusted input to dangerous calls, surface dependency and configuration flaws. |
sonarqube-check | SonarQube quality gate (language-agnostic): 0 Bugs · 0 Vulnerabilities · 0 Security Hotspots · 0 Code Smells, build 0 warnings / 0… |
spec-planning | Spec-first planning: task breakdown, measurable acceptance criteria, dependency order, risk priority. |
testing | The how of testing: pyramid, AAA, isolation, risk coverage, determinism. |
token-budget | Context/token discipline: subagent isolation, output = summary, move-to-file, delegation threshold, lean skills. |
trace-scan | Trace scan (§4.1/§4.2): before a commit, scans the staged changes and the message for AI traces (co-author trailers, footers, robot… |
vps-deploy | Deploy to a VPS safely: runtime detection, reverse proxy + SSL, atomic swap, keep the previous version, post-deploy health gate,… |
</details>
---
Two entry points: start.sh sets up a fresh project; adopt (adopt.sh) hands the kit over to an existing one. Pick any channel — each runs the same two commands.
npx — nothing to install:
npx @byerlikaya/claude-starter-kit # fresh project
npx @byerlikaya/claude-starter-kit adopt # existing project
npx @byerlikaya/claude-starter-kit@latest update # refresh a project that already has the kit
Homebrew:
brew install byerlikaya/tap/claude-starter-kit
claude-starter-kit # fresh project
claude-starter-kit adopt # existing project
Release tarball — no package manager:
gh release download --repo byerlikaya/claude-starter-kit -p '*.tgz' && tar xzf claude-starter-kit-*.tgz
bash start.sh # fresh project
bash adopt.sh # existing project
Just want the agents & skills inside your existing Claude Code (no scaffolding)?/plugin marketplace add byerlikaya/claude-starter-kitthen/plugin install claude-starter-kit@byerlikaya.
Windows: the kit is bash-based — run it inside Git Bash (from git-scm.com) for the smoothest experience; WSL works as a fallback.
npx @byerlikaya/claude-starter-kit@latest update # `update` is an alias of `adopt`; run it at the project root
At install time the kit stamps .claude/kit.conf with the profile, the backend stack and which installer ran, plus .claude/VERSION. The updater reads that stamp and refreshes the project in the shape it was installed in: a --backend project does not get frontend agents grafted back on, and a --dotnet project keeps its devarch-module pattern skill. Where the stamp is absent, the updater derives the shape from the installed files and writes it. Compare cat .claude/VERSION against npm view @byerlikaya/claude-starter-kit version to see whether an update is waiting.
| On update | |
|---|---|
.claude/ agents · skills · commands · hooks · eval | refreshed from the new version |
.claude/DISCIPLINE.md | **overwritten** — it is kit-owned, so keep nothing of your own in it |
./CLAUDE.md | never touched — your project rules stay exactly as you wrote them |
.claude/settings.json | merged schema-aware; your own hooks and permissions survive |
your own agents and skills (no -csk suffix) | untouched |
Like adopt, an update needs a git repo and lands on a kit-adopt-<timestamp> branch, staged and uncommitted — review the diff, then commit to accept or reset to discard.
If a project'sCLAUDE.mdcarries the discipline inline instead of importing it, discipline updates cannot reach that project. The updater detects this, shows which lines hold the inline block, and offers to replace them with the single@.claude/DISCIPLINE.mdimport — writing a backup first, on a branch you review. Decline and nothing is touched; your project section and your own rules survive either way.
---
/plan (ambiguous scope) → expert agents build → /review (security · quality · test) → /ship (DoD gate; proposes the commit, waits for approval) → when context fills up, /handoff → /clear.
高质量的开源AI工作流项目
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:克劳德工作流 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | claude-starter-kit |
| Topics | ai-agentsautomationshell |
| GitHub | https://github.com/byerlikaya/claude-starter-kit |
| License | MIT |
| 语言 | Shell |
收录时间:2026-07-12 · 更新时间:2026-07-12 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端