{"id":"a6378827-8c37-441b-9f3b-f2437f5ea9c6","shortId":"uM9zjj","kind":"skill","title":"formtitan","tagline":"FormTitan integration. Manage Forms, Submissions, Users, Roles, Integrations. Use when the user wants to interact with FormTitan data.","description":"# FormTitan\n\nFormTitan is an enterprise-grade form and survey platform. It's used by businesses to create web forms, surveys, and documents with advanced features like conditional logic and integrations. It's typically used by sales, marketing, and operations teams.\n\nOfficial docs: https://support.formtitan.com/en/\n\n## FormTitan Overview\n\n- **Form**\n  - **Field**\n- **Titan Project**\n- **Titan Package**\n- **Titan Sign**\n- **Titan Survey**\n- **Titan PDF**\n- **Titan Doc**\n- **Integration Log**\n- **Payment Log**\n- **Push Log**\n- **Submission**\n- **User**\n- **Account**\n- **Environment**\n- **Get Integration Logs** — Use for retrieving logs related to integrations.\n- **Get Payment Logs** — Use for retrieving logs related to payments.\n- **Get Push Logs** — Use for retrieving push notification logs.\n\n## Working with FormTitan\n\nThis skill uses the Membrane CLI to interact with FormTitan. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing.\n\n### Install the CLI\n\nInstall the Membrane CLI so you can run `membrane` from the terminal:\n\n```bash\nnpm install -g @membranehq/cli@latest\n```\n\n### Authentication\n\n```bash\nmembrane login --tenant --clientName=<agentType>\n```\n\nThis will either open a browser for authentication or print an authorization URL to the console, depending on whether interactive mode is available.\n\n**Headless environments:** The command will print an authorization URL. Ask the user to open it in a browser. When they see a code after completing login, finish with:\n\n```bash\nmembrane login complete <code>\n```\n\nAdd `--json` to any command for machine-readable JSON output.\n\n**Agent Types** : claude, openclaw, codex, warp, windsurf, etc. Those will be used to adjust tooling to be used best with your harness\n\n### Connecting to FormTitan\n\nUse `membrane connection ensure` to find or create a connection by app URL or domain:\n\n```bash\nmembrane connection ensure \"https://formtitan.com\" --json\n```\nThe user completes authentication in the browser. The output contains the new connection id.\n\nThis is the fastest way to get a connection. The URL is normalized to a domain and matched against known apps. If no app is found, one is created and a connector is built automatically.\n\nIf the returned connection has `state: \"READY\"`, skip to **Step 2**.\n\n#### 1b. Wait for the connection to be ready\n\nIf the connection is in `BUILDING` state, poll until it's ready:\n\n```bash\nnpx @membranehq/cli connection get <id> --wait --json\n```\n\nThe `--wait` flag long-polls (up to `--timeout` seconds, default 30) until the state changes. Keep polling until `state` is no longer `BUILDING`.\n\nThe resulting state tells you what to do next:\n\n- **`READY`** — connection is fully set up. Skip to **Step 2**.\n- **`CLIENT_ACTION_REQUIRED`** — the user or agent needs to do something. The `clientAction` object describes the required action:\n  - `clientAction.type` — the kind of action needed:\n    - `\"connect\"` — user needs to authenticate (OAuth, API key, etc.). This covers initial authentication and re-authentication for disconnected connections.\n    - `\"provide-input\"` — more information is needed (e.g. which app to connect to).\n  - `clientAction.description` — human-readable explanation of what's needed.\n  - `clientAction.uiUrl` (optional) — URL to a pre-built UI where the user can complete the action. Show this to the user when present.\n  - `clientAction.agentInstructions` (optional) — instructions for the AI agent on how to proceed programmatically.\n\n  After the user completes the action (e.g. authenticates in the browser), poll again with `membrane connection get <id> --json` to check if the state moved to `READY`.\n\n- **`CONFIGURATION_ERROR`** or **`SETUP_FAILED`** — something went wrong. Check the `error` field for details.\n\n### Searching for actions\n\nSearch using a natural language description of what you want to do:\n\n```bash\nmembrane action list --connectionId=CONNECTION_ID --intent \"QUERY\" --limit 10 --json\n```\n\nYou should always search for actions in the context of a specific connection.\n\nEach result includes `id`, `name`, `description`, `inputSchema` (what parameters the action accepts), and `outputSchema` (what it returns).\n\n## Popular actions\n\n| Name | Key | Description |\n| --- | --- | --- |\n| Remove User from Profile Groups | remove-user-from-profile-groups | Remove a user from all profile groups they belong to |\n| Get Statistics | get-statistics | Retrieve general statistics for your FormTitan account |\n| Get Report | get-report | Retrieve details of a specific report by ID |\n| List Reports | list-reports | Retrieve all reports available in your FormTitan account |\n| Get Theme | get-theme | Retrieve details of a specific theme by ID |\n| List Themes | list-themes | Retrieve all themes available in your FormTitan account |\n| Get Submission | get-submission | Retrieve details of a specific form submission by ID |\n| List Submissions | list-submissions | Retrieve all submissions for a specific form |\n| Submit Form | submit-form | Submit a form programmatically with field values. |\n| Get User | get-user | Retrieve details of a specific user by ID |\n| List Users | list-users | Retrieve all users associated with your FormTitan account |\n| Get Form | get-form | Retrieve details of a specific form by ID |\n| List Forms | list-forms | Retrieve all forms associated with your FormTitan account |\n\n### Running actions\n\n```bash\nmembrane action run <actionId> --connectionId=CONNECTION_ID --json\n```\n\nTo pass JSON parameters:\n\n```bash\nmembrane action run <actionId> --connectionId=CONNECTION_ID --input '{\"key\": \"value\"}' --json\n```\n\nThe result is in the `output` field of the response.\n\n\n### Proxy requests\n\nWhen the available actions don't cover your use case, you can send requests directly to the FormTitan API through Membrane's proxy. Membrane automatically appends the base URL to the path you provide and injects the correct authentication headers — including transparent credential refresh if they expire.\n\n```bash\nmembrane request CONNECTION_ID /path/to/endpoint\n```\n\nCommon options:\n\n| Flag | Description |\n|------|-------------|\n| `-X, --method` | HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |\n| `-H, --header` | Add a request header (repeatable), e.g. `-H \"Accept: application/json\"` |\n| `-d, --data` | Request body (string) |\n| `--json` | Shorthand to send a JSON body and set `Content-Type: application/json` |\n| `--rawData` | Send the body as-is without any processing |\n| `--query` | Query-string parameter (repeatable), e.g. `--query \"limit=10\"` |\n| `--pathParam` | Path parameter (repeatable), e.g. `--pathParam \"id=123\"` |\n\n\n## Best practices\n\n- **Always prefer Membrane to talk with external apps** — Membrane provides pre-built actions with built-in auth, pagination, and error handling. This will burn less tokens and make communication more secure\n- **Discover before you build** — run `membrane action list --intent=QUERY` (replace QUERY with your intent) to find existing actions before writing custom API calls. Pre-built actions handle pagination, field mapping, and edge cases that raw API calls miss.\n- **Let Membrane handle credentials** — never ask the user for API keys or tokens. Create a connection instead; Membrane manages the full Auth lifecycle server-side with no local secrets.","tags":["formtitan","application","skills","membranedev","agent-skills","claude-code-skill","claude-skills","membrane"],"capabilities":["skill","source-membranedev","skill-formtitan","topic-agent-skills","topic-claude-code-skill","topic-claude-skills","topic-membrane","topic-skills"],"categories":["application-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/membranedev/application-skills/formtitan","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add membranedev/application-skills","source_repo":"https://github.com/membranedev/application-skills","install_from":"skills.sh"}},"qualityScore":"0.467","qualityRationale":"deterministic score 0.47 from registry signals: · indexed on github topic:agent-skills · 35 github stars · SKILL.md body (7,368 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:00:29.703Z","embedding":null,"createdAt":"2026-04-18T22:37:56.348Z","updatedAt":"2026-05-18T19:00:29.703Z","lastSeenAt":"2026-05-18T19:00:29.703Z","tsv":"'/en/':65 '/path/to/endpoint':889 '10':588,954 '123':962 '1b':352 '2':351,421 '30':390 'accept':614,915 'account':90,657,683,709,773,799 'action':423,439,444,503,528,565,580,595,613,621,801,804,816,840,978,1004,1016,1025 'add':235,908 'adjust':259 'advanc':44 'agent':246,428,517 'ai':516 'alway':592,965 'api':452,855,1020,1035,1047 'app':282,326,329,475,972 'append':862 'application/json':916,934 'as-i':939 'ask':212,1043 'associ':769,795 'auth':151,983,1059 'authent':136,174,187,295,450,458,462,530,875 'author':191,210 'automat':140,340,861 'avail':202,679,705,839 'base':864 'bash':168,175,231,286,372,578,802,814,884 'belong':644 'best':264,963 'bodi':920,928,938 'browser':185,220,298,533 'build':365,402,1001 'built':339,495,977,981,1024 'built-in':980 'burn':990 'busi':35 'call':1021,1036 'case':846,1032 'chang':394 'check':542,557 'claud':248 'cli':129,155,159 'client':422 'clientact':434 'clientaction.agentinstructions':511 'clientaction.description':479 'clientaction.type':440 'clientaction.uiurl':488 'clientnam':179 'code':225 'codex':250 'command':206,239 'common':890 'communic':995 'complet':227,234,294,501,526 'condit':47 'configur':549 'connect':268,273,280,288,304,314,344,356,362,375,413,446,465,477,538,583,602,807,819,887,1053 'connectionid':582,806,818 'connector':337 'consol':195 'contain':301 'content':932 'content-typ':931 'context':598 'correct':874 'cover':456,843 'creat':37,278,334,1051 'credenti':138,879,1041 'custom':1019 'd':917 'data':19,918 'default':389,903 'delet':902 'depend':196 'describ':436 'descript':571,608,624,893 'detail':562,664,690,716,754,780 'direct':851 'disconnect':464 'discov':998 'doc':62,81 'document':42 'domain':285,321 'e.g':473,529,913,951,959 'edg':1031 'either':182 'ensur':274,289 'enterpris':25 'enterprise-grad':24 'environ':91,204 'error':550,559,986 'etc':253,454 'exist':1015 'expir':883 'explan':483 'extern':971 'fail':553 'fastest':309 'featur':45 'field':69,560,746,831,1028 'find':276,1014 'finish':229 'flag':381,892 'focus':144 'form':5,27,39,68,720,735,737,740,743,775,778,784,788,791,794 'formtitan':1,2,18,20,21,66,123,133,270,656,682,708,772,798,854 'formtitan.com':290 'found':331 'full':1058 'fulli':415 'g':171 'general':652 'get':92,102,112,312,376,539,646,649,658,661,684,687,710,713,748,751,774,777,898,905 'get-form':776 'get-report':660 'get-statist':648 'get-submiss':712 'get-them':686 'get-us':750 'grade':26 'group':629,635,642 'h':906,914 'handl':135,987,1026,1040 'har':267 'header':876,907,911 'headless':203 'http':896 'human':481 'human-read':480 'id':305,584,606,670,696,723,760,786,808,820,888,961 'includ':605,877 'inform':470 'initi':457 'inject':872 'input':468,821 'inputschema':609 'instal':153,156,170 'instead':1054 'instruct':513 'integr':3,9,50,82,93,101,147 'intent':585,1006,1012 'interact':16,131,199 'json':236,244,291,378,540,589,809,812,824,922,927 'keep':395 'key':453,623,822,1048 'kind':442 'known':325 'languag':570 'latest':173 'less':991 'let':1038 'lifecycl':1060 'like':46 'limit':587,953 'list':581,671,674,697,700,724,727,761,764,787,790,1005 'list-form':789 'list-report':673 'list-submiss':726 'list-them':699 'list-us':763 'local':1066 'log':83,85,87,94,98,104,108,114,120 'logic':48,148 'login':177,228,233 'long':383 'long-pol':382 'longer':401 'machin':242 'machine-read':241 'make':994 'manag':4,1056 'map':1029 'market':57 'match':323 'membran':128,134,158,164,176,232,272,287,537,579,803,815,857,860,885,967,973,1003,1039,1055 'membranehq/cli':172,374 'method':895,897 'miss':1037 'mode':200 'move':546 'name':607,622 'natur':569 'need':429,445,448,472,487 'never':1042 'new':303 'next':411 'normal':318 'notif':119 'npm':169 'npx':373 'oauth':451 'object':435 'offici':61 'one':332 'open':183,216 'openclaw':249 'oper':59 'option':489,512,891 'output':245,300,830 'outputschema':616 'overview':67 'packag':73 'pagin':984,1027 'paramet':611,813,949,957 'pass':811 'patch':901 'path':868,956 'pathparam':955,960 'payment':84,103,111 'pdf':79 'platform':30 'plumb':152 'poll':367,384,396,534 'popular':620 'post':899 'practic':964 'pre':494,976,1023 'pre-built':493,975,1022 'prefer':966 'present':510 'print':189,208 'proceed':521 'process':944 'profil':628,634,641 'programmat':522,744 'project':71 'provid':467,870,974 'provide-input':466 'proxi':835,859 'push':86,113,118 'put':900 'queri':586,945,947,952,1007,1009 'query-str':946 'rather':149 'raw':1034 'rawdata':935 're':461 're-authent':460 'readabl':243,482 'readi':347,359,371,412,548 'refresh':139,880 'relat':99,109 'remov':625,631,636 'remove-user-from-profile-group':630 'repeat':912,950,958 'replac':1008 'report':659,662,668,672,675,678 'request':836,850,886,910,919 'requir':424,438 'respons':834 'result':404,604,826 'retriev':97,107,117,651,663,676,689,702,715,729,753,766,779,792 'return':343,619 'role':8 'run':163,800,805,817,1002 'sale':56 'search':563,566,593 'second':388 'secret':1067 'secur':997 'see':223 'send':849,925,936 'server':1062 'server-sid':1061 'set':416,930 'setup':552 'shorthand':923 'show':504 'side':1063 'sign':75 'skill':125 'skill-formtitan' 'skip':348,418 'someth':432,554 'source-membranedev' 'specif':601,667,693,719,734,757,783 'state':346,366,393,398,405,545 'statist':647,650,653 'step':350,420 'string':921,948 'submiss':6,88,711,714,721,725,728,731 'submit':736,739,741 'submit-form':738 'support.formtitan.com':64 'support.formtitan.com/en/':63 'survey':29,40,77 'talk':969 'team':60 'tell':406 'tenant':178 'termin':167 'theme':685,688,694,698,701,704 'timeout':387 'titan':70,72,74,76,78,80 'token':992,1050 'tool':260 'topic-agent-skills' 'topic-claude-code-skill' 'topic-claude-skills' 'topic-membrane' 'topic-skills' 'transpar':878 'type':247,933 'typic':53 'ui':496 'url':192,211,283,316,490,865 'use':10,33,54,95,105,115,126,257,263,271,567,845 'user':7,13,89,214,293,426,447,499,508,525,626,632,638,749,752,758,762,765,768,1045 'valu':747,823 'wait':353,377,380 'want':14,575 'warp':251 'way':310 'web':38 'went':555 'whether':198 'windsurf':252 'without':942 'work':121 'write':1018 'wrong':556 'x':894","prices":[{"id":"8579e5cb-bab4-4724-9db2-37f3793011b0","listingId":"a6378827-8c37-441b-9f3b-f2437f5ea9c6","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"membranedev","category":"application-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T22:37:56.348Z"}],"sources":[{"listingId":"a6378827-8c37-441b-9f3b-f2437f5ea9c6","source":"github","sourceId":"membranedev/application-skills/formtitan","sourceUrl":"https://github.com/membranedev/application-skills/tree/main/skills/formtitan","isPrimary":false,"firstSeenAt":"2026-04-18T22:37:56.348Z","lastSeenAt":"2026-05-18T19:00:29.703Z"}],"details":{"listingId":"a6378827-8c37-441b-9f3b-f2437f5ea9c6","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"membranedev","slug":"formtitan","github":{"repo":"membranedev/application-skills","stars":35,"topics":["agent-skills","claude-code-skill","claude-skills","membrane","skills"],"license":null,"html_url":"https://github.com/membranedev/application-skills","pushed_at":"2026-04-28T08:45:44Z","description":null,"skill_md_sha":"002c8b62890c38be63c0800a8b79d81b65303e20","skill_md_path":"skills/formtitan/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/membranedev/application-skills/tree/main/skills/formtitan"},"layout":"multi","source":"github","category":"application-skills","frontmatter":{"name":"formtitan","license":"MIT","description":"FormTitan integration. Manage Forms, Submissions, Users, Roles, Integrations. Use when the user wants to interact with FormTitan data.","compatibility":"Requires network access and a valid Membrane account (Free tier supported)."},"skills_sh_url":"https://skills.sh/membranedev/application-skills/formtitan"},"updatedAt":"2026-05-18T19:00:29.703Z"}}