Agent 工作流

可复用的 Agent 工作流和编排模式

933 个 Skills 可用

Skills 列表

golang-observability

golang-observability

2.3Kagent-workflows

Go 日常可观测性——生产环境中始终开启的信号。涵盖使用 slog 的结构化日志、Prometheus 指标、OpenTelemetry 分布式追踪、使用 pprof/Pyroscope 的持续性能分析、服务端 RUM 事件追踪、告警和 Grafana 仪表盘。适用于为 Go 服务添加生产监控埋点、设置指标或告警、添加 OpenTelemetry 追踪、关联日志与追踪、将遗留日志库(zap/logrus/zerolog)迁移到 slog、为新功能添加可观测性,或实现符合 GDPR/CCPA 规范的客户数据平台(CDP)追踪。不适用于临时深度性能调查(→ 参见 `samber/cc-skills-golang@golang-benchmark` 和 `samber/cc-skills-golang@golang-performance` 技能)。

samber avatarsamber
获取
golang-benchmark

golang-benchmark

2.3Kagent-workflows

Golang 基准测试、性能分析和性能测量。用于编写、运行或比较 Go 基准测试,使用 pprof 分析热点路径,解释 CPU/内存/跟踪分析结果,使用 benchstat 分析结果,设置 CI 基准回归检测,或使用 Prometheus 运行时指标调查生产性能。当开发者需要对特定性能指标进行深入分析时也可使用——本技能提供测量方法,而 `samber/cc-skills-golang@golang-performance` 提供优化模式。

samber avatarsamber
获取
golang-continuous-integration

golang-continuous-integration

2.3Kagent-workflows

使用 GitHub Actions 为 Golang 项目配置 CI/CD 流水线——包括测试、代码检查、SAST、安全扫描、代码覆盖率、Dependabot、Renovate、GoReleaser、代码审查自动化和发布流水线。在设置或改进 Go 项目 CI、配置 GitHub Actions 工作流、添加代码检查器或安全扫描器、自动化依赖更新或添加质量门时使用。

samber avatarsamber
获取
golang-samber-lo

golang-samber-lo

2.3Kagent-workflows

Golang 的函数式编程辅助工具库,基于 samber/lo — 500 多个类型安全的泛型函数,用于切片、映射、通道、字符串、数学、元组和并发(Map、Filter、Reduce、GroupBy、Chunk、Flatten、Find、Uniq 等)。核心不可变包(lo)、并发变体(lo/parallel 即 lop)、原地修改(lo/mutable 即 lom)、惰性迭代器(lo/it 即 loi,Go 1.23+)以及实验性 SIMD(lo/exp/simd)。适用于使用或采用 samber/lo 时、代码库导入 github.com/samber/lo 时、或在 Go 中实现函数式风格数据转换时。不适用于流式管道(→ 参见 `samber/cc-skills-golang@golang-samber-ro` 技能)。

samber avatarsamber
获取
golang-samber-oops

golang-samber-oops

2.3Kagent-workflows

在 Golang 中使用 samber/oops 进行结构化错误处理——错误构建器、堆栈跟踪、错误码、错误上下文、错误包装、错误属性、面向用户与开发者的消息、恐慌恢复以及日志集成。适用于正在使用或采用 samber/oops 的场景,或代码库已导入 github.com/samber/oops 的情况。

samber avatarsamber
获取
golang-samber-slog

golang-samber-slog

2.3Kagent-workflows

使用 samber/slog-**** 包的 Golang 结构化日志扩展——多处理器管道(slog-multi)、日志采样(slog-sampling)、属性格式化(slog-formatter)、HTTP 中间件(slog-fiber、slog-gin、slog-chi、slog-echo)以及后端路由(slog-datadog、slog-sentry、slog-loki、slog-syslog、slog-logstash、slog-graylog...)。适用于正在使用或采用 slog 的项目,或代码库已导入任何 github.com/samber/slog-* 包的项目。

samber avatarsamber
获取
golang-samber-ro

golang-samber-ro

2.3Kagent-workflows

