🦖 TaskZilla Help Center

We're here to help you
tame the chaos

Search our knowledge base, submit a ticket, or browse the latest release notes.

All systems operational Checking…

Frequently Asked Questions

Quick answers to the most common questions. Use the search above to filter.

Submit a Support Ticket

Can't find your answer? We'll get back to you within 24 hours. Every ticket gets automatically triaged by the TaskZilla agent and opened as a GitHub Issue.

Release Pipeline

How tickets and feedback flow all the way into new TaskZilla releases — with full GitHub best practices.

1

Submit Ticket

You report a bug or feature here. Each ticket gets a unique ID and is queued for triage.

support.taskzilla.ai
2

AI Triage

TaskZilla agent labels tickets (bug / feature / duplicate), de-dupes them, and opens a GitHub Issue automatically.

GitHub Issues
3

Dev Sprint

Issues land in the backlog. PRs reference them — Closes #123 auto-closes the issue on merge.

Pull Requests
4

Release Cut

Merging to main with a release label triggers: changelog → semver tag → GitHub Release artifact.

GitHub Actions
5

Agent Notified

On release, a webhook fires to the support relay → TaskZilla agent gets a Telegram ping → next standup includes the release announcement.

TaskZilla Agent

Sending Responses to the TaskZilla Agent

Three ways to push information back to the running TaskZilla agent — from GitHub Actions, scripts, or the relay.

Option 1 — openclaw agent CLI

Direct one-turn agent message from any script or cron job.

openclaw agent \
  --agent taskzilla \
  -m "New ticket #42: user reports X" \
  --deliver
Option 2 — Release Webhook (recommended)

GitHub Actions POSTs to the relay, which forwards to Telegram → agent sees it.

# In GitHub Actions workflow:
curl -sX POST \
  https://support.taskzilla.ai/api/webhook/release \
  -H "X-Webhook-Secret: $SECRET" \
  -d '{"version":"v2.6.1","notes":"…"}'
Option 3 — ACP Trigger Script

Python script that calls openclaw agent via the gateway and traces to Langfuse.

python3 \
  ~/.openclaw/skills/acp-trigger/acp_trigger.py \
  --message "Release v2.6.1 shipped 🚀" \
  --session "agent:taskzilla:main"

Recent Releases

Latest TaskZilla updates. Fetched live from the release registry.

Loading releases…