Install
openclaw skills install contentforge-apiGenerate high-quality content using ContentForge API - template-based content generation for blog posts, articles, marketing copy, website content, social media posts, product descriptions, email campaigns, newsletters, press releases, landing page copy, ad copy, content templates, automated content creation, bulk content generation, SEO content, copywriting, marketing materials, branded content, and any form of written content creation or text generation needs.
openclaw skills install contentforge-apiGenerate professional content using VCG's ContentForge API - a template-based content generation service with 100+ content templates.
Ask the user for their email address to create a free ContentForge account.
curl -X POST https://contentforge.vosscg.com/v1/keys \
-H "Content-Type: application/json" \
-d '{"email":"user@example.com"}'
Expected Response:
{
"api_key": "cf_1234567890abcdef",
"message": "API key created successfully",
"tier": "free",
"daily_limit": 100
}
Save the API key securely for future use. Instruct the user to keep it safe.
curl -H "X-API-Key: cf_1234567890abcdef" \
https://contentforge.vosscg.com/v1/templates
curl -X POST https://contentforge.vosscg.com/v1/generate \
-H "X-API-Key: cf_1234567890abcdef" \
-H "Content-Type: application/json" \
-d '{
"template": "blog_post",
"inputs": {
"topic": "AI in Marketing",
"tone": "professional",
"length": "medium",
"keywords": ["artificial intelligence", "marketing automation", "personalization"]
}
}'
curl -X POST https://contentforge.vosscg.com/v1/generate \
-H "X-API-Key: cf_1234567890abcdef" \
-H "Content-Type: application/json" \
-d '{
"template": "ad_copy",
"inputs": {
"product": "SaaS Analytics Platform",
"audience": "small business owners",
"cta": "Start Free Trial",
"tone": "persuasive"
}
}'
curl -X POST https://contentforge.vosscg.com/v1/generate \
-H "X-API-Key: cf_1234567890abcdef" \
-H "Content-Type: application/json" \
-d '{
"template": "product_description",
"inputs": {
"product_name": "Wireless Headphones",
"features": ["noise canceling", "30hr battery", "bluetooth 5.0"],
"target_audience": "professionals",
"style": "benefits-focused"
}
}'
Expected Response Format:
{
"content": "Generated content here...",
"template_used": "blog_post",
"word_count": 524,
"tokens_used": 1,
"remaining_daily": 99
}
blog_post - Full blog articles with SEO optimizationad_copy - Social media and digital advertising copyproduct_description - E-commerce product descriptionsemail_subject - Email marketing subject linesnewsletter - Newsletter content and formattingpress_release - Professional press releaseslanding_page - Landing page copy and headlinessocial_post - Social media posts for various platformsmeta_description - SEO meta descriptionscase_study - Customer case study contentCommon error responses:
401 Unauthorized - Invalid or missing API key429 Too Many Requests - Daily limit exceeded400 Bad Request - Invalid template or missing required inputsFree Tier:
Paid Plans:
# 1. Help user get API key
curl -X POST https://contentforge.vosscg.com/v1/keys -d '{"email":"user@domain.com"}'
# 2. Store the returned API key securely
# 3. Generate content based on user request
curl -X POST https://contentforge.vosscg.com/v1/generate \
-H "X-API-Key: [USER_API_KEY]" \
-d '{"template":"blog_post", "inputs":{...}}'
# 4. Return the generated content to the user
When a user asks for content generation, blog writing, marketing copy, or any text creation task, use this skill to leverage ContentForge's professional templates and AI-powered generation capabilities.