スキル一覧に戻る
jonit-dev

context-building

by jonit-dev

0🍴 0📅 2026年1月21日
GitHubで見るManusで実行

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
Search TypeUse ForTools
Semantic searchConceptual understanding, domain terms, class purposesGrep with patterns
Exact matchError messages, specific identifiers, constantsGrep with literal strings
File patternsFinding related filesGlob 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)

# 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:

## 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

PrincipleDescription
Verify, Don't AssumeCheck definitions, tests, and actual code rather than guessing
Prioritize RelevanceFocus on code paths directly related to the issue
Leverage ToolsUse search, grep, file reading effectively
Clarity is KeyStructure findings logically and concisely
Context FirstUnderstand thoroughly before proposing changes

Useful Commands

# 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

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です