the signals and their derived score are provisional and subject to change.
validate manually before sharing.
cc6906ea7ea18a5058e8b4862d4086148434dddenone
CLAUDE.mdTool: claude-code# CLAUDE.md — zplug
See @AGENTS.md for project architecture, coding guidelines, and development workflow.
## Quick Reference
- **Language**: Zsh (not Bash)
- **Run tests**: `make test`
- **Entry point**: `init.zsh`
- **Core logic**: `base/` directory
- **CLI interface**: `autoload/` directory
- **Function naming**: `__zplug::<module>::<submodule>::<function>`
.claudeTool: claude-codeAGENTS.mdTool: agents-md# AGENTS.md — zplug
## Project Overview
zplug is a Zsh plugin manager written entirely in Zsh. It supports parallel installation, lazy-loading, caching, and multiple plugin sources (GitHub, Bitbucket, Gist, Oh-My-Zsh, Prezto, GitHub Releases, local directories).
## Architecture
### Namespace Convention
All internal functions follow the pattern:
```
__zplug::<module>::<submodule>::<function>
```
For example: `__zplug::base::base::git_version`, `__zplug::core::tags::parse`.
### Directory Structure
none