使用 samber/ro 在 Golang 中实现响应式流和事件驱动编程——ReactiveX 实现,包含 150+ 类型安全操作符、冷/热可观察对象、5 种主题类型(Publish、Behavior、Replay、Async、Unicast)、通过 Pipe 声明式管道、40+ 插件(HTTP、cron、fsnotify、JSON、日志)、自动背压、错误传播和 Go 上下文集成。适用于使用或采用 samber/ro 时、代码库导入 github.com/samber/ro 时,或在 Go 中构建异步事件驱动管道、实时数据处理、流或响应式架构时。不适用于有限切片转换(→ 参见 `samber/cc-skills-golang@golang-samber-lo` 技能)。

samber avatarsamber
获取
golang-samber-hot

golang-samber-hot

2.3Kagent-workflows

使用 samber/hot 在 Golang 中进行内存缓存——支持淘汰算法(LRU、LFU、TinyLFU、W-TinyLFU、S3FIFO、ARC、TwoQueue、SIEVE、FIFO)、TTL、缓存加载器、分片、stale-while-revalidate、缺失键缓存和 Prometheus 指标。适用于正在使用或采用 samber/hot 的项目,代码库导入 github.com/samber/hot 时,或项目频繁加载相同的中低基数资源且需要降低延迟或后端压力时。

samber avatarsamber
获取
golang-graphql

golang-graphql

2.3Kagent-workflows

使用 gqlgen 或 graphql-go 在 Golang 中实现 GraphQL API。适用于构建 GraphQL 服务器、设计模式、编写解析器、处理订阅或将 GraphQL 集成到现有 Go HTTP 服务中。也适用于代码库导入 `github.com/99designs/gqlgen` 或 `github.com/graph-gophers/graphql-go` 的情况。

samber avatarsamber
获取
golang-google-wire

golang-google-wire

2.3Kagent-workflows

使用 google/wire 在 Golang 中实现编译时依赖注入 — wire.NewSet、wire.Build、wire.Bind(接口→具体类型)、wire.Struct、wire.Value、wire.InterfaceValue、wire.FieldsOf、清理函数、//go:build wireinject 注入器文件以及生成的 wire_gen.go。适用于使用或采用 google/wire 时,代码库导入 `github.com/google/wire` 时,或通过 `wire.Build` 在编译时连接应用依赖图时。对于基于反射的运行时 DI,请参见 `samber/cc-skills-golang@golang-uber-dig` 技能。

samber avatarsamber
获取
session-handoff

session-handoff

2.2Kagent-workflows

创建全面的交接文档,实现AI代理会话的无缝转移。触发条件:(1)用户请求交接/记忆/上下文保存,(2)上下文窗口接近容量上限,(3)主要任务里程碑完成,(4)工作会话结束,(5)用户说出“保存状态”、“创建交接”、“我需要暂停”、“上下文快满了”,(6)恢复工作时说“加载交接”、“从...恢复”、“继续之前的工作”。在完成大量工作(多次文件编辑、复杂调试、架构决策)后主动建议创建交接。通过让新代理零歧义地继续工作,解决长时间运行代理的上下文耗尽问题。

softaworks avatarsoftaworks
获取
command-creator

command-creator

2.2Kagent-workflows

此技能应在创建 Claude Code 斜杠命令时使用。当用户要求“创建命令”、“制作斜杠命令”、“添加命令”或希望将工作流记录为可复用命令时使用。对于创建具有正确结构和最佳实践的、可被代理执行的优化斜杠命令至关重要。

softaworks avatarsoftaworks
获取
image-to-editable-ppt

image-to-editable-ppt

2.2Kagent-workflows

Rebuild slide images, image-based or scanned PPT/PPTX files, and PDF decks into object-level editable PowerPoint (.pptx). Use whenever the user provides any visual slide source and wants slides they can edit — "make this PPT editable", "把图片/截图转成可编辑 PPT", "this PDF is a scanned deck, restore it", recreating slides from screenshots, reconstructing slide objects, or preserving speaker notes — even if they do not say "convert". Not for authoring new presentations from scratch.

ningzimu avatarningzimu
获取
init

init

1.9Kagent-workflows

