Releases: Blyphq/cli
v0.1.53
@blyp/cli@0.1.53
Bug Fix: Studio crashes with Cannot find module '../dist/babel.cjs'
Users running the studio via pnpm dlx @blyp/cli or any install outside the local repo would immediately hit:
Cannot find module '../dist/babel.cjs'
Require stack: - .../node_modules/@blyp/cli/studio/server/assets/router-*.js
v0.1.52
Minor change to make studio colors match main brand theme
v0.1.51
v0.1.51
Changed
- Replaced bundled CLI skills with live GitHub-backed installs from
https://github.com/Blyphq/skills blyp skills installnow fetches the latestmainrevision of the skills repo at install time- Skill lookup now uses repo directory names such as
studio-debugger
Removed
- Removed bundled skill assets from the published CLI package
- Removed local path skill installs such as
blyp skills install ./my-skill
Improved
- Added clearer failure handling for missing
git, GitHub/network failures, invalid remote skills, and overwrite conflicts - Updated CLI help text and README to document the new remote install flow
- Added tests covering remote skill discovery, install resolution, and failure paths
v0.1.5
@blyp/cli v0.1.5
This release improves Studio support for Blyp database-backed logs and makes grouped trace inspection much more usable.
Added
- Studio support for Blyp projects configured with
destination: "database". - Database-backed Studio reading via direct SQL using
DATABASE_URL. - Database-aware Studio metadata, config display, and log source presentation.
Improved
- Structured/grouped traces now collapse related logs by
groupIdmore reliably. - Trace detail panels now show actual bundled event payloads and grouped log payloads inline.
- The first trace event opens by default in the trace timeline for faster inspection.
- Group summaries use more meaningful labels and previews instead of generic
structured_logfallback text.
Fixed
- Removed Prisma circular-serialization failures in Studio DB mode.
- Fixed SQL column mapping issues for Blyp database schemas using snake_case columns such as
group_id,created_at, andhas_error. - Preserved grouping even when DB rows store key fields like
groupIdoutside the JSONrecordpayload.
v0.1.4
v0.1.4
What changed
- Renamed the CLI executable from
blyphqtoblyp - Updated CLI help text, usage output, docs, and tests to use
blyp - Updated related Studio text to remove the old command name
Upgrade notes
- Replace any use of
blyphqwithblyp - Examples:
blyphq studio->blyp studioblyphq health->blyp healthblyphq db:init->blyp db:initblyphq --version->blyp --version
v0.1.3
Release Description
This release adds guided Blyp database logging setup to the CLI.
Added
-
blyphq db:init- Interactive setup for Blyp database logging
- Prompts for adapter (
prismaordrizzle) and dialect (postgresor
mysql) - Scaffolds the required
blyp_logsschema - Generates and applies migrations
- Writes
blyp.config.tsautomatically
-
blyphq db:migrate- Runs the configured Prisma or Drizzle migration workflow
-
blyphq db:generate- Runs Prisma client generation for Prisma projects
Changed
- Replaced the earlier flag-heavy database bootstrap flow with shorter
top-level commands - Improved CLI help and README documentation for database logging setup
- Preserved idempotent schema generation to avoid duplicate models, tables, and
migration content on reruns
Supported Setups
- Prisma + Postgres
- Prisma + MySQL
- Drizzle + Postgres
- Drizzle + MySQL
Notes
- Runtime table auto-creation is still not used
- Database setup remains migration-driven and explicit
- Prisma projects must expose a generated client with the
blypLogdelegate
for runtime logging to work
Upgrade
After upgrading, run:
bunx @blyp/cli db:initThen use:
bunx @blyp/cli db:migrate
bunx @blyp/cli db:generatev0.1.2
This release fixes the packaged Studio experience for npm users.
Fixes
- Fixed
bunx @blyp/cli studiofailing with:
Studio is not available from this installation. - Bundled the packaged Studio server and client assets in the published npm
package - Added the runtime dependencies required for the packaged Studio SSR server
to run outside theblyp-clirepo
Studio
blyphq studionow works from arbitrary projects through the published package- The CLI still uses the repo-local Studio dev app when run inside the
blyp-cliworkspace - If a Studio server is already running locally, the CLI reuses it and opens
the requested project
Packaging
Published package now includes:
-
dist/ -
skills/ -
studio/ -
Version bumped to
0.1.2
Example
bunx @blyp/cli@0.1.2 studioNotes
- Studio runs locally at
http://localhost:3003 - Skills continue to install into
.agents/skills - This release should be used instead of
0.1.1if you want Studio to work
from the npm package
v0.1.1
This release fixes Studio so it can be launched from any project, not just from inside the blyp-cli monorepo.
What's New
- Fixed
blyphq studioso it no longer fails with:
Workspace root could not be resolved from the current directory. - Added a packaged Studio server so
@blyp/clican launch Studio from external projects - Kept repo-local Studio dev behavior when running inside the
blyp-cliworkspace - Added the runtime dependencies required for the packaged Studio SSR build
- Updated CLI packaging to bundle the built Studio assets for npm releases
CLI Behavior
blyphq studionow works from arbitrary projectsblyphq studio [targetPath]still opens the target project in Studioblyphq skills installbehavior remains unchanged from0.1.0
Packaging and Release
- Package version bumped to
0.1.1 blyphq --versionnow reports0.1.1- npm publish workflow remains compatible with the existing
NPM_TOKEN
GitHub secret
Example
bunx @blyp/cli studiov0.1.0
Release Description
Highlights
- Added the
blyphqCLI, published as@blyp/cli - Added
blyphq studio [targetPath]to launch or reuse the local Studio app for a project - Added
blyphq healthfor runtime and workspace diagnostics - Added
blyphq skills install [source-or-skill-name] [--force]for skill installation
Skills
- Supports installing a local skill folder into
./.agents/skills/<skill-name> - Supports installing bundled skills by name
- Supports interactive bundled-skill selection when no source is provided
- Falls back to the bundled skill picker when a local skill path is missing
- Ships with an initial bundled
ai-sdkskill
Packaging and Release
- Package name:
@blyp/cli - Executable name:
blyphq - Added npm publish automation via GitHub Actions
- Configured public npm publishing with
NPM_TOKEN
Notes
- Studio runs locally at
http://localhost:3003 - Studio uses project-level AI configuration such as
OPENROUTER_API_KEYandOPENROUTER_MODEL - Skills are installed per project under
.agents/skills
Install
npm install -g @blyp/cliExamples
blyphq studio
blyphq health
blyphq skills install
blyphq skills install ai-sdk
blyphq skills install ./skills/ai-sdk --force