874d01bd93977d608d51a79a08e29ccd70568507
jeAddons
Clone a file or folder from Git repositories into your current project.
add is registry-based (like shadcn add): you manage entries in a dict.
Usage with uvx
- Edit
jeAddons/registry.pyand add entries toREGISTRY. - Run:
uvx jeaddons add <name> [--ref <branch-or-tag>] [--dest <target-dir>] [--force]
- See available names:
uvx jeaddons list
Registry example
REGISTRY = {
"button": {
"repo": "https://github.com/user/templates.git",
"path": "src/components/Button.tsx",
"ref": "main",
"dest": "src/components",
},
"ui": {
"repo": "https://github.com/user/templates.git",
"path": "src/components/ui",
"ref": "v1.2.0",
"dest": "src/components",
},
}
Languages
Python
100%