{"id":51941225,"url":"https://github.com/agenta-ai/agenta-skills","last_synced_at":"2026-07-28T19:00:53.123Z","repository":{"id":369102562,"uuid":"1286330661","full_name":"Agenta-AI/agenta-skills","owner":"Agenta-AI","description":"Skills that teach your coding agent to build Agenta agents via the Agenta API","archived":false,"fork":false,"pushed_at":"2026-07-14T14:06:36.000Z","size":134,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-14T15:29:46.916Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Agenta-AI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-07-01T17:05:22.000Z","updated_at":"2026-07-14T14:09:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Agenta-AI/agenta-skills","commit_stats":null,"previous_names":["agenta-ai/agenta-skills"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Agenta-AI/agenta-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agenta-AI%2Fagenta-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agenta-AI%2Fagenta-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agenta-AI%2Fagenta-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agenta-AI%2Fagenta-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Agenta-AI","download_url":"https://codeload.github.com/Agenta-AI/agenta-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Agenta-AI%2Fagenta-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":36003882,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-28T02:00:06.341Z","response_time":109,"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":[],"created_at":"2026-07-28T19:00:51.976Z","updated_at":"2026-07-28T19:00:53.118Z","avatar_url":"https://github.com/Agenta-AI.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Agenta skills\n\nSkills that teach your coding agent (Claude Code, Codex, Cursor, and more) to build\n[Agenta](https://github.com/Agenta-AI/agenta) agents through the Agenta API. Install a skill\nonce, then build Agenta agents from your terminal by asking your coding agent in plain\nlanguage.\n\nOne repo, many skills. Each skill lives under `skills/` and travels with its own scripts and\nreference files.\n\n## Skills\n\n| Skill | What it does |\n|---|---|\n| [`build-agent`](skills/build-agent/) | Turn a plain-language request into a working, tested Agenta agent: write one config, run a few scripts, schedule it, verify it. |\n| [`self-host-agenta`](skills/self-host-agenta/) | Router and field guide for self-hosting Agenta with Docker Compose: the four decisions, `run.sh` flags, hardening, troubleshooting, and verification. |\n\nMore skills will land as sibling folders under `skills/`.\n\n## Install\n\nTwo channels, both point at this repo. Pick the one for your coding agent.\n\n### Claude Code (plugin marketplace)\n\n```\n/plugin marketplace add Agenta-AI/agenta-skills\n/plugin install build-agent@agenta\n```\n\n### Codex, Cursor, and others (npx skills)\n\n[`npx skills`](https://github.com/vercel-labs/skills) copies the skill into each tool's native\ndirectory:\n\n```bash\n# interactive: pick your agents and skills\nnpx skills add Agenta-AI/agenta-skills\n\n# or target tools and a skill directly\nnpx skills add Agenta-AI/agenta-skills -a claude-code -a codex -a cursor\nnpx skills add Agenta-AI/agenta-skills --skill build-agent --agent '*'\n\n# refresh later\nnpx skills update\n```\n\n## Credentials\n\nThe skills call the Agenta API and need one or two values:\n\n- `AGENTA_API_KEY` — **required.** Get it from your Agenta project settings (the API keys\n  page). On cloud that is under [cloud.agenta.ai](https://cloud.agenta.ai).\n- `AGENTA_HOST` — **optional.** Defaults to Agenta cloud (`https://cloud.agenta.ai`). Set it\n  only if you self-host, to your own Agenta domain.\n\nThe skill will ask you for these on first run and can write a local `.env` for you, or hand\nyou a block to paste. Set them either as environment variables or in a `.env` file in your\nworking directory:\n\n```bash\nexport AGENTA_API_KEY=your-key-here\n# export AGENTA_HOST=https://your-agenta-domain   # only if self-hosting\n```\n\nThe bundled scripts need `bash`, `curl`, and `jq`. The skill runs a preflight\n(`check-prereqs.sh`) that checks for them and prints the install command for your platform if\none is missing.\n\n## License\n\nMIT. See [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagenta-ai%2Fagenta-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagenta-ai%2Fagenta-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagenta-ai%2Fagenta-skills/lists"}