agentic-workflow

仓库创建 2025年12月23日最近提交 6 个月前SkillHot 收录 20 天前
▸ 精选理由

标准化多阶段管道与输出管理,有利于可复用的自动化实现流程。

这个 Skill 做什么

定义多代理分阶段实现任务的标准工作流与缓存/文件通信约定。

提供一套多代理分阶段干活的标准流程,规定各个 agent 背景运行、输出缓存和文件通信方式,从而把大任务拆成读/理解/修改/校验等独立阶段。适合需要多人或多 agent 协作实现复杂工程、并且不希望主对话被大量上下文占满时使用。特点是统一用 background 运行与文件注入(例如 .claude/cache/agents/<stage>/)来传递数据,主流程保持轻量和可控。

▸ 展开 SKILL.md 英文原文

Agentic Workflow Pattern

Skill 开发管理工作流多阶段代理缓存注入通用
3.9k
Stars
298
Forks
40
仓库内 Skill
+17
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/parcadei/Continuous-Claude-v3/main/.claude/skills/agentic-workflow/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/parcadei/Continuous-Claude-v3/main/.claude/skills/agentic-workflow/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Agentic Workflow Pattern

Standard multi-agent pipeline for implementation tasks.

## Architecture Principles

- Use `run_in_background: true` for all agents to keep main context minimal
- Use `Task` tool (never `TaskOutput`) to avoid receiving full agent transcripts
- Agents write outputs to `.claude/cache/agents/<stage>/` for injection into subsequent agents
- Main conversation is pure orchestration — no heavy lifting, only coordination

## Workflow Stages

### 1. Research Agent
```
Task(subagent_type="oracle", run_in_background=true, prompt="""
Query NIA Oracle (via /nia-docs skill) to verify approach and gather best practices.

Output to: .claude/cache/agents/oracle/<task>-research.md
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有