contribute-stack

contribute-stack is a skill for Claude Code, Codex from felipefontoura/bento. It costs 110 tokens per session (3,572 once invoked), scanned A, original, MIT.

A contributor guide for adding an application stack to the Bento repository. An application stack is the files needed to run an app, such as a Docker Compose configuration and metadata.

In plain words
What is it for?
Use it to scaffold a new stack under Bento’s stacks directory, optionally add a skill for operating the app through its API, update the documentation, and create a git commit.
Why use it?
It prevents contributors from adding files in the wrong project or using the contributor workflow when they actually need to deploy an app remotely. It also checks the repository’s rules before changes are made.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/felipefontoura/bento/contribute-stack
Any agent
npx skills add felipefontoura/bento --skill contribute-stack
Clone the repo
git clone --depth 1 https://github.com/felipefontoura/bento

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for contribute-stack

README.md
[![agentmods](https://agentmods.dev/badge/skills/felipefontoura/bento/contribute-stack.svg)](https://agentmods.dev/skills/felipefontoura/bento/contribute-stack)
Your own site
<a href="https://agentmods.dev/skills/felipefontoura/bento/contribute-stack"><img src="https://agentmods.dev/badge/skills/felipefontoura/bento/contribute-stack.svg" alt="Measured on agentmods" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,572 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00110 $0.03572
Opus 5 $0.00055 $0.01786
Sonnet 5 $0.00022 $0.00714
Haiku 4.5 $0.00011 $0.00357

Measured 4d ago against content hash 023d53de8608, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

contribute-stack scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

on purpose: `wget`-based probes on small VPS were SIGKILLing healthy
.claude/skills/contribute-stack/SKILL.md · 344 lines

How it starts

The opening of the file, as written. The whole thing — 344 lines — stays where its author put it; the contents beside it link to each section on GitHub.

contribute-stack

Use this skill when a CONTRIBUTOR asks to add a new application stack to the bento repo. Always start by reading CLAUDE.md for current conventions — prefer its rules over anything stated here if they ever drift.

Context guard — check before doing anything. This skill operates on a local clone of the bento repo: it creates files under stacks/, edits README.md, and makes a git commit. Confirm you are in that context — CLAUDE.md and a stacks/app/ directory must exist in the working tree:

test -f CLAUDE.md && test -d stacks/app && echo BENTO_REPO_OK

If that fails, STOP. This is a contributor skill, not an operator one. The user is probably trying to deploy an app onto their own VPS — point them at the bento plugin's /bento:deploy skill, which does it over SSH without a local clone. Do not try to scaffold files outside a bento checkout.

Every comment, message, and doc you produce must be in English. Even when the user prompts you in Portuguese, the artifacts going into the repo stay English-only.

When to invoke

Trigger phrases include:

  • "add a new stack for "
  • "I want to bundle into bento"
  • "create a stack: "
  • "scaffold "

If the user is just asking to deploy an existing stack via the menu, that is not this skill — point them at Step 3 in the install menu.

Required inputs

Ask for these up front if missing:

  1. Stack key — short, kebab-case, lowercase (e.g. n8n, cli-proxy-api). Will be the directory name and the user-visible label in the menu.
  2. Upstream GitHub repo<owner>/<repo> (e.g. n8n-io/n8n). This is non-negotiable: the skill fetches the project's own reference docker-compose.yml and .env.example before writing anything.
  3. Public-facing host — does this app expose an HTTP UI/API behind Traefik? If yes, the default host pattern is <key>.${BASE_DOMAIN}. If no, no Traefik labels are needed.

Everything else (image tag, env vars, secrets, dependencies, ports, healthcheck endpoint) is derived from the upstream repo in step 1 below — do not invent any of it from training data.

Read the full file on GitHub · 344 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 344 lines · 110 tokens per session scan A 023d53de8608

Subscribe to this mod's changes

contribute-stack is a skill published in the GitHub repository felipefontoura/bento (20 stars, last pushed 1mo ago), licensed MIT. It adds 110 tokens to every session and 3,572 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

nvcf-self-managed-prerequisite

Install the prerequisites the NVCA operator / compute plane needs before nvcf-nvca-install can succeed: the operator tool nvcf-cli (required by the compute-plane stack's register-cluster step), KAI Scheduler (for the KAIScheduler feature gate), and the SMB CSI driver (for the sharedStorage Samba sidecar PVCs). The two…

NVIDIA/nvcf · 195 tokens

portainer-mcp-hygiene

How to drive the Portainer MCP server's tools correctly — both reading and mutating. Reading: project responses with select (JMESPath), where the heavy fields live (snapshots, status blocks, managed fields), how to handle non-JSON Docker/K8s proxy endpoints (container and pod logs, stats, exec), and how to interpret…

portainer/portainer-mcp · 315 tokens

portainer-mcp-release

How to cut a portainer-mcp release that bumps the embedded Portainer OpenAPI spec to a new Portainer minor (e.g. 2.41.x → 2.42.x). Walks through finding the upstream patch target, regenerating the spec, recounting ops/tags per profile, refreshing the orphan-tag inventory, bumping version pins across the README and…

portainer/portainer-mcp · 186 tokens

byaan:start

Initialize Byaan development environment using Docker. Builds and starts backend and frontend containers with SQLite, opens the browser, learns the codebase, and configures MCP. Use when setting up the project for the first time.

byaan-ai/byaan · 47 tokens

config-var

Use when adding, renaming, or removing an environment variable, changing startup configuration validation, adding a Compose profile or service, or adding a Prometheus metric. Triggers on "environment variable", "NACRE", "config", "docker compose", "profile", "metrics", "healthcheck", "readiness".

nacre-work/nacre · 68 tokens

node-deploy

Build and deploy Node.js applications — version detection, package managers, framework-specific builds, monorepo support, and Dockerfile patterns. Use when deploying a Node.js, JavaScript, or TypeScript project, or when package.json is detected in the repository.

nixopus/nixopus · 56 tokens