member-directory-detection

Detect member directory URLs on chamber of commerce sites with staged navigation.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/brp00005/site2 --skill member-directory-detection
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: member-directory-detection
Source: https://github.com/brp00005/site2/tree/main/.cursor/skills/member-directory-detection
Command: npx skills add https://github.com/brp00005/site2 --skill member-directory-detection

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Guides logic for finding the member/company directory link on chamber of commerce websites. Use when adding or modifying logic in dirFinder/2.py or related dirFinder code for directory detection, scoring, content verification, or nav expansion.

Core Features & Use Cases

  • Multi-stage pipeline that finds a member directory URL by applying a structured strategy starting from landing pages to deeper navigation, with re-ranking and verification.
  • Re-ranking and validation using internal signals (_page_directory_score, _verify_candidates) to distinguish genuine member listings from other directory-like pages.
  • Practical guidance for developers to edit dirFinder/2.py and adapt the detection strategy for new sites or edge cases.

Quick Start

Update the dirFinder/2.py workflow to apply the member-directory-detection strategy when locating member directories, and run a test crawl on a representative chamber site.

Frequently Asked Questions about member-directory-detection

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find the member directory URL on a chamber of commerce website?

Finding the member directory URL on chamber of commerce sites requires a staged crawl strategy that scores landing pages, expands navigation links, and verifies candidates to return a single best result.

What is the best way to score links when crawling for company directories?

The best way to score links during a directory crawl involves applying internal signals like _page_directory_score to distinguish genuine member listings from other directory-like pages, ensuring accurate re-ranking and validation.

How does same-domain navigation work when detecting member directories?

Same-domain navigation works by constraining the crawl strategy to stay within the original chamber site's domain, expanding from the landing page through internal navigation menus to locate and verify the member directory.

How do I handle diverse site structures when scraping chamber of commerce directories?

Handling diverse site structures during chamber directory scraping requires a multi-stage pipeline: resolving splash pages, scoring landing pages, expanding navigation, and applying fallback strategies with re-ranking.

Why does my web scraping logic fail to verify genuine member listings?

Web scraping logic fails to verify genuine member listings when it lacks content verification steps, which must re-rank candidates using internal signals to filter out non-member directory-like pages.

Are there limitations to using automated crawl strategies for directory detection?

Limitations of automated directory detection include struggling with unconventional site structures that bypass standard navigation expansion, requiring manual adaptation of the fallback and scoring logic for edge cases.