{"id":34933576,"url":"https://github.com/yanyingwang/antibody","last_synced_at":"2026-05-22T08:01:45.761Z","repository":{"id":24414303,"uuid":"27815116","full_name":"yanyingwang/antibody","owner":"yanyingwang","description":" A plugin manager for zsh, inspired by antigen.","archived":false,"fork":false,"pushed_at":"2020-05-21T05:12:20.000Z","size":9,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-09T07:28:56.455Z","etag":null,"topics":["antibody","antigen","oh-my-zsh","zsh-plugins"],"latest_commit_sha":null,"homepage":"","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/yanyingwang.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}},"created_at":"2014-12-10T10:43:09.000Z","updated_at":"2023-11-02T14:44:34.000Z","dependencies_parsed_at":"2022-07-24T01:32:04.530Z","dependency_job_id":null,"html_url":"https://github.com/yanyingwang/antibody","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yanyingwang/antibody","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yanyingwang%2Fantibody","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yanyingwang%2Fantibody/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yanyingwang%2Fantibody/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yanyingwang%2Fantibody/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yanyingwang","download_url":"https://codeload.github.com/yanyingwang/antibody/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yanyingwang%2Fantibody/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33334777,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T12:23:38.849Z","status":"online","status_checked_at":"2026-05-22T02:00:06.671Z","response_time":265,"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":["antibody","antigen","oh-my-zsh","zsh-plugins"],"created_at":"2025-12-26T17:55:57.704Z","updated_at":"2026-05-22T08:01:45.751Z","avatar_url":"https://github.com/yanyingwang.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"Antibody\n=======\n\nA plugin manager for zsh, inspired by [antigen](https://github.com/zsh-users/antigen#antigen-theme)\n\n\n# Qucick Start\n```shell\nsudo aptitude install zsh  # for ubuntu\nsudo chsh -s zsh\ngit clone https://github.com/yanyingwang/.zsh.git $HOME/.zsh \u0026\u0026 \\\necho '$HOME/.zsh/zshrc' \u003e\u003e $HOME/.zshrc\n```\nOpen a new terminal and wait for a second, everything will be setted.\n\n\n# A Practical Usage\nmy own zsh conf file is written by using this plugin manager, you can have a check at: https://github.com/yanyingwang/.zsh\n\n\n\n# Directory structure\n\n```shell\n/home/user/zsh/\n            |---zshrc\n            |---bundle\n                  |-----antibody\n                  |         \\------antibody.zsh\n                  |\n                  |-----oh-my-zsh\n                  |       |--------plugins/*\n                  |       |--------themes/*\n                  |\n                  |----github-zsh-users-zsh-syntax-highlighting\n                  |----other plugins\n```\nJust like Vim plugin managers, Antibody puts itself and other plugins into \"bundle\" directory, config zshell through zshrc file.\n\n\n# Details\n## Auto clone Antibody for the first time\n\nPuts code below to zshrc file to auto clone Antibody for the first time.\n```shell\ncd ${0:a:h}\n\n# auto pull in antibody\n[[ ! -d bundle ]] \u0026\u0026 mkdir bundle\n[[ ! -d bundle/antibody ]] \u0026\u0026 git clone https://github.com/yanyingwang/antibody.git bundle/antibody\n```\n\n## Get antibody working\nPuts code below to zshrc file to get it working\n```shell\nsource bundle/antibody/antibody.zsh\n```\n\n## Antibody CMD explain\n\n### help\n```shell\nantibody help\n```\nAfter `source antibody.zsh`, you can type `antibody help` in your terminal to view antibody manual.\n\n### github\n```shell\nantibody github username/repo\n```\nYou can use Antibody with github repo plugin, just add code `antibody github usename/repo` to your zshrc, Antibody will clone repo if it doesn't exist.\n\nNote: When using github repo plugins, be note that Antibody is only source three kinds of files: repo_name.zsh, whatever.plugin.zsh, whatever.theme.zsh.\n\nFor example, there is a zsh plugin waga, links is https://github.com/yanyingwang/waga, and we should wirte code `antibody github yanyingwang/waga` to `zshrc` to get 'waga' plugin working.\n\nIn this example, Antibody will source file `waga.zsh` in waga plugin. And if there is a 'test.plugin.zsh' or 'test.theme.zsh', Antibody will source it, too.\n\n\n### oh-my-zsh\nYou can use oh-my-zsh's themes and plugins.\n\nIn the condition, Antibody will clone the whole oh-my-zsh repo to local bundle directory, but you can just use one plugin of it.\n\n### oh-my-zsh theme\n```shell\nantibody oh-my-zsh theme robbyrussell\n```\n\nFor example, I want to use 'robbyrussell' theme, just add code `antibody oh-my-zsh theme robbyrussel` to 'zshrc'.\n\n\n### oh-my-zsh plugin\n```shell\nantibody oh-my-zsh git\nantibody oh-my-zsh git rails\n```\nYou can add mutiple plugin in one line, just add plugin at end of the code.\n\n\n\n# Write your own plugin\nYou can write you own plugin and put it to your github, and ensure there is a 'repo_name.zsh' or 'whatever.plugin.zsh' or 'whatever.theme.zsh' at the root of your repo direcotry.\n\nThen, just add `antibody github your_github_usename/your_plugin_repo_name` to 'zshrc'.\n\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyanyingwang%2Fantibody","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyanyingwang%2Fantibody","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyanyingwang%2Fantibody/lists"}