A developer-centric tool for programmatically managing Tally.so forms, surveys, and questionnaires via a block-based REST API.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install tally
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install tally using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
This skill provides a technical interface for interacting with the Tally.so REST API, allowing developers to automate the creation and modification of online forms. By utilizing Openclaw Skills, users can bypass manual builders and generate complex data collection tools directly through code.
The integration focuses on a modular block-based architecture. Each form component—from headers and text inputs to checkboxes and dropdowns—is treated as an individual block. These blocks are associated using unique group identifiers, ensuring that labels and input fields remain logically connected during programmatic updates.
To get started with this skill, configure your API credentials and use the following command structure:
# Store your API key
mkdir -p ~/.config/tally
echo "YOUR_API_KEY" > ~/.config/tally/api_key
# Set the environment variable
TALLY_KEY=$(cat ~/.config/tally/api_key)
# Backup and Update pattern
curl -s "https://api.tally.so/forms/{FORM_ID}" -H "Authorization: Bearer $TALLY_KEY" > backup.json
curl -s "https://api.tally.so/forms/{FORM_ID}" -X PATCH -H "Authorization: Bearer $TALLY_KEY" -H "Content-Type: application/json" -d @form_update.json
The Tally API organizes data into a flattened array of blocks. Use the following schema guidelines for Openclaw Skills implementations:
| Attribute | Description |
|---|---|
uuid |
A unique string for each block (e.g., q1-input). |
type |
The functional block type (HEADING_1, INPUT_TEXT, etc.). |
groupUuid |
Links multiple blocks into a single logical question. |
payload |
Contains content, such as safeHTMLSchema for text or required flags. |
index |
Determines the display order of options in selection blocks. |
Loading
A comprehensive integration for managing Brevo email marketing workflows, including contact synchronization, transactional messaging, and campaign automation.

An AI-powered quantitative trading simulation system that automates strategy generation and execution using real-market data.

A specialized tool to fetch and categorize news highlights from CCTV News Broadcast (Xinwen Lianbo) for any specific date.

ClawPrint is a decentralized infrastructure for AI agent discovery, reputation management, and secure work exchange using on-chain verification.

An AI-powered social relationship manager that tracks personal profiles, archives shared experiences, and automates event reminders.

Automate the transformation of source code into production-ready RPM packages for CentOS and RHEL systems.








































