Boost LinkedIn visibility by engaging with posts from target people (hiring managers, recruiters, industry leaders). Leaves thoughtful, non-generic comments to build recognition before outreach.
Increase a user's LinkedIn visibility by strategically commenting on posts from hiring managers, recruiters, or industry contacts at target companies. The goal is name recognition before direct outreach.
Search for recent posts from people at target companies:
var page = await browser.newtab("https://www.linkedin.com/search/results/content/?keywords=" + encodeURIComponent("[company or person name]") + "&datePosted=%22past-24h%22&sortBy=%22date_posted%22")
await page.wait({ waitTime: 3 })
var snap = await page.snapshot()
Alternative approach: Visit target people's profiles directly and find their recent posts:
await page.goto({ url: "https://www.linkedin.com/in/[slug]/recent-activity/all/" })
For each post found, assess:
Skip posts that are:
Each comment should follow ONE of these patterns (vary across posts):
Pattern A: Add a data point or example "This resonates. At [previous company], we saw [similar result] when we [specific action]. The key difference was [insight]."
Pattern B: Ask a thoughtful question "Interesting take on [topic]. Curious how you think about [related angle]? I've been thinking about this in the context of [user's domain]."
Pattern C: Respectful disagreement or nuance "Mostly agree, but I'd push back slightly on [point]. In my experience with [domain], [alternative perspective]. Would love to hear if you've seen that too."
Pattern D: Connect dots the poster didn't "This connects to something I've been noticing in [adjacent area]. [Brief insight]. Wonder if that's a trend or just my bubble."
Comment rules:
## Proposed Comments (10 posts)
1. **[Poster Name]** ([Role] at [Company]) - Posted 3 hours ago
Topic: [brief summary]
Post: "[first 100 chars of post]..."
Comment: "[your drafted comment]"
2. **[Poster Name]** ...
After user approves:
for (var i = 0; i < approvedComments.length; i++) {
// Navigate to the post
await page.goto({ url: posts[i].url })
await page.wait({ waitTime: 3 })
var snap = await page.snapshot()
// Find comment box, click it
// Type the comment
// Click Post/Submit
// Wait 2-5 minutes between comments
var delay = 120 + Math.floor(Math.random() * 180)
console.log("Waiting " + Math.round(delay/60) + " minutes before next comment...")
await page.wait({ waitTime: delay })
console.log("Posted " + (i+1) + "/" + approvedComments.length)
}
## Engagement Summary
- Comments posted: 10/10
- Companies covered: Stripe (3), Anthropic (3), Notion (2), Figma (2)
- People engaged: 4 hiring managers, 3 recruiters, 3 team leads
- Posts engaged: 7 original posts, 3 article shares
Recommended next step: Send connection requests to these people in 2-3 days, after they've likely seen your comment.