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

Resume Editor

skill-nicholashidalgo-claude-skillforge-resume-bullet-editor · by nicholashidalgo

Edits existing resume bullets to remove banned language and add metrics without changing meaning.

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

Install

$ agentstack add skill-nicholashidalgo-claude-skillforge-resume-bullet-editor

✓ 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-resume-bullet-editor)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo 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 Resume Editor? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

resume-editor

Purpose: Take existing resume bullets and improve them: remove banned phrases, add or surface metrics, start with action verbs. Preserve all factual claims.

Input Schema

| Field | Type | Required | |---|---|---| | bullets | string[] | yes - existing resume bullets | | context | string | no - additional context for metric inference | | preserve_facts | string[] | yes - must not change these | | tone | string | yes |

{
  "bullets": [
    "Responsible for managing the data pipeline",
    "Helped improve system reliability",
    "Strong communicator who worked with stakeholders"
  ],
  "context": "Senior Data Engineer at a fintech startup, 2021-2023",
  "preserve_facts": ["data pipeline", "fintech"],
  "tone": "direct"
}

Output Schema

{
  "edited_bullets": [
    {"original": "...", "revised": "...", "changes": ["removed 'responsible for'", "added action verb 'Owned'"]}
  ],
  "banned_phrases_removed": ["responsible for", "helped", "strong communicator"],
  "metric_warnings": ["bullet 2: no metric found - add a number before publishing"]
}

Prompt Flow

Pass 1: For each bullet: flag banned phrases -> rewrite starting with action verb -> inject metric if known -> preserve preserve_facts. Pass 2: Audit for remaining AI tells. Flag bullets with no metric as warnings (do not fabricate metrics).

Examples

Short

Before: "Responsible for managing the data pipeline." After: "Owned and maintained the Airflow-based data pipeline processing 500GB nightly."

Medium

Before: "Helped improve system reliability and worked with the on-call team." After: "Reduced mean time to recovery from 45 min to 12 min by documenting the top 8 incident runbooks."

Long

Before: "Results-driven professional responsible for driving cross-functional collaboration to achieve business outcomes." After: "Led quarterly roadmap reviews with product, engineering, and sales (12 stakeholders); 9 of 11 Q3 commitments shipped on time."

Unit Tests

# tests/skills/test_resume_editor.py
from resume_banned import flag_banned_phrases

EDITED = [
    "Owned and maintained the Airflow-based data pipeline processing 500GB nightly.",
    "Reduced MTTR from 45 min to 12 min by documenting 8 incident runbooks.",
]

def test_edited_bullets_no_banned_phrases():
    for b in EDITED:
        assert flag_banned_phrases(b) == [], f"Banned phrase remains: {b}"

def test_edited_bullets_start_with_verb():
    action_verbs = {"owned","reduced","built","cut","shipped","led","wrote","launched","designed","managed","created"}
    for b in EDITED:
        first_word = b.split()[0].lower().rstrip(".,")
        assert first_word in action_verbs, f"Bullet doesn't start with action verb: {b}"

def test_metric_warning_issued_for_vague_bullet():
    # resume-editor should flag bullets with no metric, not fabricate one
    from resume_editor import edit_bullets
    result = edit_bullets(["Strong communicator who worked with stakeholders."], preserve_facts=[])
    assert any("metric" in w.lower() for w in result.get("metric_warnings", [])), \
        "Expected metric warning for vague bullet"

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.