Agent skill
agentv-onboarding
Bootstrap AgentV in the current workspace after plugin-manager install. Ensures CLI availability, runs workspace init, and verifies setup artifacts.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/agentv-onboarding
SKILL.md
AgentV Onboarding
Use this skill when the user asks to set up AgentV in a repository.
Goal
Set up AgentV in the current workspace:
- ensure the
agentvCLI is available (install if needed) - initialize workspace files
- verify setup artifacts and report status
Workflow
1. Resolve Script Path
Find the directory that contains this SKILL.md, then resolve script paths relative to it.
Packaged scripts:
scripts/onboard-agentv.shfor bash/zshscripts/onboard-agentv.ps1for PowerShell
2. Run the Platform Script
Run 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
3. Handle Errors
If the script fails, report the exact error and stop. Do not claim setup succeeded.
4. Report Outcome Clearly
Summarize:
agentvversion in use- whether CLI was installed during this run
- whether
agentv initcompleted - whether setup verification passed
Re-run Behavior
Re-running is safe. The scripts run agentv init, and if setup artifacts are still missing they rerun once automatically before failing.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?