Skip to content

Releases: Blyphq/cli

v0.1.53

23 Mar 17:50

Choose a tag to compare

@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

23 Mar 16:49

Choose a tag to compare

Minor change to make studio colors match main brand theme

v0.1.51

22 Mar 21:25

Choose a tag to compare

v0.1.51

Changed

  • Replaced bundled CLI skills with live GitHub-backed installs from https://github.com/Blyphq/skills
  • blyp skills install now fetches the latest main revision 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

19 Mar 11:51

Choose a tag to compare

@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 groupId more 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_log fallback 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, and has_error.
  • Preserved grouping even when DB rows store key fields like groupId outside the JSON record payload.

v0.1.4

16 Mar 21:53

Choose a tag to compare

v0.1.4

What changed

  • Renamed the CLI executable from blyphq to blyp
  • 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 blyphq with blyp
  • Examples:
    • blyphq studio -> blyp studio
    • blyphq health -> blyp health
    • blyphq db:init -> blyp db:init
    • blyphq --version -> blyp --version

v0.1.3

16 Mar 02:43

Choose a tag to compare

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 (prisma or drizzle) and dialect (postgres or
      mysql)
    • Scaffolds the required blyp_logs schema
    • Generates and applies migrations
    • Writes blyp.config.ts automatically
  • 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 blypLog delegate
    for runtime logging to work

Upgrade

After upgrading, run:

bunx @blyp/cli db:init

Then use:

bunx @blyp/cli db:migrate
bunx @blyp/cli db:generate

v0.1.2

14 Mar 15:31

Choose a tag to compare

This release fixes the packaged Studio experience for npm users.

Fixes

  • Fixed bunx @blyp/cli studio failing 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 the blyp-cli repo

Studio

  • blyphq studio now works from arbitrary projects through the published package
  • The CLI still uses the repo-local Studio dev app when run inside the
    blyp-cli workspace
  • 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 studio

Notes

  • Studio runs locally at http://localhost:3003
  • Skills continue to install into .agents/skills
  • This release should be used instead of 0.1.1 if you want Studio to work
    from the npm package

v0.1.1

14 Mar 01:10

Choose a tag to compare

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 studio so it no longer fails with:
    Workspace root could not be resolved from the current directory.
  • Added a packaged Studio server so @blyp/cli can launch Studio from external projects
  • Kept repo-local Studio dev behavior when running inside the blyp-cli workspace
  • 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 studio now works from arbitrary projects
  • blyphq studio [targetPath] still opens the target project in Studio
  • blyphq skills install behavior remains unchanged from 0.1.0

Packaging and Release

  • Package version bumped to 0.1.1
  • blyphq --version now reports 0.1.1
  • npm publish workflow remains compatible with the existing NPM_TOKEN
    GitHub secret

Example

bunx @blyp/cli studio

v0.1.0

14 Mar 00:17

Choose a tag to compare

Release Description

Highlights

  • Added the blyphq CLI, published as @blyp/cli
  • Added blyphq studio [targetPath] to launch or reuse the local Studio app for a project
  • Added blyphq health for 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-sdk skill

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_KEY and OPENROUTER_MODEL
  • Skills are installed per project under .agents/skills

Install

npm install -g @blyp/cli

Examples

blyphq studio
blyphq health
blyphq skills install
blyphq skills install ai-sdk
blyphq skills install ./skills/ai-sdk --force