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

@jiggai/recipes

v0.3.1

Published

ClawRecipes plugin for OpenClaw (markdown recipes -> scaffold agents/teams)

Readme

ClawRecipes (OpenClaw Recipes Plugin)

ClawRecipes is an OpenClaw plugin that provides CLI-first recipes for scaffolding specialist agents and teams from Markdown.

If you like durable workflows: ClawRecipes is built around a file-first team workspace (inbox/backlog/in-progress/testing/done) that plays nicely with git.

Quickstart

1) Install

Option A (preferred): install from npm

When published on npm:

openclaw plugins install @jiggai/recipes

# If you use a plugin allowlist (plugins.allow), you must explicitly trust it:
openclaw config get plugins.allow --json
# then add "recipes" and set it back, e.g.
openclaw config set plugins.allow --json '["memory-core","telegram","recipes"]'

openclaw gateway restart
openclaw plugins list

Option B: install from GitHub

git clone https://github.com/JIGGAI/ClawRecipes.git ~/clawrecipes
openclaw plugins install --link ~/clawrecipes
openclaw gateway restart
openclaw plugins list

2) List available recipes

openclaw recipes list

3) Scaffold a team

openclaw recipes scaffold-team development-team \
  --team-id development-team-team \
  --overwrite \
  --apply-config

4) Dispatch a request into work artifacts

openclaw recipes dispatch \
  --team-id development-team-team \
  --request "Add a new recipe for a customer-support team" \
  --owner lead

License

ClawRecipes is licensed under Apache-2.0.

Attribution requirement (practical): if you redistribute ClawRecipes (or a derivative work), you must retain the license and attribution notices (see LICENSE and NOTICE).

Branding note: the license does not grant permission to use JIGGAI trademarks except as required for reasonable and customary attribution. See TRADEMARK.md.

Contributions: we welcome PRs. By contributing, you agree that your contributions are licensed under the project’s Apache-2.0 license.

Commands (high level)

  • openclaw recipes list|show|status
  • openclaw recipes scaffold (agent → workspace-<agentId> + writes workspace recipe ~/.openclaw/workspace/recipes/<agentId>.md by default)
  • openclaw recipes scaffold-team (team → workspace-<teamId> + roles/<role>/ + writes workspace recipe ~/.openclaw/workspace/recipes/<teamId>.md by default)
  • openclaw recipes install-skill <idOrSlug> [--yes] [--global|--agent-id <id>|--team-id <id>] (skills: global or scoped)
  • openclaw recipes install <slug> (marketplace recipe)
  • openclaw recipes bind|unbind|bindings (multi-agent routing)
  • openclaw recipes dispatch ... (request → inbox + ticket + assignment)
  • openclaw recipes tickets|move-ticket|assign|take|handoff|complete (file-first ticket workflow)
  • openclaw recipes cleanup-workspaces (safe cleanup of temporary test/scaffold workspaces)

For full details, see docs/COMMANDS.md.

Configuration

The plugin supports these config keys (with defaults):

  • workspaceRecipesDir (default: recipes)
  • workspaceAgentsDir (default: agents)
  • workspaceSkillsDir (default: skills)
  • workspaceTeamsDir (default: teams)
  • autoInstallMissingSkills (default: false)
  • confirmAutoInstall (default: true)
  • cronInstallation (default: prompt; values: off|prompt|on)

Config schema is defined in openclaw.plugin.json.

Documentation

For users:

For contributors:

Development

Unit tests (vitest)

Run:

  • npm test
  • npm run test:coverage — coverage with CI thresholds (see vitest.config.ts)
  • npm run smell-check — quality checks (ESLint, jscpd, pattern grep)

Pre-commit hooks

Husky runs on commit. Run npm ci first to install hooks.

Scaffold smoke test (regression)

A lightweight smoke check validates scaffold-team output contains the required testing workflow docs (ticket 0004).

Run:

  • npm run test:smoke (or npm run scaffold:smoke)

Notes:

  • Creates a temporary workspace-smoke-<timestamp>-team under ~/.openclaw/ and then deletes it.
  • Exits non-zero on mismatch.
  • Requires OpenClaw and workspace config.

For contributors

Reference:

  • Commands: docs/COMMANDS.md
  • Recipe format: docs/RECIPE_FORMAT.md
  • Bundled recipes: docs/BUNDLED_RECIPES.md
  • Team workflow: docs/TEAM_WORKFLOW.md
  • ClawRecipes Kitchen (UI): docs/CLAWCIPES_KITCHEN.md

(Also see: GitHub repo https://github.com/JIGGAI/ClawRecipes)

Notes / principles

  • Workspaces:
    • Standalone agents: ~/.openclaw/workspace-<agentId>/
    • Teams: ~/.openclaw/workspace-<teamId>/ with roles/<role>/...
  • Skills:
    • Global (shared): ~/.openclaw/skills/<skill>
    • Scoped (agent/team): ~/.openclaw/workspace-*/skills/<skill>
  • Team IDs end with -team; agent IDs are namespaced: <teamId>-<role>.
  • Recipe template rendering is intentionally simple: {{var}} replacement only.

Removing (uninstalling) a scaffolded team

ClawRecipes includes a safe uninstall command:

openclaw recipes remove-team --team-id <teamId> --plan --json
openclaw recipes remove-team --team-id <teamId> --yes
openclaw gateway restart

Notes:

  • The command is confirmation-gated by default (use --yes to apply).
  • Cron cleanup is conservative: it removes only cron jobs that are explicitly stamped with recipes.teamId=<teamId>.
  • If you need a manual fallback, you can still delete ~/.openclaw/workspace-<teamId> and remove <teamId>-* agents from agents.list[] in ~/.openclaw/openclaw.json.

Links

Note

ClawRecipes is meant to be installed and then used to build agents + teams.

Most users should focus on:

  • authoring recipes in their OpenClaw workspace (<workspace>/recipes/*.md)
  • scaffolding teams (openclaw recipes scaffold-team ...)
  • running the file-first workflow (dispatch → backlog → in-progress → testing → done)

Goals

  • Release Clawmarket, https://github.com/JIGGAI/ClawMarket, public url https://clawkitchen.ai
  • Release ClawKitchen, https://github.com/JIGGAI/ClawKitchen
  • Merge at least 1 community pull request
  • Daily shipping/pull requests of ClawRecipes features
  • Improve recipes with more detailed agent files
  • Add ability to install skills for agents through ClawKitchen