{"id":50569766,"url":"https://github.com/getlark/skills","last_synced_at":"2026-06-04T17:30:36.445Z","repository":{"id":352757353,"uuid":"1216496137","full_name":"getlark/skills","owner":"getlark","description":"Agent skills for getlark.ai — author, run, and manage end-to-end test workflows from your coding agent.","archived":false,"fork":false,"pushed_at":"2026-05-18T18:20:47.000Z","size":49,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-18T18:33:03.711Z","etag":null,"topics":["claude-code","coding-agent","e2e-testing","skills","testing"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/getlark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-21T00:59:58.000Z","updated_at":"2026-05-18T18:20:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/getlark/skills","commit_stats":null,"previous_names":["getlark/skills"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/getlark/skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getlark%2Fskills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getlark%2Fskills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getlark%2Fskills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getlark%2Fskills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getlark","download_url":"https://codeload.github.com/getlark/skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getlark%2Fskills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33916319,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-04T02:00:06.755Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["claude-code","coding-agent","e2e-testing","skills","testing"],"created_at":"2026-06-04T17:30:35.702Z","updated_at":"2026-06-04T17:30:36.435Z","avatar_url":"https://github.com/getlark.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# getlark skills\n\nAgent skills for [getlark](https://getlark.ai) — author, run, and manage end-to-end test workflows from your coding agent.\n\nWorks with Claude Code (as a full plugin with slash commands and hooks), plus Cursor, Codex, OpenCode, Windsurf, Gemini CLI, Copilot, and any other agent supported by Vercel's [`skills`](https://github.com/vercel-labs/skills) ecosystem.\n\n## Install\n\n### Claude Code\n\n```\n/plugin marketplace add getlark/skills\n/plugin install getlark\n```\n\nThis installs the skills plus the optional `git commit`/`git push` validation hook. Then run `/getlark:setup` to install the CLI and configure credentials.\n\n### Other agents\n\n```bash\nnpx skills add getlark/skills\n```\n\nThis installs the skills in the format your agent expects (Claude `SKILL.md`, Cursor rules, `AGENTS.md`, etc). Invoke the `setup` skill afterwards to install `@getlark/cli` and set `LARKCI_API_KEY`.\n\n## Prerequisites\n\n- Node.js ≥ 18\n- A getlark.ai account and API key ([dashboard](https://dashboard.getlark.ai/settings/api-keys))\n\nThe skills shell out to [`@getlark/cli`](https://www.npmjs.com/package/@getlark/cli) and expect `LARKCI_API_KEY` in your environment — `setup` handles both.\n\n## Skills\n\n| Skill              | What it does                                                                                                                                              |\n| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `getlark-overview` | Background on getlark concepts (workflows, groups, executions, repairs, generations, secret contexts, events). Loaded when you mention getlark or larkci. |\n| `setup`            | Installs `@getlark/cli` and configures `LARKCI_API_KEY` in your shell rc.                                                                                 |\n| `create-workflow`  | Turns a natural-language test description into a `getlark workflows create` invocation.                                                                   |\n| `invoke-workflow`  | Runs one or more workflows, waits for terminal status, reports pass/fail.                                                                                 |\n| `validate-branch`  | Runs configured workflows against the current branch to check for regressions.                                                                            |\n| `manage`           | Read/update/archive workflows, groups, secret contexts, executions, repairs, generations, and events.                                                     |\n\n## Optional: Claude Code branch-validation hook\n\nCreate `.claude/getlark.local.md` at the root of any project where you want the hook active:\n\n```yaml\n---\nenabled: true\n# Optional: restrict to specific workflows (default: run all)\nworkflow_ids: []\n# Optional: restrict to a workflow group\nworkflow_group_id: \"\"\n# Optional: poll timeout in seconds (default: 600)\npoll_timeout_seconds: 600\n---\n```\n\nWhen enabled, the plugin runs your configured workflows after `git commit` or `git push` and reports pass/fail to Claude.\n\n## Configuration\n\n| Env var           | Purpose       | Default                    |\n| ----------------- | ------------- | -------------------------- |\n| `LARKCI_API_KEY`  | API key       | (required)                 |\n| `LARKCI_API_URL`  | API base URL  | `https://api.getlark.ai`   |\n\n## Links\n\n- Dashboard: https://dashboard.getlark.ai\n- CLI: https://www.npmjs.com/package/@getlark/cli\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetlark%2Fskills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgetlark%2Fskills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetlark%2Fskills/lists"}