From getlark
This skill should be used when the user asks to "create a workflow", "create a getlark test", "add an end-to-end test", "author a larkci workflow", or runs `/getlark:create-workflow`. Converts a natural-language test description (target + ordered steps; target may be a URL, API endpoint, CLI binary, script, or any other software surface) into a `getlark workflows create` invocation with an auto-generated name. Prefer `manage` when the user wants to update or archive an existing workflow, and `invoke-workflow` when they want to run one — this skill only *creates* new workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/getlark:create-workflow [description][description]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Turn a short natural-language test description into a new getlark workflow. The user supplies the description (target + steps). This skill derives a concise workflow name, surfaces optional settings (mode, secret contexts, group), and calls `getlark workflows create`.
Turn a short natural-language test description into a new getlark workflow. The user supplies the description (target + steps). This skill derives a concise workflow name, surfaces optional settings (mode, secret contexts, group), and calls getlark workflows create.
getlark workflows can test any surface — web UIs, HTTP/GraphQL APIs, CLIs, shell scripts, data pipelines, or mixed flows. Do not assume the target is a browser URL.
staging credentials, click 'New project', confirm the modal, assert dashboard loads."staging_api creds and a sample cart payload, assert 201 and that the response order.status is pending."mytool import ./fixtures/sample.csv --dry-run, assert exit code 0 and stdout contains 3 rows parsed."If the user invoked /getlark:create-workflow <text>, treat <text> as the description. Otherwise ask for it.
Ensure the description contains a target (URL, API endpoint, CLI command, script path, etc.) and at least one action step. If either is missing, ask one targeted follow-up. Do not pad thin descriptions with invented steps — confirm with the user first.
Generate a short, Title-Case name (3–6 words) that captures the intent. Heuristic:
Show the derived name to the user before creating. Offer to accept or override.
Ask only the questions that matter for this workflow. Skip the rest.
ai_driven. Only ask if the user mentioned "deterministic", "scripted", "locked", or similar.staging credentials"). Offer to list existing contexts via getlark secret-contexts list.getlark workflow-groups list has existing groups. Otherwise skip.Use AskUserQuestion for a single batched prompt when more than one optional field is in play.
Build the command with properly quoted arguments:
getlark workflows create \
--name "<derived name>" \
--description "<full description>" \
[--mode deterministic] \
[--secret-contexts name1 name2] \
[--group-id <id>]
Description is passed verbatim — getlark's generation step parses the target and steps server-side. Do not restructure or bullet-ify it.
Note: --secret-contexts takes space-separated values (variadic), not comma-separated.
The CLI prints the new workflow JSON to stdout. Extract and report:
idstatus (will typically be pending_generation initially)https://dashboard.getlark.ai/workflows/<id>Tell the user the workflow is now queued for generation and suggest they run /getlark:invoke-workflow once the workflow status reaches active (or generation_successful). They can check status via getlark workflows get <id>.
--name or --description missing: the CLI hard-errors. This skill must always supply both.--group-id: verify with getlark workflow-groups list before passing.--secret-contexts name: verify with getlark secret-contexts list. The API will reject unknown contexts.User says: /getlark:create-workflow Go to https://app.example.com/signup, fill the form with a new email, submit, verify confirmation email message appears.
Derive: name = "Signup Flow Confirmation"
Run:
getlark workflows create \
--name "Signup Flow Confirmation" \
--description "Go to https://app.example.com/signup, fill the form with a new email, submit, verify confirmation email message appears."
Report id + dashboard link.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub getlark/skills --plugin getlark