Skip to content

feat: load @object-ui/console plugin in local dev config#417

Merged
hotlong merged 2 commits intomainfrom
copilot/load-object-ui-console-plugin
Mar 20, 2026
Merged

feat: load @object-ui/console plugin in local dev config#417
hotlong merged 2 commits intomainfrom
copilot/load-object-ui-console-plugin

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Mar 20, 2026

Local dev server (pnpm dev) was missing the @object-ui/console ConsolePlugin, leaving the UI console unavailable when running the kernel locally.

Changes

  • package.json — added @object-ui/console: ^3.1.3 as a devDependency
  • objectstack.config.ts — imported and registered ConsolePlugin after HonoServerPlugin
  • pnpm-lock.yaml — updated to lock @object-ui/console@3.1.3
// objectstack.config.ts
import { ConsolePlugin } from '@object-ui/console';

plugins: [
    new HonoServerPlugin({ port: 5050 }),
    new ConsolePlugin(),           // ← added
    new ObjectQLPlugin({ ... }),
    ...
]

Pattern mirrors the reference config in objectstack-ai/objectui.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

@vercel
Copy link
Copy Markdown

vercel bot commented Mar 20, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
objectql Ready Ready Preview, Comment Mar 20, 2026 3:58am

Request Review

Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
Copilot AI changed the title [WIP] Add loading of @object-ui/console plugin for local development feat: load @object-ui/console plugin in local dev config Mar 20, 2026
Copilot AI requested a review from hotlong March 20, 2026 03:59
@hotlong hotlong marked this pull request as ready for review March 20, 2026 04:12
Copilot AI review requested due to automatic review settings March 20, 2026 04:12
@hotlong hotlong merged commit 759698a into main Mar 20, 2026
3 checks passed
@hotlong hotlong deleted the copilot/load-object-ui-console-plugin branch March 20, 2026 04:12
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Enables the Object UI console during local kernel development (pnpm dev) by adding the @object-ui/console plugin to the root dev config.

Changes:

  • Added @object-ui/console@^3.1.3 to root devDependencies.
  • Registered ConsolePlugin in objectstack.config.ts (after HonoServerPlugin).
  • Updated pnpm-lock.yaml to lock @object-ui/console@3.1.3.

Reviewed changes

Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.

File Description
package.json Adds @object-ui/console as a devDependency for local dev usage.
objectstack.config.ts Imports and registers ConsolePlugin in the runtime plugin list.
pnpm-lock.yaml Locks the resolved @object-ui/console@3.1.3 package entry.
Files not reviewed (1)
  • pnpm-lock.yaml: Language not supported

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants