Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@dreamlogic-ai/cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@dreamlogic-ai/cli
Dreamlogic AI Skill Manager — Install, update and manage AI agent skills for your team.
by Dreamlogic-ai · MAJORNINE
Quick Start
npx @dreamlogic-ai/cliYou'll be guided through:
- 🔑 Entering your API key
- 📦 Selecting skills to install
- ⚙️ Configuring MCP for your AI agent
Installation
# Run without installing (recommended)
npx @dreamlogic-ai/cli
# Or install globally
npm install -g @dreamlogic-ai/cli
dreamlogicCommands
| Command | Description |
|---|---|
dreamlogic |
Interactive mode (menu) |
dreamlogic login |
Authenticate with API key |
dreamlogic catalog |
Browse available skills |
dreamlogic install [skills...] |
Install skills (multi-select) |
dreamlogic update |
Check & apply updates |
dreamlogic list |
List installed skills |
dreamlogic rollback <skill> |
Restore previous version |
dreamlogic status |
Full status overview |
dreamlogic setup-mcp |
Configure MCP for AI agents |
dreamlogic logout |
Clear credentials |
Non-interactive Mode (CI/CD)
# Set API key via environment variable
export DREAMLOGIC_API_KEY=sk-user-xxxxx
# Install specific skill silently
dreamlogic install suno-cover-v5 --yes
# Auto-update all skills
dreamlogic update --yesEnvironment Variables
| Variable | Default | Description |
|---|---|---|
DREAMLOGIC_API_KEY |
— | Override saved API key |
DREAMLOGIC_SERVER |
https://skill.dreamlogic-claw.com |
Override server URL |
DREAMLOGIC_INSTALL_DIR |
~/.agents/skills |
Override install directory |
DREAMLOGIC_NO_COLOR |
— | Disable colored output |
CI |
— | CI mode (disable interactive prompts) |
Supported AI Agents
Skills install to ~/.agents/skills/ — the universal agent directory supported by 45+ AI agents:
Auto-detected (no extra config): Amp, Antigravity, Cline, Codex, Command Code, Cursor, Deep Agents, Firebender, Gemini CLI, GitHub Copilot, Kimi Code CLI, OpenCode, Warp, and more.
Symlink-registered (automatic during install): Claude Code, Claude Desktop, Augment, Trae, Windsurf, Roo, and 20+ others.
Troubleshooting
NODE_TLS_REJECT_UNAUTHORIZED Warning
If you see the TLS security warning, it means your environment has disabled certificate verification globally. This is not caused by our CLI.
# Fix on macOS/Linux:
unset NODE_TLS_REJECT_UNAUTHORIZED
# Fix on Windows (PowerShell):
Remove-Item Env:NODE_TLS_REJECT_UNAUTHORIZED
# Fix on Windows (cmd):
set NODE_TLS_REJECT_UNAUTHORIZED=To remove it permanently, check your system environment variables or shell profile.
Security
- API keys stored with file permission
600(owner-only) - All downloads verified with SHA256 checksums
- ZIP extraction uses
yauzl(safe against Zip Slip attacks) - Atomic install: staging → rename (no partial installs)
- No secrets embedded in CLI code
Requirements
- Node.js ≥ 18
- A valid Dreamlogic API key
License
MIT © Dreamlogic-ai