Copywriting Pack
★Trustedv1.0.0MIT✔Verified88by 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.
Quick Start
agentnode install copywriting-packUsage
From packagefrom 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
Package installs and imports correctly. runtime checks passed.
This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.
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
| Capability | Description |
|---|---|
write_copy | Generate 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
Permissions
This package declares the following access levels. Review before installing.
agentnode install copywriting-packFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode