Skillquality 0.52
brownfield-chat
Natural-language Q&A across the full codebase. Use for multi-module questions, "what breaks if", git history, cross-cutting queries, and anything spanning more than one file. For a single-file lookup use brownfield-query instead.
Price
free
Protocol
skill
Verified
no
What it does
When to use
- "What breaks if I change X?" (multi-file blast radius)
- "Who last touched auth.ts?" (git history)
- "What changed in the last 30 days?" (git diff summary)
- "Which files have no tests and high risk?" (graph filter)
- "What does tokenService do?" (summary lookup)
- "What does X import / who imports X?" (structural lookup)
- Any question spanning multiple modules or layers
When NOT to use
- Architecture rules / boundary enforcement → use brownfield-drift
- About to edit a file → use brownfield-fix first
How to answer — by question type
Answer ALL questions by reading pre-built files with the Read tool.
Do NOT call wednesday-skills chat via Bash — read the files directly to avoid opening a terminal.
Summary / "what does X do?"
Read .wednesday/codebase/summaries.json→ find the file entry- If not in summaries,
Read .wednesday/codebase/MASTER.md→ search for the file section - Report the summary + risk score + blast radius count
Structural / "what does X import / who imports X?"
Read .wednesday/codebase/dep-graph.json→nodes["<file>"]- Report
imports[],importedBy[],exports[],riskScore,isEntryPoint
Blast radius / "what breaks if I change X?"
Read .wednesday/codebase/dep-graph.json- BFS over
importedBystarting from the target file (depth ≤ 5) - Report: direct dependents, transitive count, any cross-language hits
Graph filter / "which files have risk > 80?"
Read .wednesday/codebase/dep-graph.json→ iteratenodes- Filter by the requested criteria (riskScore, lang, isEntryPoint, etc.)
- Return ranked list
Git history / "who wrote X / what changed recently?"
Bash(git log --follow --oneline -20 -- <file>)for file historyBash(git log --since="30 days ago" --oneline)for recent changes- Git history is the only case that needs a Bash call
Path traversal / "how does a request reach X from Y?"
Read .wednesday/codebase/dep-graph.json- BFS through
importsedges from source to target (depth ≤ 6) - Report the shortest path found
Architecture overview
Read .wednesday/codebase/MASTER.md— entry points, primary flows, danger zonesRead .wednesday/codebase/analysis/legacy-report.json— god files, circular deps
Source citation
Always end your answer with the source used:
dep-graph.json— structural answersummaries.json— cached summaryMASTER.md— architecture / danger zonegit log— history / authorshipnot-mapped— data missing, tell dev to runwednesday-skills fill-gaps --file <file>
Never
- Call
wednesday-skills chatvia Bash — read the files directly instead - Send the full dep-graph.json to any LLM — read only the relevant nodes
- Answer from Claude training knowledge about this specific codebase
- Guess when graph data is missing — "Not mapped" is the correct answer
- Load more than 20 nodes into any LLM call
- Read raw source files (*.ts, *.go, etc.) to answer structural questions
Capabilities
skillsource-wednesday-solutionsskill-brownfield-chattopic-agent-skillstopic-ai-agent-skillstopic-ai-skillstopic-claude-codetopic-copilottopic-cursortopic-frontend-skillstopic-vibe-codingtopic-vibe-coding-skills
Install
Installnpx skills add wednesday-solutions/ai-agent-skills
Transportskills-sh
Protocolskill
Quality
0.52/ 1.00
deterministic score 0.52 from registry signals: · indexed on github topic:agent-skills · 148 github stars · SKILL.md body (3,015 chars)
Provenance
Indexed fromgithub
Enriched2026-05-02 12:54:44Z · deterministic:skill-github:v1 · v1
First seen2026-04-18
Last seen2026-05-02