Install
openclaw skills install weekly-monthly-reporterGenerate professional weekly or monthly work reports from text or files with customizable styles, templates, and output formats including Markdown, Word, and...
openclaw skills install weekly-monthly-reporterTransform raw work content into professional weekly/monthly reports using AI.
Slug: weekly-monthly-reporter
| Feature | FREE | PRO |
|---|---|---|
| Text input | ✅ | ✅ |
| File upload (TXT/MD) | ❌ | ✅ |
| Markdown output | ✅ | ✅ |
| Word (.docx) output | ❌ | ✅ |
| PDF output | ❌ | ✅ |
| Custom templates | ❌ | ✅ |
| Report history | ❌ | ✅ |
| Monthly generations | 5 | Unlimited |
| History retention | — | 12 months |
Per-call: $0.01 USDT per report generation
No monthly subscription. Pay only for what you use.
# Generate a weekly report
python -m scripts.main generate --content "Completed project A phase 1..." -k YOUR_API_KEY
# Generate from file
python -m scripts.main generate --file worklog.md -k YOUR_API_KEY
# Monthly report
python -m scripts.main generate --type monthly -c "Work content..." -k YOUR_API_KEY
# Output to Word
python -m scripts.main generate -c "Content..." -k KEY --format word --output report.docx
# View history
python -m scripts.main history -k YOUR_API_KEY
# Check status
python -m scripts.main status -k YOUR_API_KEY
from scripts.report_generator import ReportGenerator
from scripts.templates import ReportType, ReportStyle
generator = ReportGenerator(api_key="your_llm_key")
result = generator.generate_report(
work_content="Completed A project phase 1...",
report_type=ReportType.WEEKLY,
style=ReportStyle.CONCISE,
api_key="your_billing_key"
)
print(result["report"])
SKILL_BILLING_API_KEY # Your SkillPay Builder API Key
SKILL_BILLING_SKILL_ID # Skill slug: weekly-monthly-reporter
Set these in your runtime environment. Without them, the tool runs in Dev Mode (FREE tier, no billing).
This skill uses SkillPay (skillpay.me) for per-call billing at $0.01 USDT per report.
skillpay.me exclusively for billing purposesSKILL_BILLING_API_KEY not set): FULL FREE USAGE — no API key required, no billing/tmp/weekly-monthly-reporter/ — no data leaves your environment/tmp/ — no home directory accessrequests>=2.28.0
python-docx>=0.8.11 # Word output
reportlab>=4.0.0 # PDF output