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

seal-lang

v0.1.8

Published

Semantic and Action Language for AI-web interaction

Readme

SEAL Language (Semantic and Action Language) 🦭

The Markup Language for the AI Era.
Human-Readable Layout. Machine-Actionable Protocol.

npm version License: MIT PRs Welcome


🌐 Live Demo & Studio

Try the SEAL Studio online: seal-site.pages.dev
Build, preview, and generate AI-ready manifests instantly in your browser.


✨ What is SEAL?

SEAL is a whitespace-significant Domain Specific Language (DSL) designed to bridge the gap between human users and AI agents. It replaces messy HTML "tag soup" with a clean, indentation-based syntax that compiles into:

  1. Beautiful, Modern UI: A production-ready SaaS design system built-in.
  2. AI Action Manifest: A structured JSON protocol describing every interactive element and how an AI can use it (e.g., FILL, CLICK, SELECT).
  3. Automation Logic: An interpreter that turns natural language (e.g., "Login with email [email protected]") into executable browser commands.

🚀 Key Features

  • 🎯 Human-Centric: Indentation-based syntax (like Python/Jade) for maximum readability.
  • 🤖 AI-Native: First-class support for semantic roles and action affordances.
  • 🎨 Zero-Config Styling: Professional-grade SaaS UI components right out of the box.
  • 🔌 Built-in Interpreter: Translate English instructions into structured SEAL commands.
  • 📦 Zero Dependency: Tiny footprint, works in the browser or Node.js.

📦 Installation

As a Library

npm install seal-lang

From CDN (Browser)

<script src="https://unpkg.com/[email protected]/dist/seal.js"></script>

🛠 Usage

1. Define your UI (main.seal)

Page #home title="Dashboard"
  @theme brand=indigo radius=md
  Body
    Header
      Flex justify=between align=center
        Heading variant=heading-2 "Overview"
        Button #new-order variant=primary "New Order"
    
    Grid cols=3 gap=md
      Card elevated
        Text size=sm "Active Users"
        Heading "24.5k"
      
      Form #search-form
        Input #query label="Search" placeholder="Find orders..."
        Button #submit "Search"

2. Compile and Render

const seal = require('seal-lang');

const source = `...`; // Your SEAL source
const ast = seal.parse(source);
const html = seal.render(ast);
const manifest = seal.manifest(ast);

console.log(manifest);
/* 
Output:
{
  "title": "Dashboard",
  "actions": [
    { "id": "new-order", "type": "Button", "actions": ["CLICK"] },
    { "id": "query", "type": "Input", "actions": ["FILL", "CLEAR"] },
    ...
  ]
}
*/

3. AI Interpretation

const commands = seal.interpret("Login with email [email protected]");
// → ["FILL #email WITH '[email protected]'", "CLICK #submit-btn"]

🏗 Project Structure

  • src/: Core parser, renderer, and AI protocol logic.
  • dist/: Compiled standalone browser bundles.
  • spec/: Formal SEAL language specifications.
  • seal-site/: The source for our Live Studio.

🤝 Contributing

We welcome contributions! SEAL is an open-source project dedicated to making the web more accessible for AI.

  1. Fork the repo.
  2. Create your feature branch (git checkout -b feature/amazing-feature).
  3. Commit your changes (git commit -m 'Add some amazing feature').
  4. Push to the branch (git push origin feature/amazing-feature).
  5. Open a Pull Request.

📄 License

MIT © 2026 SEAL Language Project. Distributed under the MIT License. See LICENSE for more information.


Made with 🦭 for the future of AI-Web interaction.