AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skillgrade Setup

skill-mgechev-skillgrade-skillgrade-setup · by mgechev

Sets up and runs skillgrade evaluation pipelines for Agent Skills. Use when initializing eval configurations, running trials, reviewing results, or integrating with CI. Don't use for writing grader scripts, general test authoring, or non-agentic documentation.

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-mgechev-skillgrade-skillgrade-setup

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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 No
  • 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mgechev-skillgrade-skillgrade-setup)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Skillgrade Setup? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skillgrade Evaluation Setup

Procedures

Step 1: Install Skillgrade

  1. Verify Node.js 20+ and Docker are available.
  2. Run npm i -g skillgrade to install the CLI globally.

Step 2: Initialize an Eval Configuration

  1. Navigate to the skill directory (must contain a SKILL.md).
  2. Set the appropriate API key environment variable (GEMINI_API_KEY, ANTHROPIC_API_KEY, or OPENAI_API_KEY).
  3. Run skillgrade init to generate an eval.yaml with AI-powered tasks and graders.
  4. If an eval.yaml already exists, pass --force to overwrite: skillgrade init --force.
  5. Without an API key, a well-commented template is generated instead.

Step 3: Configure eval.yaml

  1. Read references/eval-yaml-spec.md for the full configuration schema.
  2. Define one or more tasks under the tasks: key. Each task requires:
  • name: unique task identifier
  • instruction: what the agent should accomplish
  • workspace: files to copy into the evaluation container
  • graders: one or more scoring mechanisms (see the skillgrade-graders skill)
  1. Optionally configure defaults: for agent, provider, trials, timeout, and threshold.

Step 4: Run Evaluations

  1. Select an appropriate preset based on the evaluation goal:
  • --smoke (5 trials): Quick capability check.
  • --reliable (15 trials): Reliable pass rate estimate.
  • --regression (30 trials): High-confidence regression detection.
  1. Run the evaluation: skillgrade --smoke.
  2. Run a specific eval by name: skillgrade --eval=fix-linting.
  3. Run multiple evals: skillgrade --eval=fix-linting,write-tests.
  4. Run only deterministic graders (skip LLM calls): skillgrade --grader=deterministic.
  5. Run only LLM rubric graders: skillgrade --grader=llm_rubric.
  6. The agent is auto-detected from the API key. Override with --agent=gemini|claude|codex|acp|opencode.
  7. For ACP, pass --acp-command="gemini --acp" or set defaults.acp.command.
  8. For OpenCode, pass --opencode-agent=build|plan|explore or --opencode-model=provider/model.
  9. Override the provider with --provider=docker|local.

Step 5: Review Results

  1. Run skillgrade preview for a CLI report.
  2. Run skillgrade preview browser to open the web UI at http://localhost:3847.
  3. Reports are saved to $TMPDIR/skillgrade//results/. Override with --output=DIR.

Step 6: Integrate with CI

  1. Add a GitHub Actions step that installs skillgrade, navigates to the skill directory, and runs with --regression --ci --provider=local.
  2. Use --provider=local in CI — the runner is already an ephemeral sandbox, so Docker adds overhead without benefit.
  3. The --ci flag causes a non-zero exit code if the pass rate falls below --threshold (default: 0.8).
  4. Read references/ci-example.md for a complete workflow template.

Error Handling

  • If skillgrade init fails with "No SKILL.md found," verify the current directory contains a valid SKILL.md file.
  • If evaluation hangs, check Docker is running and the container has network access for API calls.
  • If all trials fail with "No API key," ensure the environment variable is exported, not just set inline for a different command.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.