AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
skillberry-ai avatar

skillberry-ai

24 listings · 0 installs

Open-source publisher. Listings imported from github.com/skillberry-ai — credited to the original author with their license.

↗ github.com/skillberry-ai
24 results
Self-run
SKILL

Gepa

Runs the real GEPA optimization loop (arXiv:2507.19457) — sample-efficient reflective Pareto search. Use when rollouts are expensive and the scorer gives informative per-task feedback, and you want the most quality per evaluation. Each iteration samples a parent from a per-instance Pareto frontier, evaluates it on a cheap minibatch of train tasks with full traces, builds a reflective dataset over…

0
37
Free
Self-run
SKILL

Report

Summarize a run for a human — baseline val → best val → sealed test, the winning candidate, iterations spent, and pass^k. Use after finalize. Writes report.md and prints a compact JSON summary; the source of truth for "did this optimization actually work, and by how much".

0
36
Free
Self-run
SKILL

Mcp Tool

Optimize an MCP toolset whose server is EXTERNAL (you can't re-implement the tools). Use when the agent talks to tools served over MCP and mis-selects them or fills arguments wrong. Only safe edits are permitted — tool/parameter documentation, in-description examples, and adding or removing tools from the exposed set. The wire schema and tool code are NOT editable here (the server owns them).

0
29
Free
Self-run
SKILL

Baseline

Establish the starting point. Use after implement-and-check and before any algorithm. Creates the run directory, freezes the seeded train/val/test split (written once), scores the unmodified seed capability on val, and records it as the candidate every algorithm must beat. Confirms there is headroom to optimize.

0
31
Free
Self-run
SKILL

Finalize

Score the best candidate on the held-out TEST split exactly once and seal the run. Use as the last evaluation step, after optimization stops. The run dir enforces the seal — a second finalize raises an error — so the headline number is produced once on data the optimizer never saw, the way an honest benchmark result must be.

0
27
Free
Self-run
SKILL

Using Cap Evolve

Entry-point router for cap-evolve. Use the moment a user asks to OPTIMIZE an agent capability against an eval — "optimize <X>", "make <X> score higher on <benchmark>", "improve this skill/tool/prompt". Decides whether a project already exists and routes accordingly: to intake (Phase 1) for a fresh request, or straight into the phase chain / `cap-evolve run` when `.capevolve/project/` is already s…

0
30
Free
Self-run
SKILL

Hill Climb

Runs a global hill-climb optimization loop where the parent is always the current best candidate and the val significance gate decides acceptance. Use as the algorithm for most runs. Pick how each iteration's reflection is focused with --focus all (whole train set), cyclic (one task at a time), or hardest-first (lowest-scoring tasks first). Replaces the former all-at-once, cyclic, and hardest-fir…

0
38
Free
Self-run
SKILL

Gate

Apply the acceptance decision that keeps optimization honest — always on the val split, by default requiring the improvement to exceed the significance bar (Δ > k·SE) so noise is not mistaken for progress. Use to inspect or reproduce a single accept/reject decision; the algorithms apply it internally every iteration.

0
25
Free
Self-run
SKILL

Calculate

A simple calculator tool that evaluates mathematical expressions. Supports basic arithmetic operations including addition, subtraction, multiplication, and division.

0
30
Free
Self-run
SKILL

Run Optimizer

Drives any shell-invokable coding agent (Claude Code, Codex, Gemini CLI, opencode, Cursor, Factory Droid, GitHub Copilot CLI, Kimi, Pi, Antigravity, OpenClaw, IBM Bob, or a fully custom command) as the edit proposer in a cap-evolve run, resolving the named optimizer from optimizers/registry.yaml. Use this as the optimizer for every run; pick the concrete agent with --name (or optimizer_skill in t…

0
38
Free
Self-run
SKILL

Orchestrate

Drive the entire cap-evolve pipeline end to end, autonomously. Use when the user wants the whole optimization run with minimal hand-holding. Sequences intake → implement-and-check → baseline → the chosen algorithm loop → finalize → report, enforces the cap-evolve-check hard gate before spending budget, decides when to stop (budget/stall), and surfaces the honest test number at the end. Reads cape…

0
32
Free
Self-run
SKILL

<skill Name>

<One paragraph. WHAT this skill does and WHEN an agent should reach for it. This is the host's activation signal, so be concrete and self-contained — an agent decides whether to load the skill from this text alone.>

0
37
Free
Self-run
SKILL

Tools

Optimize an agent's OWN tool surface (tools it implements, not an external MCP server). Use when the agent mis-selects tools, fills arguments wrong, or has a confusing/redundant toolset. You may edit tool names, descriptions, parameter docs, in-description examples, the JSON schema/API, the tool code itself, ADD tools (including composite tools that call existing tools), and REMOVE tools — all un…

0
33
Free
Self-run
SKILL

Evaluate

Score a candidate on a split with honest, variance-aware evaluation. Use whenever you need a number for a candidate (the algorithm calls it internally; you can also call it directly to inspect). Runs the target via the adapter for each task, scores each rollout, aggregates mean + standard error, and reports pass^k when trials > 1. Never touches the test split (that is finalize's sealed job).

0
28
Free
Self-run
SKILL

Diagnose

Extract the learning signal from execution traces — the textual analogue of a gradient. Use between evaluation and proposing edits. Reads a candidate's val rollouts, separates good signals to keep from bad signals to fix, builds a reflective dataset (per failing task — Inputs, Generated Outputs, Feedback) and groups failures into clusters by shared signature, so the optimizer knows what to change…

0
36
Free
Self-run
SKILL

Primitive Skill

This skill contains the basic set of primitive tools provided by Tau2.

0
21
Free
Self-run
SKILL

Skill Package

Optimize an Agent Skill package itself — its SKILL.md (frontmatter + body), references, and bundled scripts. Use when the capability under optimization IS a skill, you want the downstream agent to trigger it correctly and follow it without wasted steps. Enforces the skill-creator authoring rules (progressive disclosure, valid frontmatter, body budget, one-level references) so edits stay valid ski…

0
37
Free
Self-run
SKILL

System Prompt

Optimize an agent's system prompt or policy text — the instructions that shape its behavior. Use when the thing you want to improve is a prompt/policy file (not tools or a skill package). Covers what is safely editable, how prompt wording changes agent behavior, common failure modes (over-long preambles, conflicting instructions, missing output contracts), and what to measure. Provides concrete m…

0
32
Free
Self-run
MCP

Cap Evolve

Optimize any AI agent’s skills, tools/MCP, and prompts against your own evals.

0
32
Free
Self-run
SKILL

Csv Data Analyzer

Analyzes CSV files and generates summary statistics

0
39
Free
Self-run
MCP

Skillberry Store

MCP server from skillberry-ai/skillberry-store.

0
11
Free
Self-run
SKILL

Skillopt

Runs the SkillOpt single-lineage optimization loop over epochs x mini-batches with a textual learning rate (an integer edit budget that decays on a constant|linear|cosine schedule), a within-epoch rejected-edit + failure-pattern buffer injected into the optimizer prompt, and a gated epoch-boundary slow/meta update that fixes longitudinal regressions. Parent is always the current best; acceptance…

0
42
Free
Self-run
SKILL

Intake

Phase 1 of the pipeline — collect inputs and scaffold the run. Use at the very start of any optimization. Interviews the user to decide what capability to optimize, which runner/optimizer/algorithm to use, and where the data is; scaffolds .capevolve/project/ (adapter stub, capevolve.yaml, PROJECT.md); and for every NEEDED input that is missing, asks the user (quoting path, how to retrieve it, alt…

0
33
Free
Self-run
SKILL

Implement And Check

The HARD GATE that must pass before any optimization budget is spent. Use right after intake. Walks the agent through implementing the 4 adapter methods (and any selected skill's abstract methods), then runs `cap-evolve check` on the project plus each involved skill's check.py, refusing to proceed until everything is implemented and deterministic — and listing exactly what is still stubbed.

0
33
Free
You've reached the end · 24 loaded