Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

brownfieldbrownfield 搜索

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/squirrelsoft-dev/agent-skills --skill brownfield

简介

brownfield 用于对已有代码库进行无侵入式适配,自动发现项目实际约定而非套用模板。

  • 它检测 .claude/ 目录状态与执行模式可用性,为后续 workflow 安装做准备。
  • 使用时适合接手遗留系统或异构项目,输出环境诊断结果与初始化建议。
  • 需确保运行时有 jq 等基础工具,并注意其对当前用户权限的读写要求。
  • brownfield 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Brownfield Setup

Configures Claude Code for an existing codebase by discovering what's already there. Conventions are detected from the actual project — not assumed from templates.

Run the workflow skill after this to install commands and agents:

npx skills add squirrelsoft-dev/agent-skills@workflow

Step 1 — Preflight

Check for existing setup and available execution mode:

ls .claude/ 2>/dev/null && echo "EXISTS" || echo "FRESH"
echo "${CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS:-disabled}"
claude --version 2>/dev/null || echo "unknown"
command -v jq &>/dev/null && echo "jq: installed" || echo "jq: MISSING — required for brownfield analysis"

If .claude/ already exists, ask the developer:

"A .claude/ directory already exists. Running this will overwrite it. Continue, or run the greenfield skill instead for a fresh setup?"

Wait for confirmation before proceeding.

If jq is not installed, stop and instruct:

"The brownfield skill requires jq for JSON processing. Install it first: sudo apt-get install jq (Debian/Ubuntu) or brew install jq (macOS)."

Step 2 — Parallel Analysis

Run all four analysis scripts. Use subagents in parallel if available, otherwise run sequentially. All scripts are read-only — no files are written in this phase.

bash "${CLAUDE_SKILL_DIR}/scripts/analyze-repo.sh"        > /tmp/bf-repo.json
bash "${CLAUDE_SKILL_DIR}/scripts/analyze-conventions.sh" > /tmp/bf-conventions.json
bash "${CLAUDE_SKILL_DIR}/scripts/analyze-git.sh"         > /tmp/bf-git.json
bash "${CLAUDE_SKILL_DIR}/scripts/analyze-tests.sh"       > /tmp/bf-tests.json

Verify all four JSON files are valid:

jq . /tmp/bf-repo.json /tmp/bf-conventions.json /tmp/bf-git.json /tmp/bf-tests.json >/dev/null

Step 3 — Human Review Checkpoint

Synthesize findings from the four JSON outputs and present this summary. Do NOT write any files yet.

Load reference files for context:

  • Rules content guidelines: ${CLAUDE_SKILL_DIR}/references/rules-templates.md
  • Hook recommendations: ${CLAUDE_SKILL_DIR}/references/hook-detection.md

Present findings:

## Brownfield Analysis — [Project Name from basename $PWD]

### Stack & Runtime
[language, framework, versions, package manager from bf-repo.json]

### Conventions Detected
[naming, imports, formatting from bf-conventions.json — with real file examples from the codebase]

### Testing
[framework, file locations, exact run command from bf-tests.json]

### Git & Collaboration
[commit style with 3 real examples from bf-git.json, branch pattern, CI platform]

### ⚠️ Conflicts & Ambiguities
[list any competing conventions that need a human decision]
[e.g. "Files in /legacy use snake_case, files in /src use camelCase — which is current?"]

### Tech Debt Signals
[TODO/FIXME density, files untouched 12+ months, deprecated patterns]

Detect and report quality tools:

command -v gitleaks &>/dev/null && echo "gitleaks: installed" || echo "gitleaks: missing"
command -v semgrep  &>/dev/null && echo "semgrep: installed"  || echo "semgrep: missing"
command -v gh       &>/dev/null && echo "gh CLI: installed"   || echo "gh CLI: missing"

For any missing tools, list what they do and how to install them:

Recommended tools (install before running /workflow):

  gitleaks — Secret/credential detection
    https://github.com/gitleaks/gitleaks#installing

  semgrep — SAST security scanner
    https://semgrep.dev/docs/getting-started/

  gh CLI — Required for /triage, /pr, /squash-pr, /address-pr-comments
    https://cli.github.com/

Do NOT offer to install these tools automatically.

Check for Previous Configuration

Before asking interview questions, check if this skill has been run before:

SKILL_NAME="brownfield" \
bash "${CLAUDE_SKILL_DIR}/scripts/load-config.sh"

If the output is a non-empty JSON object (not {}), previous answers exist. Present the analysis summary above and the saved answers:

Previous brownfield configuration found:

  Agent teams:   [AGENT_TEAMS]
  Commit style:  [COMMIT_STYLE]
  CI/CD:         [CI_CD]
  Corrections:   [CORRECTIONS or "none"]

Would you like to:
  a) Update — use these settings with the fresh analysis above and regenerate artifacts
  b) Reconfigure — answer all questions from scratch

Use AskUserQuestion and wait for the response.

  • If Update: load saved values into environment variables. If the fresh analysis reveals new conflicts or ambiguities not covered by saved corrections, ask only about those. Then skip to Step 3b.
  • If Reconfigure: proceed to the full interview below.

If no previous config exists, ask all questions:

  1. Does this match your understanding? Correct anything that's wrong.
  2. For any conflicts listed above — which convention is the current standard?
  3. Enable agent teams? (CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS) — yes / no
  4. Commit style going forward? — detected style / conventional commits / free-form
  5. Scaffold GitHub Actions CI if none detected? — yes / no

Wait for developer response before proceeding.

