Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
recipe-cost-calculator logo

recipe-cost-calculator

market-calculator

productivityClaude Codeby wtcooper

Summary

Cost out and price recipes for farmers-market sale, with a growing local SQLite library of ingredients, prices, recipes, and event overhead.

Install to Claude Code

/plugin install recipe-cost-calculator@market-calculator

Run in Claude Code. Add the marketplace first with /plugin marketplace add wtcooper/market-calculator if you haven't already.

README.md

market-calculator

A Claude plugin that costs out and prices recipes for farmers-market sale, keeping a growing local library of ingredients, prices, recipes, and event overhead in a small SQLite database.

It installs into Claude Code, Claude Desktop, and Claude Cowork from this repo (which doubles as a plugin marketplace). The compute logic is a single, dependency-free Python script bundled inside the skill — no server, no

pip install, runs in any Python 3 sandbox.

Repository layout

.claude-plugin/marketplace.json        # makes this repo an installable marketplace
plugins/recipe-cost-calculator/
  .claude-plugin/plugin.json           # plugin manifest
  skills/recipe-cost-calculator/
    SKILL.md                           # workflow + first-run setup
    scripts/market_calc.py             # all the math + SQLite, stdlib only
    references/                        # command reference + ingredient densities
tests/                                 # pytest suite for the compute logic

Install

Claude Code

/plugin marketplace add wtcooper/market-calculator
/plugin install recipe-cost-calculator@market-calculator

Claude Desktop / Cowork

Customize → Plugins → Personal plugins → +Add marketplace → paste this repo's GitHub URL → install recipe-cost-calculator. Code execution must be enabled for the bundled script to run.

How data is stored

On first use the skill asks where to keep the library (default ./.data/ in your working folder) and saves that choice to .recipe-cost-calc.json, so it only asks once. Both are git-ignored — your library never travels with the plugin.

Development / tests

uv sync          # pytest only; the script itself needs no deps
uv run pytest

You can also drive the script directly:

python3 plugins/recipe-cost-calculator/skills/recipe-cost-calculator/scripts/market_calc.py \
    --db ./.data/market.db list-ingredients

Related plugins

Browse all →