Fastfold Docs
Apps

Report Sharing

Send markdown reports to Slack and save them to the Fastfold library.

Use this when you want to share a markdown report to the configured Agent CLI Slack destination.

SDK

from fastfold import Client

client = Client()
result = client.reports.send_agent_cli_report(
    "## Demo Report\n\n- Workflow completed.\n- Artifacts are ready.",
    report_name="demo_report",
)
print(result.ok, result.library_item_id)

CLI

fastfold-cli reports slack --markdown-file fastfold/examples/reports/sample_report.md

Required local files:

  • markdown report: .md

The response includes whether Slack setup is required and, when saved, the created library item ID.

Last updated on

On this page