Install
$ agentstack add skill-pinecone-io-cultivar-cultivar ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
cultivar
cultivar is a CLI that measures whether an agent skill actually improves an agent's behavior. For each task it runs the agent with the skill and without it (and optionally with the source docs), then an LLM grader scores each run against a natural-language rubric. Use this skill when the user wants to create, run, or interpret cultivar evals.
The loop
cultivar init— scaffoldtasks/.yaml+ aSKILL.mdstub.- Edit the task file (intent + PASS/FAIL criteria) and the skill.
cultivar run -s -r --grade— run all variants and grade.cultivar report/cultivar show latest -t— read the outcome.- Iterate on the skill; re-run; compare.
Always confirm the install first with cultivar hello (or cultivar hello --no-grade when no ANTHROPIC_API_KEY is available) — it runs a packaged smoke task end-to-end.
Commands
cultivar init [--skills-dir DIR]— scaffold task YAML + SKILL.md stub.cultivar run -s -r— run. Key flags:-tone task ·-vone variant--remoterun in isolated Modal sandboxes ·-n Nrepeat ·-p Nparallelism--gradegrade after running ·--title NAMElabel the run ·--dry-runprint the
prompt + command without calling anything · --timeout S per-call budget (default 90)
cultivar grade -s [--report]— (re)grade an existing run.cultivar report [run]— summary table across runners/variants.cultivar show -t [--grader|--conversation-only|--workdir]— inspect one run.
--dry-run is the safe way to preview exactly what will be sent before spending tokens.
Variants (the controls)
- with-skill — skill loaded; prompt prefixed
Use the /. - without-skill — no skill; identical otherwise. The baseline.
- with-docs — no skill, but the task's
ground_truth.context_refsfiles are prepended.
Only runs for tasks that declare context_refs.
Read two deltas: with-skill vs without-skill ("does the skill do anything?") and with-skill vs with-docs ("is the distilled skill better than dumping the raw docs?").
Tasks
tasks/.yaml holds one or more tasks. Each task:
tasks:
- id: a-short-id
intent: "what you'd ask the agent to do"
category: cli # or: code-gen
# setup / teardown / verify: optional shell hooks
# env: ["SOME_KEY"] # required env vars, checked upfront
ground_truth:
criteria: |
PASS requires .
FAIL if .
# context_refs: [docs/ref.md] # activates the with-docs variant
Guidance:
- For code-gen tasks, the intent must say "write a file … in the current directory."
Anything the agent writes to its cwd is captured and shown to the grader. A code-gen task that produces no file auto-fails.
- Write criteria as crisp PASS conditions + at least one concrete FAIL mode — vague
criteria produce vague grades.
Where skills live
cultivar tests exactly one skill per run (the -s one). It resolves the skills root as: --skills-dir flag → CULTIVAR_SKILLS_DIR env → ./.claude/skills. Keep skills-under-test outside .claude/ (e.g. ./skills, via CULTIVAR_SKILLS_DIR=skills) if you don't want your interactive coding agent to auto-load them.
Local vs remote
- Local (default) — uses the runner CLI installed on your machine + its auth.
--remote— each (task, variant, repeat) runs in its own Modal sandbox: clean
isolation, parallelism, reproducibility. Requires a Modal account (modal token new) and a secret holding the agent's ANTHROPIC_API_KEY (default secret name eval-sandbox-secrets; override with CULTIVAR_MODAL_SECRET). Prefer --remote for rigorous comparisons. The grader always runs locally and needs ANTHROPIC_API_KEY.
Reading results
results/[__title]/ holds per-run .json (stats), .md (readable trace), .jsonl (raw events), and .workdir/ (files the agent wrote). grades.json holds the verdicts. Use cultivar report for the table and cultivar show … --grader for the grader's reasoning + suggestions on a failure.
Gotchas
- Grading needs
ANTHROPIC_API_KEY(loaded from a.envin the cwd).hello --no-grade
and run --dry-run need no key.
tasks/,examples/, andresults/are cwd-relative and user-owned.- One run is a sample, not a signal — use
-n 3(or more) for anything you'll act on.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: pinecone-io
- Source: pinecone-io/cultivar
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.