AI Skills Package Manager
Project description
Lola - AI Context Package Manager
Write Agent Skills and Contexts once, use everywhere.
Lola is a universal AI Package Manager. If an agent's skills were an RPM, Lola is the DNF for it. Write your skills and context modules once as portable packages, then install them to any AI assistant or agent with a single command.
Supported AI Assistants
| Assistant | Skills | Commands | Agents |
|---|---|---|---|
| Claude Code | Yes | Yes | Yes |
| Cursor | Yes | Yes | Yes |
| Gemini CLI | Yes | Yes | N/A |
| OpenCode | Yes | Yes | Yes |
Installation
# Recommended: install from PyPI
uv tool install lola-ai
# Or with pip
pip install lola-ai
Want the latest dev version?
uv tool install git+https://github.com/LobsterTrap/lola
Quick Start
# Set up the official marketplace
lola market add general https://raw.githubusercontent.com/RedHatProductSecurity/lola-market/main/general-market.yml
# Add a module
lola mod add https://github.com/user/my-skills.git
# Install to all detected assistants
lola install my-skills
# Or install to a specific assistant
lola install my-skills -a claude-code
Declarative Installation
Create a .lola-req in your project:
python-tools>=1.0.0
https://github.com/user/module.git@main
https://github.com/quay/ai-helpers.git@main#subdirectory=plugins/dev
https://github.com/user/repo.git#assistant=claude-code,cursor
URL fragments support:
subdirectory=path/to/module- Install from a subdirectory in the repositoryassistant=name1,name2- Install to specific assistants
lola sync
Documentation
Full documentation is available at lobstertrap.org/lola.
Official Lola Marketplace
We maintain an official, community-driven marketplace with curated modules at github.com/RedHatProductSecurity/lola-market.
Quick setup:
lola market add general https://raw.githubusercontent.com/RedHatProductSecurity/lola-market/main/general-market.yml
This gives you instant access to community modules like workflow automation, code quality tools, and more. We highly encourage you to:
- Use modules from the official marketplace
- Contribute your own modules
- Share feedback and improvements
All contributions are welcome! See the marketplace contributing guide.
Register a marketplace
# Add a marketplace from a URL
lola market add general https://raw.githubusercontent.com/RedHatProductSecurity/lola-market/main/general-market.yml
# List registered marketplaces
lola market ls
Search and install from marketplace
# Search across all enabled marketplaces
lola mod search authentication
# Install directly from marketplace (auto-adds and installs)
lola install git-workflow -a claude-code
When a module exists in multiple marketplaces, Lola prompts you to select which one to use.
Manage marketplaces
# Update marketplace cache
lola market update general
# Update all marketplaces
lola market update
# Disable a marketplace (keeps it registered but excludes from search)
lola market set --disable general
# Re-enable a marketplace
lola market set --enable general
# Remove a marketplace
lola market rm general
Marketplace YAML format
Create your own marketplace by hosting a YAML file with this structure:
name: My Marketplace
description: Curated collection of AI skills
version: 1.0.0
modules:
- name: git-workflow
description: Git workflow automation skills
version: 1.0.0
repository: https://github.com/user/git-workflow.git
tags: [git, workflow]
- name: code-review
description: Code review assistant skills
version: 1.2.0
repository: https://github.com/user/code-review.git
tags: [review, quality]
Fields:
name: Marketplace display namedescription: What this marketplace providesversion: Marketplace schema versionmodules: List of available modulesname: Module name (must match repository directory name)description: Brief description shown in search resultsversion: Module versionrepository: Git URL, zip/tar URL, or local pathtags(optional): Keywords for search
CLI Reference
Module Management (lola mod)
| Command | Description |
|---|---|
lola mod add <source> |
Add a module from git, folder, zip, or tar |
lola mod ls |
List registered modules |
lola mod info <name> |
Show module details |
lola mod search <query> |
Search for modules across enabled marketplaces |
lola mod init [name] |
Initialize a new module |
lola mod init [name] -c |
Initialize with a command template |
lola mod update [name] |
Update module(s) from source |
lola mod rm <name> |
Remove a module |
Marketplace Management (lola market)
| Command | Description |
|---|---|
lola market add <name> <url> |
Register a marketplace from URL or local path |
lola market ls |
List all registered marketplaces |
lola market update [name] |
Update marketplace cache (or all if no name) |
lola market set --enable <name> |
Enable a marketplace for search and install |
lola market set --disable <name> |
Disable a marketplace (keeps it registered) |
lola market rm <name> |
Remove a marketplace |
Installation
| Command | Description |
|---|---|
lola install <module> |
Install skills and commands to all assistants |
lola install <module> -a <assistant> |
Install to specific assistant |
lola install <module> <path> |
Install to a specific project directory |
lola install <module> --scope user |
Install globally to user configuration directories |
lola uninstall <module> |
Uninstall skills and commands |
lola uninstall <module> --scope user |
Uninstall from user configuration directories |
lola installed |
List all installations |
lola update |
Regenerate assistant files |
Installation Scopes
Lola supports two installation scopes:
- Project scope (default): Installs to project directories (
.claude/,.cursor/,.opencode/, etc.) - User scope: Installs globally to user configuration directories
User scope locations:
- Linux/Unix:
~/.config/opencode/,~/.claude/,~/.cursor/ - macOS:
~/Library/Application Support/opencode/,~/.claude/,~/.cursor/ - Windows:
%APPDATA%\opencode\,~/.claude/,~/.cursor/
Examples:
# Install to current project (default)
lola install my-module
# Install globally for your user
lola install my-module --scope user
# Install to specific project
lola install my-module /path/to/project
Creating a Module
1. Initialize
lola mod init my-skills
cd my-skills
This creates:
my-skills/
skills/
example-skill/
SKILL.md # Initial skill (unless --no-skill)
commands/ # Created by default
example-command.md # (unless --no-command)
agents/ # Created by default
example-agent.md # (unless --no-agent)
2. Edit the skill
Edit skills/example-skill/SKILL.md:
---
name: my-skills
description: Description shown in skill listings
---
# My Skill
Instructions for the AI assistant...
3. Add supporting files to skills
You can add additional files to any skill directory (scripts, templates, examples, etc.). Reference them using relative paths in your SKILL.md:
# My Skill
Use the helper script: `./scripts/helper.sh`
Load the template from: `./templates/example.md`
Path handling: Use relative paths like ./file or ./scripts/helper.sh to reference files in the same skill directory. Each assistant handles these differently:
| Assistant | Skill Location | Supporting Files | Path Behavior |
|---|---|---|---|
| Claude Code | .claude/skills/<skill>/SKILL.md |
Copied with skill | Paths work as-is |
| Cursor | .cursor/rules/<skill>.mdc |
Stay in .lola/modules/ |
Paths rewritten automatically |
| Gemini | GEMINI.md (references only) |
Stay in .lola/modules/ |
Paths work (SKILL.md read from source) |
| OpenCode | AGENTS.md (references only) |
Stay in .lola/modules/ |
Paths work (SKILL.md read from source) |
- Claude Code copies the entire skill directory, so relative paths like
./scripts/helper.shwork because the files are alongsideSKILL.md - Cursor only copies the skill content to an
.mdcfile, so Lola rewrites./paths to point back to.lola/modules/<module>/skills/<skill>/ - Gemini/OpenCode don't copy skills—they add entries to
GEMINI.md/AGENTS.mdthat tell the AI to read the originalSKILL.mdfrom.lola/modules/, so relative paths work from that location
Example skill structure:
my-skills/
skills/
example-skill/
SKILL.md
scripts/
helper.sh
templates/
example.md
4. Add more skills
Create additional skill directories under skills/, each with a SKILL.md:
my-skills/
skills/
example-skill/
SKILL.md
git-workflow/
SKILL.md
code-review/
SKILL.md
5. Add slash commands
Create a commands/ directory with markdown files:
my-skills/
skills/
example-skill/
SKILL.md
commands/
review-pr.md
quick-commit.md
Command files use YAML frontmatter:
---
description: Review a pull request
argument-hint: <pr-number>
---
Review PR #$ARGUMENTS and provide feedback.
Note: Modules use auto-discovery. Skills, commands, and agents are automatically detected from the directory structure. No manifest file is required.
6. Add to registry and install
lola mod add ./my-skills
lola install my-skills
Module Structure
my-module/
skills/ # Skills directory
skill-name/
SKILL.md # Required: skill definition
scripts/ # Optional: supporting files
templates/ # Optional: templates
commands/ # Optional: slash commands
review-pr.md
quick-commit.md
agents/ # Optional: subagents
my-agent.md
Note: Modules use auto-discovery. Skills are discovered from
skills/<name>/SKILL.md, commands fromcommands/*.md, and agents fromagents/*.md. No manifest file is required.
SKILL.md
---
name: skill-name
description: When to use this skill
---
# Skill Title
Your instructions, workflows, and guidance for the AI assistant.
Reference supporting files using relative paths:
- `./scripts/helper.sh` - files in the same skill directory
- `./templates/example.md` - subdirectories are supported
Supporting files: You can include scripts, templates, examples, or any other files in your skill directory. Use relative paths like ./file or ./scripts/helper.sh in your SKILL.md to reference them. These paths are automatically rewritten for different assistant types during installation.
Command Files
---
description: What this command does
argument-hint: <required> [optional]
---
Your prompt template here. Use $ARGUMENTS for all args or $1, $2 for positional.
Argument variables:
$ARGUMENTS- All arguments as a single string$1,$2,$3... - Positional arguments
Commands are automatically converted to each assistant's format:
- Claude/Cursor: Markdown with frontmatter (pass-through)
- Gemini: TOML with
{{args}}substitution
How It Works
- Marketplaces: Register catalogs at
~/.lola/market/with cached data at~/.lola/market/cache/ - Discovery: Search across enabled marketplace caches to find modules
- Registry: Modules are stored in
~/.lola/modules/ - Installation: Skills and commands are converted to each assistant's native format
- Prefixing: Skills and commands are prefixed with module name to avoid conflicts (e.g.,
mymodule-skill) - Scopes:
- Project scope (default): Copies modules to
.lola/modules/within the project - User scope: Installs globally to platform-appropriate user config directories
- Project scope (default): Copies modules to
- Updates:
lola mod updatere-fetches from original source;lola updateregenerates files;lola market updaterefreshes marketplace caches
Code of Conduct
This project follows the Contributor Covenant Code of Conduct v2.1.
Security
For reporting vulnerabilities, see SECURITY.md.
Contributing
Contributions are welcome! See CONTRIBUTING.md for guidelines.
Governance
Lola is governed by its maintainers. See GOVERNANCE.md for the project's roles, decision-making process, and release cadence.
Community
Join the community on Matrix: #lola-ai:matrix.org
License
Authors
- Igor Brandao
- Katie Mulliken
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lola_ai-0.5.0.tar.gz.
File metadata
- Download URL: lola_ai-0.5.0.tar.gz
- Upload date:
- Size: 310.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41140bbda161fa3ea12bfac85a45ac79dd39d379c8556c84a14a68874e52e34c
|
|
| MD5 |
14562370612a47215920d9f6d193c615
|
|
| BLAKE2b-256 |
c9bd129938c279f492d8fadba0f7907143633cdb542074b26fd8e5a6c0cd227c
|
Provenance
The following attestation bundles were made for lola_ai-0.5.0.tar.gz:
Publisher:
publish.yml on LobsterTrap/lola
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lola_ai-0.5.0.tar.gz -
Subject digest:
41140bbda161fa3ea12bfac85a45ac79dd39d379c8556c84a14a68874e52e34c - Sigstore transparency entry: 1711991074
- Sigstore integration time:
-
Permalink:
LobsterTrap/lola@55b377051753db9e6b993cc0040596bfa372601b -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/LobsterTrap
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@55b377051753db9e6b993cc0040596bfa372601b -
Trigger Event:
release
-
Statement type:
File details
Details for the file lola_ai-0.5.0-py3-none-any.whl.
File metadata
- Download URL: lola_ai-0.5.0-py3-none-any.whl
- Upload date:
- Size: 92.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f5c72a35277cd511f8289c14fc6dfb07a70baec4bb1aa76baeaa8cd3c607ef0
|
|
| MD5 |
562b8e714d6418d7b07b8552a856e8fe
|
|
| BLAKE2b-256 |
a7124bec89689360131f2dbcca73c15720d20abdd43363cc9e141e42db8d7480
|
Provenance
The following attestation bundles were made for lola_ai-0.5.0-py3-none-any.whl:
Publisher:
publish.yml on LobsterTrap/lola
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lola_ai-0.5.0-py3-none-any.whl -
Subject digest:
5f5c72a35277cd511f8289c14fc6dfb07a70baec4bb1aa76baeaa8cd3c607ef0 - Sigstore transparency entry: 1711991106
- Sigstore integration time:
-
Permalink:
LobsterTrap/lola@55b377051753db9e6b993cc0040596bfa372601b -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/LobsterTrap
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@55b377051753db9e6b993cc0040596bfa372601b -
Trigger Event:
release
-
Statement type: