npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@bluecateng/pelagos-gpt

v0.1.10

Published

Bundled version of Pelagos for use in ChatGPT

Downloads

262

Readme

@bluecateng/pelagos-gpt

Bundled version of Pelagos for use in ChatGPT.

How to create a GPT to generate UI using Pelagos

ChatGPT can be used to interactively generate screens using Pelagos. By creating a GPT, the basic rules can be defined once for ease of use.

This guide shows how to create a custom GPT setup for Pelagos in ChatGPT.

What you need

Before you start, make sure you have:

Step-by-step

1. Open the GPT builder

  1. Go to https://chatgpt.com/gpts/editor.
  2. Sign in.
  3. Start a new GPT.

ChatGPT supports creating GPTs from the GPT editor on the web, where you can configure the name, instructions, knowledge, capabilities, and sharing settings.

2. Set the GPT name

  1. In the Configure tab, find the Name field.
  2. Enter: pelagos-dev (or whatever you want to call it)

3. Add the core instructions

  1. Open the prompt.md file on your computer.
  2. Copy the full contents.
  3. In the GPT editor, paste that content into the Instructions field.

The GPT editor?s Instructions field is where you define how the GPT should behave, what it should do, and what it should avoid.

4. Add the TypeScript definitions as reference material

Use the index.d.ts file as supporting context for the GPT.

  1. Download https://storybook.dnsedge.tools/index.d.ts to your machine.
  2. In the GPT editor, go to Knowledge.
  3. Upload the downloaded index.d.ts file.

The GPT editor supports adding files under Knowledge so the GPT can reference them during chats.

5. Add a description (Optional)

In Description, add a short summary. Example:

A GPT for Pelagos.

6. Enable useful capabilities

In Capabilities, enable the ones that fit your original GPT setup.

Recommended defaults for a dev-oriented GPT:

  • Web Search: optional
  • Canvas: required
  • Image Generation: usually off unless needed
  • Code Interpreter / Data Analysis: optional

The GPT editor lets you turn capabilities on or off depending on what the GPT needs to do.

7. Leave Actions empty

8. Choose the recommended model

In Recommended Model, choose the default model you want for the GPT.

The editor supports setting a recommended model for the GPT.

10. Save and test the GPT

  1. Save the GPT.
  2. Open the preview/test panel.
  3. Try a few prompts that depend on both:
    • the behavior rules from prompt.md
    • the definitions from index.d.ts

Good test prompts:

Create a form that allows user to enter name and address.

This should produce source code similar to this:

Generated code

And clicking the "Preview" button, it will display the generated UI:

Screenshot