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

@marrakesh/core

v0.1.0-alpha.2

Published

Minimal, type-safe tool integration for LLMs

Readme

@marrakesh/core

A structured, testable, and data-driven context engineering SDK for the TypeScript world.

Features

  • Fluent API: Chainable methods for building prompts
  • AI SDK-style Tools: Define tools with Zod schemas and metadata
  • Provider Support: Compile for OpenAI, Anthropic, or generic formats
  • Built-in Linting: Automatic validation and token counting
  • Vercel AI SDK Compatible: Seamless integration with existing workflows

Installation

# Using npm
npm install @marrakesh/core zod

# Using pnpm
pnpm add @marrakesh/core zod

# Using yarn
yarn add @marrakesh/core zod

Quick Start

Basic Usage

import { PromptBuilder } from '@marrakesh/core';

const prompt = new PromptBuilder({ name: 'support-agent' })
  .withPersona('You are a helpful customer service agent')
  .withRule('Always be polite and professional')
  .withRule('If you don\'t know something, say so')
  .withExample({
    user: 'I need help with my order',
    assistant: 'I\'d be happy to help you with your order. Can you provide your order number?'
  });

// Compile for any provider
const systemPrompt = prompt.compile();

With Tools (AI SDK Style)

import { PromptBuilder, tool } from '@marrakesh/core';
import { z } from 'zod';

// Define a tool with AI SDK pattern
const getUserDetails = tool({
  description: 'Fetch user account information from database',
  parameters: z.object({
    userId: z.string().describe('User ID to lookup')
  }),
  execute: async ({ userId }) => {
    return await db.users.findById(userId);
  }
});

const prompt = new PromptBuilder({ name: 'support-agent' })
  .withPersona('You are a helpful customer service agent')
  .withTool(getUserDetails);

// OpenAI format (includes tools separately)
const { systemPrompt, tools } = prompt.compile('openai');

Vercel AI SDK Integration

import { streamText } from 'ai';
import { openai } from '@ai-sdk/openai';
import { PromptBuilder } from '@marrakesh/core';

const prompt = new PromptBuilder({ name: 'chat-agent' })
  .withPersona('You are a helpful assistant')
  .withRule('Be concise and helpful');

export async function POST(req: Request) {
  const { messages } = await req.json();
  
  // Prepare messages with system prompt
  const messagesWithSystem = prompt.prepareMessages(messages);
  
  return streamText({
    model: openai('gpt-4'),
    messages: messagesWithSystem
  });
}

API Reference

PromptBuilder

Constructor

new PromptBuilder({ name: string })

Methods

  • withPersona(text: string): this - Add persona/instruction
  • withRule(text: string): this - Add a rule (call multiple times)
  • withExample(example: { user: string, assistant: string }): this - Add few-shot example
  • withTool(toolFunction: ToolFunction): this - Add a tool function
  • compile(provider?: Provider): string | CompileResult - Compile the prompt
  • prepareMessages(messages: Message[]): Message[] - Prepare messages with system prompt

Tool Helper

import { tool } from '@marrakesh/core';

const myTool = tool({
  description: 'Tool description',
  parameters: z.object({ /* Zod schema */ }),
  execute: async (params) => { /* implementation */ }
});

Providers

  • 'generic' - Simple markdown format (default)
  • 'openai' - OpenAI-optimized with separate tools array
  • 'anthropic' - Claude-optimized with XML structure

Examples

See the /examples directory for complete working examples:

  • Basic prompt building
  • Tool integration
  • Vercel AI SDK integration
  • Multi-provider compilation

TypeScript Support

Full TypeScript support with comprehensive type definitions for all APIs.

License

MIT