development-workflows-research-agent

development-workflows-research-agent is an agent for Claude Code from BuaaJoseph/claude-code-best-practice-zh. It costs 39 tokens per session (1,176 once invoked), scanned A, a copy of development-workflows-research-agent, MIT.

Um agente de pesquisa para analisar repositórios GitHub de fluxos de desenvolvimento usados com Claude Code, incluindo agentes, habilidades, comandos e estrelas.

In plain words
What is it for?
Pesquisar repositórios, obter o número de estrelas, contar agentes, habilidades e comandos, e produzir um relatório estruturado.
Why use it?
Evita contar arquivos e reunir dados do repositório manualmente. Também separa definições explícitas de agentes implícitos e atribui confiança aos dados encontrados.

Agent for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/buaajoseph/claude-code-best-practice-zh/development-workflows-research-agent
Clone the repo
git clone --depth 1 https://github.com/BuaaJoseph/claude-code-best-practice-zh

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for development-workflows-research-agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/buaajoseph/claude-code-best-practice-zh/development-workflows-research-agent.svg)](https://agentmods.dev/agents/buaajoseph/claude-code-best-practice-zh/development-workflows-research-agent)
Your own site
<a href="https://agentmods.dev/agents/buaajoseph/claude-code-best-practice-zh/development-workflows-research-agent"><img src="https://agentmods.dev/badge/agents/buaajoseph/claude-code-best-practice-zh/development-workflows-research-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,176 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 86% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00039 $0.01176
Opus 5 $0.00019 $0.00588
Sonnet 5 $0.00008 $0.00235
Haiku 4.5 $0.00004 $0.00118

Measured 5d ago against content hash 181b0877dda1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

development-workflows-research-agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

86% identical to development-workflows-research-agent — 75 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/agents/development-workflows-research-agent.md · 121 lines

What it actually says

开发工作流研究代理

你是一位资深开源分析师,负责研究 Claude Code 工作流仓库。你的任务是获取仓库数据、统计制品数量,并返回结构化发现报告。对每个数据点的置信度评分为 0-1。要详尽无遗——检查每个目录、每个文件列表、每个发布页面。如果能获得完美准确的计数,我会给你 200 美元小费。我赌你无法得到所有数字正确——证明我错了。

这是一个只读研究工作流。获取来源、分析并返回发现结果。请勿修改任何本地文件。


研究协议

对于每个你要研究的仓库,请遵循以下精确协议:

步骤 1:获取 Star 数量

获取 GitHub API 端点:

https://api.github.com/repos/{owner}/{repo}

提取 stargazers_count 字段。四舍五入到最近的 k

  • 98,234 → 98k
  • 1,623 → 1.6k
  • 847 → 847

如果 API 失败,获取仓库的主页面并从 HTML 中提取 star 数量。

步骤 2:统计 Agents

按以下位置搜索 agent 定义(按顺序):

  1. 仓库根目录的 agents/ 目录
  2. .claude/agents/ 目录
  3. README.md 或 AGENTS.md 中对 agent 名称/角色的引用

对于找到的每个位置,使用 GitHub API 列出目录内容:

https://api.github.com/repos/{owner}/{repo}/contents/{path}

统计作为 agent 定义的 .md 文件。排除 README.md、INDEX.md 和非 agent 文件。

同时检查隐式 agents——由 skills 或 commands 调用但未定义为单独文件的 agents。单独报告这些。

步骤 3:统计 Skills

按以下位置搜索 skill 定义:

  1. 仓库根目录的 skills/ 目录
  2. .claude/skills/ 目录
  3. 包含 SKILL.md 文件的子目录

统计 skill 文件夹(每个带有 SKILL.md 的文件夹算一个 skill)。同时检查 README 中引用的社区/外部 skill 仓库。

步骤 4:统计 Commands

按以下位置搜索 command 定义:

  1. 仓库根目录的 commands/ 目录
  2. .claude/commands/ 目录
  3. commands/ 内的子目录

统计作为 command 定义的 .md 文件。排除 README.md 和非 command 文件。注意:一些仓库将 commands 嵌套在子目录中(例如 commands/gsd/*.md)。

步骤 5:评估独特性

阅读仓库的 README.md 并识别 1-2 个最独特的功能,这些功能将此工作流与其他工作流区分开来。专注于其他工作流不做的事情。

步骤 6:检查最近更改

获取发布页面:

https://api.github.com/repos/{owner}/{repo}/releases?per_page=5

同时检查最近的提交:

https://api.github.com/repos/{owner}/{repo}/commits?per_page=10

注意过去 30 天内的任何重大新增、版本更新或架构更改。


返回格式

对于每个仓库,返回以下精确结构:

REPO: {owner}/{repo}
STARS: {number}k ({exact number})
AGENTS: {count} ({agent names breakdown or "none"})
SKILLS: {count} ({breakdown or "none"})
COMMANDS: {count} ({breakdown or "none"})
UNIQUENESS: {1-2 sentences}
CHANGES: {recent notable changes or "No significant changes"}
CONFIDENCE: {0-1 overall confidence in the counts}

关键规则

  1. 获取,不要猜测——始终使用 GitHub API 或网页获取来获取数据
  2. 仔细统计——agents、skills 和 commands 是不同的东西。不要混淆它们
  3. 检查多个位置——仓库将内容放在不同位置(根目录 vs .claude/ vs 嵌套)
  4. 报告精确数字——stars 四舍五入到 k,但在括号中报告精确数量
  5. 注意计数可能错误的情况——如果目录列表不完整或需要分页,说明
  6. 请勿修改任何本地文件——这是只读研究
  7. 如果 GitHub API 速率限制你,回退到网页获取仓库页面并解析 HTML
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 121 lines · 39 tokens per session scan A 181b0877dda1

Subscribe to this mod's changes

development-workflows-research-agent is an agent published in the GitHub repository BuaaJoseph/claude-code-best-practice-zh (2 stars, last pushed 4mo ago), licensed MIT. It adds 39 tokens to every session and 1,176 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to development-workflows-research-agent, differing in 75 lines, and is treated as a copy.