Creates, updates, or optimizes an AGENTS.md file for a repository with minimal, high-signal instructions covering non-discoverable coding conventions, tooling quirks, workflow preferences, and project-specific rules that agents cannot infer from reading the codebase. Use when setting up agent instructions or Claude configuration for a new repository, when an existing AGENTS.md is too long, generic, or stale, when agents repeatedly make avoidable mistakes, or when repository workflows have changed and the agent configuration needs pruning. Applies a discoverability filter—omitting anything Claude can learn from README, code, config, or directory structure—and a quality gate to verify each line remains accurate and operationally significant.

mcollina avatarmcollina
获取
commandcode-delegate

commandcode-delegate

1.9Kagent-workflows

Delegate a coding task to the Command Code CLI (`cmd`) as a background implementer, then review its diff and land it yourself. Use this whenever the user wants to hand implementation work to Command Code — phrasings like "have Command Code do X", "delegate this to commandcode", "run it through cmd", or "use Command Code to implement/fix/refactor" — or to run a queue of coding tasks through Command Code while staying the reviewer. DO NOT USE for tasks small enough to do inline, or when the user wants the code written directly without delegating.

amelnagdy avataramelnagdy
获取
zcode-delegate

zcode-delegate

1.8Kagent-workflows

Delegate a coding task to the Z.AI ZCode CLI as a background implementer, then review its diff and land it yourself. Use this whenever the user wants to hand implementation work to ZCode — phrasings like "have ZCode do X", "delegate this to ZCode", "run it through ZCode", or "use ZCode to implement/fix/refactor" — or to run a queue of coding tasks through ZCode while staying the reviewer. DO NOT USE for tasks small enough to do inline, or when the user wants the code written directly without delegating.

amelnagdy avataramelnagdy
获取
nano-banana-pro-prompts-recommend-skill

nano-banana-pro-prompts-recommend-skill

1.8Kagent-workflows

根据用户需求,从 10,000+ Nano Banana Pro 生图提示词库中推荐最合适的提示词。 针对 Nano Banana Pro(Gemini)深度优化,同时全面兼容 Nano Banana 2、Seedream 5.0、GPT Image 1.5、Midjourney、DALL-E、Flux、Stable Diffusion 等所有文生图(text-to-image)AI 模型。 当用户想要执行以下操作时使用此 Skill: - 使用 AI 生图(任意模型 —— Nano Banana Pro、Gemini、GPT Image、Seedream 等) - 查找经过实测的 AI 生图提示词及提示词模板 - 获取特定场景的提示词推荐(人像写真、产品营销、社媒爆款、海报设计等) - 为文章、视频、播客或营销文案创作插图/配图 - 浏览带效果样图的精选提示词库 - 翻译与理解提示词撰写技巧 同系列推荐:可以使用 "ai-image-prompts" Skill —— 该提示词库的通用定位版本,不限特定模型。

youmind-openlab avataryoumind-openlab
获取
copilot-delegate

copilot-delegate

1.7Kagent-workflows

Delegate a coding task to the GitHub Copilot CLI (`copilot`) as a background implementer, then review its diff and land it yourself. Use this whenever the user wants to delegate implementation work to Copilot - phrasings like "have Copilot implement X", "delegate this to copilot", "run it through Copilot CLI", or "use copilot to implement/fix/refactor" - or wants to run a queue of coding tasks through Copilot while staying the reviewer. DO NOT USE for tasks small enough to do inline, or when the user wants the code written directly without delegating.

amelnagdy avataramelnagdy
获取
propose-hypotheses

propose-hypotheses

1.7Kagent-workflows

Execute complete FPF cycle from hypothesis generation to decision

neolabhq avatarneolabhq
获取
load-issues

load-issues

1.7Kagent-workflows

Load all open issues from GitHub and save them as markdown files

neolabhq avatarneolabhq
获取
status

status

1.7Kagent-workflows

Display the current state of the FPF knowledge base

neolabhq avatarneolabhq
获取
create-workflow-command

create-workflow-command

1.7Kagent-workflows

Create a workflow command that orchestrates multi-step execution through sub-agents with file-based task prompts

neolabhq avatarneolabhq
获取
review-pr

review-pr

1.7Kagent-workflows

Review an existing GitHub pull request and post inline review comments on its diff. Use when the changes are on an opened PR rather than your local working tree.

neolabhq avatarneolabhq
获取
create-ideas

create-ideas

1.7Kagent-workflows

Generate ideas in one shot using creative sampling

neolabhq avatarneolabhq
获取