Best use case
Telegram Marketing Audit Command Handler Skill is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
## Purpose
Teams using Telegram Marketing Audit Command Handler Skill should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/telegram-marketing-audit-adarsh/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How Telegram Marketing Audit Command Handler Skill Compares
| Feature / Agent | Telegram Marketing Audit Command Handler Skill | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
## Purpose
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
Best AI Agents for Marketing
A curated list of the best AI agents and skills for marketing teams focused on SEO, content systems, outreach, and campaign execution.
AI Agent for Product Research
Browse AI agent skills for product research, competitive analysis, customer discovery, and structured product decision support.
SKILL.md Source
# Telegram Marketing Audit Command Handler Skill
## Purpose
Handles the Telegram `/marketing_audit` command by triggering the Marketing Orchestrator skill with given input and replying with the final report.
## Telegram Command
- Command: `/marketing_audit`
- Args: `instagramHandle` (optional), `websiteDomain` (optional)
## Implementation
```javascript
module.exports = async function marketingAuditHandler(context) {
const { instagramHandle, websiteDomain } = context.args;
if (!instagramHandle && !websiteDomain) {
await context.reply("Please provide an Instagram handle or website domain (or both).");
return;
}
await context.reply("Starting marketing audit. This may take a few minutes...");
try {
const result = await context.callSkill("marketing-orchestrator", {
instagramHandle,
websiteDomain,
});
if (result && result.reportMarkdown) {
await context.reply(result.reportMarkdown);
} else {
await context.reply("Audit completed but no report was generated.");
}
} catch (err) {
await context.reply("Error during marketing audit: " + err.message);
}
};
```
## Notes
- Add this skill folder to OpenClaw skills directory.
- Register a Telegram slash command `/marketing_audit` that uses this skill as the handler via OpenClaw config or ClawHub.
- Ensure environment variables for collectors (API keys) are set.Related Skills
Twitter Command Center (Search + Post)
Searches and reads X (Twitter): profiles, timelines, mentions, followers, tweet search, trends, lists, communities, and Spaces. Publishes posts after the user completes OAuth in the browser. Use when the user asks about Twitter/X data, social listening, or posting without sharing account passwords.
Payroll Compliance Auditor
Run a full payroll audit in under 10 minutes. Catches the errors that cost companies $845 per violation.
FP&A Command Center — Financial Planning & Analysis Engine
You are a senior FP&A professional. You build financial models, run variance analysis, produce board-ready reports, and turn raw numbers into strategic decisions. You work with whatever data the user provides — spreadsheets, CSV, pasted numbers, or verbal estimates.
Energy Audit — Commercial Building Assessment
Run a full energy audit for commercial or industrial facilities. Identifies waste, models savings, and generates a prioritized retrofit roadmap with ROI timelines.
Email Marketing Command Center
Complete email marketing system — strategy, sequences, segmentation, automation, deliverability, and analytics. Build campaigns that convert.
Email Marketing Engine
Complete email marketing system — deliverability, list building, sequences, cold outreach, automation, analytics, and revenue optimization. Zero dependencies.
Customer Support Command Center
Enterprise-grade customer support system: ticket triage, response templates, escalation workflows, CSAT tracking, knowledge base management, and churn prevention. Turns your AI agent into a support team lead.
Compliance & Audit Readiness Engine
Your AI compliance officer. Guides startups and scale-ups through SOC 2, ISO 27001, GDPR, HIPAA, and PCI DSS — from zero to audit-ready. No consultants needed.
Compliance Audit Generator
Run internal compliance audits against major frameworks without hiring a consultant.
Cloud Cost Optimization Audit
Analyze cloud infrastructure spend across AWS, Azure, and GCP. Identify waste, rightsizing opportunities, and reserved instance savings.
Budget & Expense Tracker — AI Agent Financial Command Center
Track every dollar, enforce budgets, spot spending patterns, and build wealth — all through natural conversation with your AI agent.
AI Spend Audit
Audit your company's AI spending — find waste, measure ROI, and right-size your tool stack.