{"id":51033693,"url":"https://github.com/launchapp-dev/animus-plugin-registry","last_synced_at":"2026-06-22T03:01:48.123Z","repository":{"id":361053281,"uuid":"1242484780","full_name":"launchapp-dev/animus-plugin-registry","owner":"launchapp-dev","description":"Canonical index of public Animus plugins","archived":false,"fork":false,"pushed_at":"2026-05-29T03:14:07.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-29T03:22:15.079Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/launchapp-dev/animus-cli","language":null,"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/launchapp-dev.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-05-18T13:20:06.000Z","updated_at":"2026-05-29T03:14:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/launchapp-dev/animus-plugin-registry","commit_stats":null,"previous_names":["launchapp-dev/animus-plugin-registry"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/launchapp-dev/animus-plugin-registry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchapp-dev%2Fanimus-plugin-registry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchapp-dev%2Fanimus-plugin-registry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchapp-dev%2Fanimus-plugin-registry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchapp-dev%2Fanimus-plugin-registry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/launchapp-dev","download_url":"https://codeload.github.com/launchapp-dev/animus-plugin-registry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchapp-dev%2Fanimus-plugin-registry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34632723,"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-22T02:00:06.391Z","response_time":106,"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-06-22T03:01:47.324Z","updated_at":"2026-06-22T03:01:48.117Z","avatar_url":"https://github.com/launchapp-dev.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# animus-plugin-registry\n\nThe canonical index of public [Animus](https://github.com/launchapp-dev/animus-cli) plugins.\n\n## What this is\n\nA flat JSON index at [`plugins.json`](./plugins.json) listing known public Animus plugin repositories with their installation hints. The Animus CLI fetches this index for `animus plugin search` and `animus plugin browse`.\n\nThe index is **not authoritative** — it's a discovery aid. Anyone can publish an Animus plugin to a public GitHub repo and use `animus plugin install \u003cowner\u003e/\u003crepo\u003e` without listing here.\n\n## How to add your plugin\n\n1. Publish your plugin to a public GitHub repo (the [animus-plugin-template](https://github.com/launchapp-dev/animus-plugin-template) is a good starting point).\n2. Cut a tagged release with binaries for at least one platform. The template's `release.yml` uses cross-rs to produce all four supported triples in one shot.\n3. Open a PR against [`plugins.json`](./plugins.json) adding your entry.\n4. The schema lives at [`schema.json`](./schema.json) — validate your entry locally before opening the PR:\n\n   ```bash\n   npm install -g ajv-cli ajv-formats\n   ajv validate --spec=draft2020 -s schema.json -d plugins.json -c ajv-formats\n   ```\n\n### Example entry\n\n```json\n{\n  \"name\": \"animus-provider-myllm\",\n  \"kind\": \"provider\",\n  \"repo\": \"your-org/animus-provider-myllm\",\n  \"latest_tag\": \"v0.1.0\",\n  \"description\": \"MyLLM provider plugin for Animus\",\n  \"homepage\": \"https://github.com/your-org/animus-provider-myllm\",\n  \"license\": \"MIT\",\n  \"stability\": \"alpha\",\n  \"platforms\": [\n    \"aarch64-apple-darwin\",\n    \"x86_64-apple-darwin\",\n    \"x86_64-unknown-linux-gnu\",\n    \"aarch64-unknown-linux-gnu\"\n  ],\n  \"tags\": [\"provider\", \"myllm\", \"llm\"],\n  \"install_hint\": \"animus plugin install your-org/animus-provider-myllm\"\n}\n```\n\n## Schema\n\nThe full JSON Schema (draft 2020-12) is at [`schema.json`](./schema.json). The required fields per entry are:\n\n| Field | Description |\n| --- | --- |\n| `name` | Unique plugin name (typically matches the repo name). |\n| `kind` | One of `subject_backend`, `provider`, `trigger_backend`. |\n| `repo` | GitHub repository in `\u003cowner\u003e/\u003cname\u003e` form. |\n| `latest_tag` | Latest released tag (e.g. `v0.1.0`). |\n| `description` | Short human-readable description. |\n| `license` | SPDX license identifier (e.g. `MIT`, `Apache-2.0`). |\n| `install_hint` | Suggested CLI command to install this plugin. |\n\nOptional fields: `homepage`, `stability` (`alpha` / `beta` / `stable`), `platforms`, `tags`.\n\n## Stability\n\n`stability: alpha` is the default — most plugins are alpha during v0.4.x. Promote to `beta` or `stable` as your plugin matures and its protocol surface stabilizes.\n\n## License\n\nMIT for the registry index itself. Each listed plugin sets its own license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaunchapp-dev%2Fanimus-plugin-registry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flaunchapp-dev%2Fanimus-plugin-registry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaunchapp-dev%2Fanimus-plugin-registry/lists"}