plugins/agentv-dev/skills/agentv-onboarding/SKILL.md
Bootstrap AgentV in the current workspace after plugin-manager install. Ensures CLI availability, runs workspace init, and verifies setup artifacts.
npx skillsauth add entityprocess/agentv agentv-onboardingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when the user asks to set up AgentV in a repository.
Set up AgentV in the current workspace:
agentv CLI is available (install if needed)Find the directory that contains this SKILL.md, then resolve script paths relative to it.
Packaged scripts:
scripts/onboard-agentv.sh for bash/zshscripts/onboard-agentv.ps1 for PowerShellRun from the repository root where AgentV should be initialized.
POSIX shells:
bash <skill-dir>/scripts/onboard-agentv.sh
PowerShell:
pwsh -File <skill-dir>/scripts/onboard-agentv.ps1
If pwsh is unavailable on Windows:
powershell -ExecutionPolicy Bypass -File <skill-dir>/scripts/onboard-agentv.ps1
If the script fails, report the exact error and stop. Do not claim setup succeeded.
Summarize:
agentv version in useagentv init completedRe-running is safe. The scripts run agentv init, and if setup artifacts are still missing they rerun once automatically before failing.
tools
Analyze AgentV evaluation traces and result JSONL files using `agentv inspect` and `agentv compare` CLI commands. Use when asked to inspect AgentV eval results, find regressions between AgentV evaluation runs, identify failure patterns in AgentV trace data, analyze tool trajectories, or compute cost/latency/score statistics from AgentV result files. Do NOT use for benchmarking skill trigger accuracy, analyzing skill-creator eval performance, or measuring skill description quality — those tasks belong to the skill-creator skill.
development
Author, edit, and lint `governance:` blocks in `*.eval.yaml` files. Use when creating or updating evaluation suites that carry AI-governance metadata (OWASP LLM Top 10, OWASP Agentic Top 10, MITRE ATLAS, EU AI Act, ISO 42001). Also use non-interactively (e.g., from a GitHub Action) to lint changed eval files and report violations against the rules in `references/lint-rules.md`. Do NOT use for running evals or benchmarking — that belongs to agentv-bench.
development
Write, edit, review, and validate AgentV EVAL.yaml / .eval.yaml evaluation files. Use when asked to create new eval files, update or fix existing ones, add or remove test cases, configure graders (`llm-grader`, `code-grader`, `rubrics`), review whether an eval is correct or complete, convert between EVAL.yaml and evals.json using `agentv convert`, or generate eval test cases from chat transcripts (markdown conversation or JSON messages). Do NOT use for creating SKILL.md files, writing skill definitions, or running evals — running and benchmarking belongs to agentv-bench.
development
Use when reviewing eval YAML files for quality issues, linting eval files before committing, checking eval schema compliance, or when asked to "review these evals", "check eval quality", "lint eval files", or "validate eval structure". Do NOT use for writing evals (use agentv-eval-writer) or running evals (use agentv-bench).