AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Cover Letter Writer

skill-nicholashidalgo-claude-skillforge-cover-letter-drafter · by nicholashidalgo

Writes specific, story-driven cover letters. Bans generic openers, AI vocabulary, and all banned resume phrases.

No reviews yet
0 installs
11 views
0.0% view→install

Install

$ agentstack add skill-nicholashidalgo-claude-skillforge-cover-letter-drafter

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-nicholashidalgo-claude-skillforge-cover-letter-drafter)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Cover Letter Writer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

cover-letter-writer

Purpose: Generate a cover letter that opens with a specific story or observation, connects your experience to the role with concrete examples, and closes with one clear ask.

Input Schema

| Field | Type | Required | |---|---|---| | role_title | string | yes | | company | string | yes | | opening_hook | string | yes - a specific story, observation, or connection point | | relevant_experience | string[] | yes - 2-3 items with metrics | | why_this_company | string | yes - specific, not generic | | ask | string | yes | | preserve_facts | string[] | yes |

{
  "role_title": "Staff Engineer",
  "company": "Stripe",
  "opening_hook": "I've been using Stripe since 2015 and recently went through your API migration guide - the versioning strategy is the clearest I've seen in fintech.",
  "relevant_experience": [
    "Built a payment routing engine at Acme that processed $40M/month, reducing failed payments by 22%",
    "Led a 6-engineer team through a PCI-DSS Level 1 certification"
  ],
  "why_this_company": "Stripe's developer-first approach to infrastructure problems is how I think about building platform tools",
  "ask": "Conversation about the staff engineering role on the payments platform team",
  "preserve_facts": ["$40M/month", "22%", "PCI-DSS Level 1", "2015"]
}

Prompt Flow

Pass 1: Open with hook (no "I am writing to apply" or similar). Body: 2 specific examples with metrics. Close: one clear call to action. Remove: P1, P4, P7, P19, P21, P22, P24. Run against resume-banned-language-pack.

Pass 2 Audit + Final: Remove any remaining puffery, genericness, or AI tells.

Examples

Short - 1-paragraph hook

Before: "I am incredibly excited and passionate about this opportunity to leverage my extensive experience at your groundbreaking company." After: "I've been using Stripe since 2015. When I read through your API versioning guide last month, it was the clearest versioning strategy I've seen in fintech - exactly the level of care I try to put into platform work."

Medium - body paragraph

Before: "I have proven track record of results-driven leadership that has added significant value to organizations through innovative solutions." After: "At Acme, I built the payment routing logic that processes $40M/month. When the first provider started failing, the system rerouted automatically - zero engineer intervention. That's the kind of reliability I want to build at scale."

Long

Unit Tests

# tests/skills/test_cover_letter_writer.py
from ai_pattern_scrubber import detect_patterns
from resume_banned import flag_banned_phrases

HOOK = "I've been using Stripe since 2015. The API versioning guide is the clearest I've seen in fintech."
BODY = "At Acme, I built the payment routing engine processing $40M/month. When providers failed, the system rerouted automatically."

def test_hook_no_sycophancy():
    assert not [h for h in detect_patterns(HOOK) if h.id == 21]

def test_body_no_banned_phrases():
    assert flag_banned_phrases(BODY) == []

def test_hook_no_high_severity():
    assert not [h for h in detect_patterns(HOOK) if h.severity == "high"]

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.