Loading...
Loading...
Navigate, search, and understand the Resume Matcher codebase using ripgrep, ack, or grep. Find functions, classes, components, API endpoints, trace data flows, and understand architecture. Use FIRST when exploring code, finding files, or understanding project structure.
npx skill4agent add srbhr/resume-matcher codebase-navigatorUse this skill FIRST when exploring code, finding files, or understanding project structure.
# Find functions/methods
./scripts/search.sh functions <pattern>
# Find React components
./scripts/search.sh components <pattern>
# Find API endpoints
./scripts/search.sh endpoints
# Trace an API flow end-to-end
./scripts/trace.sh api-flow <endpoint>
# Trace a data field from backend to UI
./scripts/trace.sh data-flow <field_name>
# Find component hierarchy
./scripts/trace.sh component-tree <ComponentName>.agents/skills/codebase-navigator/scripts/# Find any symbol
rg --no-heading -n '\bMySymbol\b' apps/
# Python function definitions
rg --no-heading -n '(def|async def) my_function' apps/backend/ --type py
# React component usage
rg --no-heading -n '<MyComponent' apps/frontend/ --glob '*.tsx'
# Type definitions
rg --no-heading -n '(type|interface) MyType' apps/frontend/ --glob '*.ts'
# Pydantic models
rg --no-heading -n 'class My.*BaseModel' apps/backend/ --type py
# API route handlers
rg --no-heading -n '@(router|app)\.(get|post|put|patch|delete)' apps/backend/ --type py
# Imports of a module
rg --no-heading -n 'from.*my_module.*import|import.*my_module' apps/| Need | Document |
|---|---|
| Backend architecture | |
| Frontend architecture | |
| API contracts | |
| API flow maps | |
| Full doc index | |
apps/
├── backend/app/
│ ├── main.py # FastAPI entry, CORS, routers
│ ├── config.py # Pydantic settings from env
│ ├── database.py # TinyDB wrapper
│ ├── llm.py # LiteLLM wrapper (multi-provider AI)
│ ├── routers/ # API endpoints
│ │ ├── config_router.py # GET/PUT /api/v1/config
│ │ ├── health_router.py # GET /api/v1/health
│ │ ├── resume_router.py # CRUD /api/v1/resumes
│ │ └── jobs_router.py # CRUD /api/v1/jobs
│ ├── services/ # Business logic
│ │ ├── parser.py # Resume parsing
│ │ └── improver.py # AI resume improvement
│ ├── schemas/ # Pydantic request/response models
│ └── prompts/ # LLM prompt templates
│
└── frontend/
├── app/ # Next.js pages (dashboard, builder, tailor, print)
├── components/ # Reusable UI components
├── lib/ # API client, utilities, i18n
├── hooks/ # Custom React hooks
└── messages/ # i18n translations (en, es, zh, ja)./scripts/search.sh functions my_function
./scripts/search.sh components MyComponent
./scripts/search.sh classes MyClass
./scripts/search.sh types MyType./scripts/search.sh usage my_function
./scripts/search.sh deps my_file.py./scripts/trace.sh api-flow resumes
./scripts/trace.sh data-flow personalInfo
./scripts/trace.sh component-tree ResumeEditor./scripts/search.sh api-routes./scripts/search.sh config./scripts/search.sh todos| What | File |
|---|---|
| Backend startup | |
| Frontend pages | |
| API client | |
| Design tokens | |
| Resume schemas | |
| LLM prompts | |
docs/agent/rg --type pyrg --glob '*.tsx'apps/frontend/components/apps/backend/app/services/