Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计异常

agentic-workflowAgent 工作流程

Agent Skill

agentic-workflow 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

252,096

周安装

10,105

GitHub Stars

88

下载量

81,608
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agentic-workflow(Agent 工作流程)
来源仓库:https://github.com/supercent-io/skills-template
仓库路径:skills/agentic-workflow
安装命令:
npx skills add https://github.com/supercent-io/skills-template --skill agentic-workflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/supercent-io/skills-template --skill agentic-workflow

简介

AI 代理工作流程、Git 集成、MCP 服务器和多代理编排的优化模式。

  • 涵盖 Claude、Gemini 和 Codex CLI 的基本命令,以及用于任务取消、历史搜索和计划模式切换的键盘快捷键
  • 包括会话管理技术(恢复、重命名、别名)和 Git 工作流程,用于自动生成提交、PR 以及使用工作树管理并行分支
  • 提供 MCP 服务器配置指南(Playwright、Supabase、Firecrawl、Gemini-CLI、Codex-CLI)以及工具数量和活动服务器的优化建议
  • 演示多代理编排模式,链接 Claude 进行规划和综合,Gemini 进行大规模分析,Codex 进行命令执行和测试
  • 包括 TDD 工作流程的实际示例、Docker 沙箱设置以及上下文过载和性能下降的故障排除策略

SKILL.md

AI Agent Workflow (Workflow & Productivity)

When to use this skill

  • Optimize everyday AI agent work
  • Integrate Git/GitHub workflows
  • Use MCP servers
  • Manage and recover sessions
  • Apply productivity techniques

1. Key commands by agent

Claude Code commands

CommandFunctionWhen to use
/initAuto-generate a CLAUDE.md draftStart a new project
/usageShow token usage/reset timeStart of every session
/clearClear conversation historyWhen context is polluted; start a new task
/contextContext window X-RayWhen performance degrades
/cloneClone the entire conversationA/B experiments; backups
/mcpManage MCP serversEnable/disable MCP
!cmdRun immediately without Claude processingQuick status checks

Gemini CLI commands

CommandFunction
geminiStart a conversation
@fileAdd file context
-m modelSelect model

Codex CLI commands

CommandFunction
codexStart a conversation
codex runRun a command

2. Keyboard shortcuts (Claude Code)

Essential shortcuts

ShortcutFunctionImportance
Esc EscCancel the last task immediatelyHighest
Ctrl+RSearch prompt historyHigh
Shift+Tab x2Toggle plan modeHigh
Tab / EnterAccept prompt suggestionMedium
Ctrl+BSend to backgroundMedium
Ctrl+GEdit in external editorLow

Editor editing shortcuts

ShortcutFunction
Ctrl+AMove to start of line
Ctrl+EMove to end of line
Ctrl+WDelete previous word
Ctrl+UDelete to start of line
Ctrl+KDelete to end of line

3. Session management

Claude Code sessions

# Continue the last conversation
claude --continue

# Resume a specific session
claude --resume <session-name>

# Name the session during the conversation
/rename stripe-integration

Recommended aliases

# ~/.zshrc or ~/.bashrc
alias c='claude'
alias cc='claude --continue'
alias cr='claude --resume'
alias g='gemini'
alias cx='codex'

4. Git workflow

Auto-generate commit messages

"Analyze the changes, write an appropriate commit message, then commit"

Auto-generate draft PR

"Create a draft PR from the current branch's changes.
Make the title summarize the changes, and list the key changes in the body."

Use Git worktrees

# Work on multiple branches simultaneously
git worktree add ../myapp-feature-auth feature/auth
git worktree add ../myapp-hotfix hotfix/critical-bug

# Independent AI sessions per worktree
Tab 1: ~/myapp-feature-auth → new feature development
Tab 2: ~/myapp-hotfix → urgent bug fix
Tab 3: ~/myapp (main) → keep main branch

PR review workflow

1. "Run gh pr checkout 123 and summarize this PR's changes"
2. "Analyze changes in src/auth/middleware.ts. Check for security issues or performance problems"
3. "Is there a way to make this logic more efficient?"
4. "Apply the improvements you suggested and run tests"

5. Using MCP servers (Multi-Agent)

Key MCP servers

MCP serverFunctionUse case
PlaywrightControl web browserE2E tests
SupabaseDatabase queriesDirect DB access
FirecrawlWeb crawlingData collection
Gemini-CLILarge-scale analysis1M+ token analysis
Codex-CLIRun commandsBuild, deploy

MCP usage examples

# Gemini: large-scale analysis
> ask-gemini "@src/ Analyze the structure of the entire codebase"

# Codex: run commands
> shell "docker-compose up -d"
> shell "npm test && npm run build"

MCP optimization

# Disable unused MCP servers
/mcp

# Recommended numbers
# - MCP servers: fewer than 10
# - Active tools: fewer than 80

6. Multi-Agent workflow patterns

Orchestration pattern

[Claude] Plan → [Gemini] Analysis/research → [Claude] Write code → [Codex] Run/test → [Claude] Synthesize results

Practical example: API design + implementation + testing

1. [Claude] Design API spec using the skill
2. [Gemini] ask-gemini "@src/ Analyze existing API patterns" - large-scale codebase analysis
3. [Claude] Implement code based on the analysis
4. [Codex] shell "npm test && npm run build" - test and build
5. [Claude] Create final report

TDD workflow

"Work using TDD. First write a failing test,
then write code that makes the test pass."

# The AI:
# 1. Write a failing test
# 2. git commit -m "Add failing test for user auth"
# 3. Write minimal code to pass the test
# 4. Run tests → confirm they pass
# 5. git commit -m "Implement user auth to pass test"

7. Container workflow

Docker container setup

FROM ubuntu:22.04
RUN apt-get update && apt-get install -y \
    curl git tmux vim nodejs npm python3 python3-pip
RUN curl -fsSL https://claude.ai/install.sh | sh
WORKDIR /workspace
CMD ["/bin/bash"]

Safe experimentation environment

# Build and run the container
docker build -t ai-sandbox .
docker run -it --rm \
  -v $(pwd):/workspace \
  -e ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY \
  ai-sandbox

# Do experimental work inside the container

8. Troubleshooting

When context is overloaded

/context  # Check usage
/clear    # Reset context

# Or create HANDOFF.md and start a new session

Cancel a task

Esc Esc  # Cancel the last task immediately

When performance degrades

# Check MCP/tool counts
/mcp

# Disable unnecessary MCP servers
# Reset context

Quick Reference Card

=== Essential commands ===
/clear      reset context
/context    check usage
/usage      check tokens
/init       generate project description file
!command    run immediately

=== Shortcuts ===
Esc Esc     cancel task
Ctrl+R      search history
Shift+Tab×2 plan mode
Ctrl+B      background

=== CLI flags ===
--continue  continue conversation
--resume    resume session
-p "prompt" headless mode

=== Multi-Agent ===
Claude      plan/code generation
Gemini      large-scale analysis
Codex       run commands

=== Troubleshooting ===
Context overloaded → /clear
Cancel task → Esc Esc
Performance degradation → check /context

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.4%
按下载量换算23,177

OpenCode

25.08%
按下载量换算20,467

Codex

16.4%
按下载量换算13,384

Gemini CLI

12.59%
按下载量换算10,274

Antigravity

7.98%
按下载量换算6,512

Cursor

3.72%
按下载量换算3,036

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills