coda
General-purpose Coda document manager via REST API v1. Supports listing/creating/updating/deleting docs, managing tables/rows/pages, triggering automations, and exploring doc structure. Requires CODA_API_TOKEN environment variable. Delete operations require explicit
Installation
Pick a client and clone the repository into its skills directory.
Installation
About this skill
General-purpose Coda document manager via REST API v1. Supports listing/creating/updating/deleting docs, managing tables/rows/pages, triggering automations, and exploring doc structure. Requires CODA_API_TOKEN environment variable. Delete operations require explicit confirmation; publishing and permission changes require explicit user intent.
How to use
Przygotuj token API: przejdź na stronę https://coda.io/account w sekcji API Settings i skopiuj swój token dostępu. Ustaw zmienną środowiskową CODA_API_TOKEN z wartością tokenu (export CODA_API_TOKEN="twój_token").
Zainstaluj wymagane zależności: upewnij się, że masz Python 3.7 lub nowszy oraz bibliotekę requests (pip install requests).
Pobierz umiejętność z repozytorium openclaw i umieść ją w katalogu skills swojego agenta. Skrypt CLI znajduje się w scripts/coda_cli.py.
Aby wylistować swoje dokumenty, uruchom: python scripts/coda_cli.py docs list --query "nazwa_projektu". Możesz wyszukiwać dokumenty po nazwie lub ID.
Do pracy z tabelami i wierszami: najpierw pobierz ID dokumentu, następnie listuj tabele (python scripts/coda_cli.py tables list ID_dokumentu), a potem wiersze w wybranej tabeli (python scripts/coda_cli.py rows list ID_dokumentu ID_tabeli).
Aby utworzyć nowy dokument lub wstawić wiersz do tabeli, użyj odpowiednich poleceń create lub insert. Operacje usuwania wymagają jawnego potwierdzenia, a zmiany uprawnień i publikacja dokumentu wymagają świadomej intencji użytkownika.