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

Tools

skill-vironnimo-vbot-tools · by Vironnimo

A Claude skill from Vironnimo/vbot.

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

Install

$ agentstack add skill-vironnimo-vbot-tools

✓ 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-vironnimo-vbot-tools)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo 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 Tools? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill Tool

Tool that activates allowed skill instructions for the current Session. An ordinary allow-list tool — toggleable per agent via allowed_tools like any tool, and seeded default-on in the Project Tool Whitelist (PROJECT_DEFAULT_ALLOWED_TOOLS).

Interfaces

  • Tool name: skill
  • Registration: register_skill_tool(registry, resolve_registry, refresh_skills)resolve_registry maps (skill_project_id, agent_id) to the registry a call activates against; refresh_skills rescans skills from disk (wired to Runtime.reload_skills, invoked once on a name miss).
  • Schema: optional name (omitted or blank → list mode: the live agent-aware catalog grouped by origin); additionalProperties: false.
  • Display: summary field name.
  • ToolContext.activate_skill(name, content) -> bool | None — dedup-only session hook (ChatSession.register_skill_activation): True fresh, False already active, None no hook (treated as fresh). Nothing is persisted through the hook — the tool result itself is the durable carrier.

Conventions

  • skill is governed by both lists: allowed_tools decides whether the tool is offered at all (the normal per-agent toggle), and allowed_skills decides which skills it may activate.
  • The tool result IS the content carrier. A fresh activation returns data: {name, status: "loaded", content} where content is the full ` wrapper — so the skill instructions sit in the conversation exactly where the load happened and replay verbatim like any other tool result (prompt-cache friendly, no separate placement machinery). The wrapper states the absolute skill directory and that relative paths resolve against it; a {baseDir} marker in the body is substituted with that directory (see skills.md`).
  • An already-active skill returns a short stub (status: "already_active", message, no content) — the instructions are already in context (live history, or the post-compaction re-injection; see chat.md).
  • Rescan on name miss. When an activation name is absent from the resolved registry, the tool calls refresh_skills once and re-resolves before giving up, so a skill hand-dropped into a skill directory after the session's registry was cached activates by name without a restart (the runtime otherwise picks up disk drops only on project.show / WebUI Refresh; see skills.md). A genuinely unknown name still returns skill_not_found after that single rescan. The session-pinned prompt catalog is deliberately left untouched — only activation is made live, no availability note is emitted. List mode (no name) does not rescan.

Constraints & Gotchas

  • The loaded envelope shape (data.name / data.status == "loaded" / data.content) is a persisted read contract: core/sessions/ parses it (skill_tool_activation) for once-per-session dedup, the post-compaction skill re-injection, and usage statistics. Renaming those fields breaks activation scanning over existing sessions.
  • When skill is not in the agent's allowed_tools, the tool is not offered; when it is, an empty allowed_skills still blocks activation (nothing to load).

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.