Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
First, I want to say that I love this tool! And I want to contribute to it.
General Description
Adds an automated job search scanning capability to the interview coach. Candidates configure their job search URLs (LinkedIn, Indeed, Built In Chicago, etc.) once, then periodically run
scoutto check for new listings. The command reads each search page via Chrome, identifies listings the candidate hasn't seen before, scores each one for fit against the candidate's profile, and stores the results — surfacing only opportunities above a user-configured threshold. This can also be scheduled to run periodically. This capability requires Claude Chrome Extension to be enabled for Claude Code.Key design decisions:
coaching_state.mdfor active tracking. Below-threshold opportunities go inopportunities_bad_fit.mdsolely for deduplication — preventing re-scoring on future runs. The bad-fit file has no archival threshold and grows unbounded (it's just a small table used as a lookup index).decode,research, orprepfor any of them.Technical Details
Files created
references/commands/scout.md— Full command reference (220 lines). Contains: prerequisites, 6-step execution sequence, URL configuration flow, profile-match scoring rubric (5 factors with weights), output schema, storage schemas, status lifecycle, edge cases, threshold adjustment logic, schema migration notes, and archival rules.Files modified
CLAUDE.md— Integrated scout across all relevant system sections:scoutentryreferences/commands/scout.md, uses Chrome browser tools)opportunities_bad_fit.md, updates Last scan date, auto-updates Status to "Pursuing" when other commands create Interview Loops for scouted opportunities)Scout ConfigandScout Opportunitiessections to the schemascout)Scoring model
5-point profile-match using 5 weighted factors:
Storage architecture
coaching_state.md→Scout Config(URLs, threshold, last scan date) +Scout Opportunitiestable (above-threshold, with status tracking)opportunities_bad_fit.md→ append-only dedup table (below-threshold, no archival)Dependencies
kickoff