Save Configuration

After the interview (or after loading previous config for an update), save the current answers:

SKILL_NAME="brownfield" \
CONFIG_JSON='{"AGENT_TEAMS":"[val]","COMMIT_STYLE":"[val]","CI_CD":"[val]","CORRECTIONS":"[val]"}' \
bash "${CLAUDE_SKILL_DIR}/scripts/save-config.sh"

Replace [val] with actual values. CORRECTIONS should be a JSON-escaped string of any corrections the developer made to the analysis. This writes to .claude/skill-config.json so future runs can reuse these answers.

Proceed to Step 3b.


Step 3b — Architectural Analysis

After the developer confirms script findings, run a deeper analysis of the actual codebase to identify patterns that scripts can't detect.

Load the investigation guide: ${CLAUDE_SKILL_DIR}/references/architecture-analysis.md

Use an Explore subagent (context: fork) to read the codebase. The subagent should use the confirmed stack, org pattern, and file locations from the analysis JSON as a starting point to know where to look.

What to investigate

  1. Dependency and call patterns — centralized clients, import graph, service layers
  2. Architectural boundaries — top-level directory responsibilities, frozen/legacy areas
  3. Error handling patterns — centralized handlers, custom error classes, consistent shapes
  4. Auth and permissions patterns — middleware, guards, decorators, role checks
  5. State management patterns — local vs global state, server state (React Query/SWR)
  6. Testing patterns — shared utilities, custom matchers, mock strategies
  7. Git history patterns — co-change coupling, high-churn areas (if gh CLI available)

Output

Generate additional .claude/rules/ files only when genuine patterns are found. Do not pad with generic advice. Example files:

  • architecture.md — if clear architectural layers or centralized patterns found
  • legacy.md — if frozen/deprecated directories found
  • gotchas.md — if project-specific traps discovered

Developer review

Present generated rules for review before writing:

## Additional Rules Generated from Codebase Analysis

I identified these architectural patterns and generated corresponding rules:

**architecture.md** — centralized API client pattern, feature boundary enforcement
**gotchas.md** — 3 project-specific traps found

Preview:
[show first few lines of each file]

Are these accurate? I can:
- Accept all and proceed
- Edit any file before committing
- Skip specific files

Wait for developer confirmation. Then proceed to Step 4.


Step 4 — Generate All Artifacts

After the developer confirms findings and answers questions, generate everything. Use subagents in parallel if available, otherwise sequential.

Pass confirmed answers as environment variables to each script.

4a — Rules

STACK="[detected]" \
CONVENTIONS_JSON="/tmp/bf-conventions.json" \
TESTS_JSON="/tmp/bf-tests.json" \
REPO_JSON="/tmp/bf-repo.json" \
bash "${CLAUDE_SKILL_DIR}/scripts/generate-rules.sh"

4b — Hooks

STACK="[from bf-repo.json]" \
PKG_MANAGER="[from bf-repo.json]" \
FORMATTER="[from bf-repo.json]" \
TEST_RUNNER="[from bf-repo.json, e.g. vitest/jest/pytest/go-test]" \
TYPECHECKER="[python only — ty/pyright/mypy, ask at interview if unset]" \
AGENT_TEAMS="[from developer answer]" \
bash "${CLAUDE_SKILL_DIR}/scripts/generate-hooks.sh"

4c — Settings

PROJECT_DIR="$PWD" \
PKG_MANAGER="[from bf-repo.json]" \
AGENT_TEAMS="[from developer answer]" \
LINT_CMD="[from bf-repo.json]" \
TEST_CMD="[from bf-repo.json]" \
bash "${CLAUDE_SKILL_DIR}/scripts/generate-settings.sh"

4d — CLAUDE.md

REPO_JSON="/tmp/bf-repo.json" \
GIT_JSON="/tmp/bf-git.json" \
PROJECT_NAME="[detected or asked]" \
COMMIT_STYLE="[from developer answer]" \
bash "${CLAUDE_SKILL_DIR}/scripts/generate-claude-md.sh"

4e —.gitignore

PROJECT_DIR="$PWD" \
bash "${CLAUDE_SKILL_DIR}/scripts/generate-gitignore.sh"

Content guidelines for rules: ${CLAUDE_SKILL_DIR}/references/rules-templates.md Hook recommendations: ${CLAUDE_SKILL_DIR}/references/hook-detection.md


Step 5 — Commit

git add .claude/ CLAUDE.md
git commit -m "chore: add Claude Code configuration for brownfield onboarding"

If conventional commits were detected or chosen:

git commit -m "chore(claude): add brownfield Claude Code configuration"

Step 6 — Completion

✅ Brownfield Setup Complete — [Project Name]

Generated:
- CLAUDE.md
- .claude/settings.json        (agent teams: yes/no)
- .claude/settings.local.json
- .claude/rules/               [list each file]
- .claude/hooks/               [list each script]

Key conventions captured:
- [most important naming rule with example]
- [commit format with example]
- [test location and run command]

Next steps:
1. npx skills add squirrelsoft-dev/agent-skills@workflow
2. Launch Claude Code
3. Run /workflow to install commands and agents
4. Restart Claude Code

Reference Files

  • Rules content guidelines: ${CLAUDE_SKILL_DIR}/references/rules-templates.md
  • Hook recommendation logic: ${CLAUDE_SKILL_DIR}/references/hook-detection.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.65%
按下载量换算24

Claude

33.33%
按下载量换算24

Cursor

20.58%
按下载量换算15

Gemini CLI

9.49%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills