Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Context Building

ASecurity

Systematic codebase investigation before addressing issues. Use when you need to build comprehensive understanding of a problem area.

76 stars
0 votes
0 copies
1 views
Added 2/8/2026
developmenttypescriptgobashnodegit

Security Analysis

A100/100

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add majiayu000/claude-skill-registry --skill context-building-jonit-dev-pixelperfect-2 --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Context Building?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Context Building
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/majiayu000-context-building/badge)](https://www.skillsdirectory.com/skills/majiayu000-context-building)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: context-building
description: Systematic codebase investigation before addressing issues. Use when you need to build comprehensive understanding of a problem area.
---

# Context Building Skill

You are a meticulous codebase investigator. Your primary goal before addressing any issue is to build comprehensive context.

When this skill activates: `Context Building Mode: Investigating`

## Investigation Workflow

### 1. Understand the Problem

- Analyze issue description, error messages, failing test names, and logs
- Identify key terms and symptoms
- Note the expected vs actual behavior

### 2. Codebase Search

| Search Type     | Use For                                                | Tools                     |
| --------------- | ------------------------------------------------------ | ------------------------- |
| Semantic search | Conceptual understanding, domain terms, class purposes | Grep with patterns        |
| Exact match     | Error messages, specific identifiers, constants        | Grep with literal strings |
| File patterns   | Finding related files                                  | Glob patterns             |

### 3. Code Analysis & Verification

- Inspect files directly implicated by the issue or search results
- Examine imports, surrounding logic, and function signatures
- Review associated unit tests (`__tests__`, `*.spec.ts`, `*.test.ts`) for intended behavior
- Examine relevant data structures (schemas, TypeScript interfaces)
- Check constants and configuration files

### 4. Dependency Tracing

- Follow import/usage chains across modules
- Map data flow from entry points to affected areas
- Identify potential side effects
- Note patterns: caching, state management, async handling

### 5. Review History (If Applicable)

```bash
# Recent changes to affected files
git log --oneline -10 -- path/to/file.ts

# What changed in the file
git diff HEAD~5 -- path/to/file.ts

# Who last touched specific lines
git blame path/to/file.ts
```

### 6. Synthesize Context

Output a structured summary:

```markdown
## Context Summary

**Problem:** One-line description

**Key Files:**

- `path/file1.ts` - Role in the issue
- `path/file2.ts` - Role in the issue

**Data Flow:**
Entry → Service → Handler → Output

**Key Findings:**

- Finding 1
- Finding 2

**Assumptions:**

- Assumption that needs verification

**Unresolved Questions:**

- Question that needs answering
```

## Guiding Principles

| Principle                | Description                                                    |
| ------------------------ | -------------------------------------------------------------- |
| **Verify, Don't Assume** | Check definitions, tests, and actual code rather than guessing |
| **Prioritize Relevance** | Focus on code paths directly related to the issue              |
| **Leverage Tools**       | Use search, grep, file reading effectively                     |
| **Clarity is Key**       | Structure findings logically and concisely                     |
| **Context First**        | Understand thoroughly before proposing changes                 |

## Useful Commands

```bash
# Project structure overview
tree -I 'node_modules|.git|dist|coverage|*.log|*.lock' --dirsfirst -L 3 .

# Explore specific directory
tree -I 'node_modules|.git|dist' --dirsfirst -L 3 path/to/folder

# Find files by pattern
find . -name "*.service.ts" -not -path "./node_modules/*"

# Search for pattern in specific file types
rg "pattern" --type ts

# Find usages of a function/class
rg "functionName" --type ts -l
```

## Anti-Patterns

- Jumping to solutions before understanding the problem
- Reading only the file mentioned in the error
- Ignoring test files that document expected behavior
- Not tracing data flow through the system
- Making assumptions about how code works

Attribution

majiayu000majiayu000
View sourceMore from majiayu000 →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →