lore pull
Download and install a Lore package to the current project.
Usage
lore pull <namespace>/<name>:<version> [flags]Description
Downloads the .lore archive from the registry, decompresses it, and writes platform-specific artifacts to the project directory. The target platform is auto-detected from the AI runtime present in the project.
Flags
| Flag | Description |
|---|---|
--target <runtime> | Override auto-detected runtime target (e.g., claude-code, cursor, raw) |
--output <dir> | Output directory (default: .) |
--registry | Registry URL |
Examples
# Pull latest version
lore pull m1cloud/azure-architect:1.0.0
# Pull with explicit target
lore pull m1cloud/azure-architect:1.0.0 --target cursor
# Pull to a specific directory
lore pull m1cloud/azure-architect:1.0.0 --output ./ai-configRuntime Targets
The CLI auto-detects the runtime from files in your project:
| File present | Detected target |
|---|---|
CLAUDE.md | claude-code |
.cursorrules | cursor |
AGENTS.md | openai-agents |
| (none) | raw |