Copywriting Pack

Trustedv1.0.0MITVerified88

by AgentNode · published 22 days ago · toolpack

Generate marketing copy, headlines, and ad text with proven formulas.

Create compelling marketing copy using frameworks like AIDA, PAS, and BAB. Generate headlines, product descriptions, email subjects, social posts, and landing page copy.

langchaincrewaigeneric

Quick Start

bash
agentnode install copywriting-pack

Usage

From package
python
from copywriting_pack.tool import run

result = run(
    capability="write_copy",
    params={
        "type": "landing_page_hero",
        "product": "CloudSync — real-time file sync for distributed teams",
        "audience": "remote engineering teams at startups",
        "tone": "confident, modern",
        "formula": "PAS",
        "variants": 3
    }
)

for i, variant in enumerate(result["variants"], 1):
    print(f"--- Variant {i} ---")
    print(f"Headline: {variant['headline']}")
    print(f"Subheadline: {variant['subheadline']}")
    print(f"CTA: {variant['cta']}")
    print()

Verification

high confidence88/100✔ Verified
smokeReturned valid result
+25/25
testsAuto-generated tests only
+8/15
importAll tools imported successfully
+15/15
installInstalled in 1.6s
+15/15
contractAll contract checks passed
+10/10
warningsNo warnings
0/0
determinismOutput consistency check
+5/5
reliability3/3 runs passed
+10/10

Package installs and imports correctly. runtime checks passed.

install1.6s
import78ms
smoke140ms
tests1.0s

This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.

Python 3.12.3ffmpegpopplertesseractuv

Last verified 18d ago· Runner v2.0.0

Use this when you need to...

  • Generate Google Ads headlines and descriptions
  • Write product landing page hero copy
  • Create email subject lines with A/B variants
  • Draft social media post captions for campaigns
  • Produce feature-benefit bullet points from specs

README

Copywriting Pack

Generate marketing copy, headlines, and ad text with proven copywriting formulas. Supports landing pages, Google Ads, email subjects, social media, and product descriptions.

Quick Start

agentnode install copywriting-pack
from copywriting_pack.tool import run

result = run(
    capability="write_copy",
    params={
        "type": "landing_page_hero",
        "product": "TaskFlow — project management for small teams",
        "audience": "startup founders"
    }
)
print(result["variants"][0]["headline"])

Usage

Landing page hero with PAS formula

result = run(
    capability="write_copy",
    params={
        "type": "landing_page_hero",
        "product": "CloudSync — real-time file sync for teams",
        "audience": "remote engineering teams",
        "formula": "PAS",
        "variants": 3
    }
)
for v in result["variants"]:
    print(f"{v['headline']} | {v['cta']}")

Google Ads copy

result = run(
    capability="write_copy",
    params={
        "type": "google_ads",
        "product": "FreshMeal — meal kit delivery",
        "keywords": ["meal kits", "healthy delivery"],
        "variants": 5
    }
)

Email subject lines

result = run(
    capability="write_copy",
    params={
        "type": "email_subject",
        "product": "Annual SaaS conference",
        "goal": "drive ticket purchases",
        "tone": "urgent, exclusive",
        "variants": 10
    }
)
for s in result["variants"]:
    print(f"{s['subject']} (predicted open rate: {s['predicted_open_rate']}%)")

API Reference

CapabilityDescription
write_copyGenerate marketing copy in various formats

Types: landing_page_hero, google_ads, email_subject, social_media, product_description, feature_bullets.

Formulas: PAS (Problem-Agitate-Solve), AIDA, BAB (Before-After-Bridge), 4Ps.

Parameters: product (required), type (required), audience, tone, keywords, formula, variants.

Requirements

No environment variables required.

License

MIT

Version History

Capabilities

copywritingwrite_copytool

Permissions

This package declares the following access levels. Review before installing.

Networknone
Filesystemnone
Code Executionnone
Data Accessinput_only
User Approvalnever
bash
agentnode install copywriting-pack

Files (3)

License

MIT

Stats

Downloads0
Installs0
Versionv1.0.0
Published3/16/2026
Channelstable
Typetoolpack
Entrypointcopywriting_pack.tool

Compatibility

Frameworks

langchaincrewaigeneric

Runtime

python

Python Version

>=3.10

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode