Install
$ agentstack add skill-vironnimo-vbot-tools ✓ 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 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.
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
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_registrymaps(skill_project_id, agent_id)to the registry a call activates against;refresh_skillsrescans skills from disk (wired toRuntime.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):Truefresh,Falsealready active,Noneno hook (treated as fresh). Nothing is persisted through the hook — the tool result itself is the durable carrier.
Conventions
skillis governed by both lists:allowed_toolsdecides whether the tool is offered at all (the normal per-agent toggle), andallowed_skillsdecides which skills it may activate.- The tool result IS the content carrier. A fresh activation returns
data: {name, status: "loaded", content}wherecontentis 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 (seeskills.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; seechat.md). - Rescan on name miss. When an activation
nameis absent from the resolved registry, the tool callsrefresh_skillsonce 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 onproject.show/ WebUI Refresh; seeskills.md). A genuinely unknown name still returnsskill_not_foundafter that single rescan. The session-pinned prompt catalog is deliberately left untouched — only activation is made live, no availability note is emitted. List mode (noname) 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
skillis not in the agent'sallowed_tools, the tool is not offered; when it is, an emptyallowed_skillsstill 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.
- Author: Vironnimo
- Source: Vironnimo/vbot
- License: Apache-2.0
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.