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

Executive Brief Writer

skill-nicholashidalgo-claude-skillforge-executive-brief-drafter · by nicholashidalgo

Writes a 1-page executive brief from dense technical or project content. No puffery, every sentence earns its place.

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

Install

$ agentstack add skill-nicholashidalgo-claude-skillforge-executive-brief-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-executive-brief-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 Executive Brief Writer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

executive-brief-writer

Purpose: Distill a complex project, proposal, or decision into a 1-page executive brief with situation, recommendation, evidence, and ask.

Input Schema

| Field | Type | Required | |---|---|---| | title | string | yes | | situation | string | yes - 2-3 sentence context | | recommendation | string | yes | | supporting_evidence | string[] | yes - 3-5 data points | | risks | string[] | yes | | ask | string | yes - what exec needs to decide or approve | | preserve_facts | string[] | yes |

{
  "title": "Migrate billing to Stripe - Q2 decision",
  "situation": "Current billing provider charges 2.9% + $0.30 per transaction. Stripe charges 2.5% + $0.15. At $3M/month volume, the delta is $12,000/month.",
  "recommendation": "Migrate to Stripe by June 30.",
  "supporting_evidence": ["$12K/month savings = $144K/year", "Migration estimated 6 weeks engineering", "Zero-downtime cutover proven via 3 internal dry runs"],
  "risks": ["1-week risk window during cutover", "EU tax reporting requires Stripe Tax add-on ($500/month)"],
  "ask": "Approve migration budget ($15K eng time + $500/mo Stripe Tax)",
  "preserve_facts": ["$12K/month", "$144K/year", "June 30", "3 dry runs"]
}

Prompt Flow

Pass 1: Write tight, structured brief: Situation (2 sentences), Recommendation (1-2 sentences), Evidence (3-5 bullets), Risks (2-3 bullets), Ask (1 sentence). Remove: P1, P4, P5, P7, P14, P15, P22, P24.

Pass 2: "What in this brief wastes a busy exec's time?" -> trim aggressively. Final should be under 350 words.

Examples

Short - situation sentence

Before: "The current billing infrastructure serves as a pivotal component in our financial ecosystem, underscoring the transformative potential of modernization." After: "Our billing provider charges $12K/month more than Stripe at current transaction volume."

Medium - evidence section

Before: "Additionally, industry observers have noted that payment infrastructure modernization fosters long-term scalability and vibrant growth opportunities." After: "Evidence: (1) $144K/year savings at $3M/month volume. (2) 6-week migration with 3 completed dry runs. (3) Zero-downtime cutover confirmed in staging."

Long

Unit Tests

# tests/skills/test_executive_brief_writer.py
from ai_pattern_scrubber import detect_patterns

SITUATION = "Our billing provider charges $12K/month more than Stripe at current transaction volume."
EVIDENCE = "Evidence: $144K/year savings. 6-week migration, 3 dry runs completed. Zero-downtime confirmed in staging."

def test_situation_no_significance_inflation():
    assert not [h for h in detect_patterns(SITUATION) if h.id == 1]

def test_evidence_no_ai_vocab():
    assert not [h for h in detect_patterns(EVIDENCE) if h.id == 7]

def test_evidence_no_weasel_words():
    assert not [h for h in detect_patterns(EVIDENCE) if h.id == 5]

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.