vault-activate
License management and activation tool for Pro-tier analysis features.
Install
mkdir -p .claude/skills/vault-activate && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11361" && unzip -o skill.zip -d .claude/skills/vault-activate && rm skill.zipInstalls to .claude/skills/vault-activate
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Activate Pro license for vault-analyze features. Validates license key against API and saves to settings.Key capabilities
- →Validate license keys
- →Activate Pro features
- →Manage machine activation limits
- →Handle offline grace periods
How it works
The skill validates the license key against an API, generates a machine ID, and updates the local settings.json file upon successful verification.
Inputs & outputs
When to use vault-activate
- →Activating Pro features
- →Validating license keys
- →Deactivating Pro access
About this skill
$ARGUMENTS
License Activation
Activate Pro features by validating a license key against the API.
License Key Format
OE-XXXXX-XXXXX-XXXXX-XXXXX
Where X is alphanumeric (A-Z, 0-9, excluding ambiguous chars I/O/0/1).
Activation Flow
-
Validate format: Check key matches
OE-[A-Z0-9]{5}-[A-Z0-9]{5}-[A-Z0-9]{5}-[A-Z0-9]{5} -
Generate machine ID: Create stable ID from system:
echo "m-$(echo "$(hostname)-$(whoami)" | md5 | cut -c1-12)" -
Call validation API:
POST https://api.obsidian-explorer.jhavens.tech/v1/license/validate Content-Type: application/json { "license_key": "OE-XXXXX-XXXXX-XXXXX-XXXXX", "machine_id": "m-abc123def456" } -
Handle response:
valid: true→ Update settings.json, report successvalid: false→ Report reason (invalid, expired, machine_limit)
-
Update settings.json:
{ "pro_enabled": true, "pro_license_key": "OE-XXXXX-XXXXX-XXXXX-XXXXX" }
Settings Location
Plugin settings: ./settings.json (relative to plugin root)
Deactivation
When deactivate=true:
- Read current settings.json
- Set
pro_enabled: false - Clear
pro_license_key: "" - Report deactivation complete
Machine Limit
Licenses support up to 3 machines. If limit reached:
- API returns
valid: false, reason: "Machine limit reached" - User must manage machines via customer portal
Offline Behavior
If API unreachable:
- Check for cached validation at
~/.obsidian-explorer/license-cache.json - 7-day offline grace period if previously validated
Output
Success:
Pro license activated!
Type: lifetime
Expires: never
Machines: 1/3
Failure:
License validation failed: Machine limit reached
Manage your devices at: https://obsidian-explorer.jhavens.tech/account
Deactivation:
Pro license deactivated. Pro features disabled.
When not to use it
- →When the license key format is invalid
- →When the machine limit has been reached
Prerequisites
Limitations
- →Supports a maximum of 3 machines per license
- →Requires network access for initial validation
How it compares
It automates the license activation and machine-tracking process instead of requiring manual configuration files.
Compared to similar skills
vault-activate side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| vault-activate (this skill) | 0 | 5mo | Review | Beginner |
| pptx | 393 | 6mo | Review | Advanced |
| nano-pdf | 63 | 2mo | Review | Beginner |
| video-downloader | 101 | 7mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
pptx
anthropics
Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks
nano-pdf
openclaw
Edit PDFs with natural-language instructions using the nano-pdf CLI.
video-downloader
ComposioHQ
Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.
youtube-transcript
michalparkola
Download YouTube video transcripts when user provides a YouTube URL or asks to download/get/fetch a transcript from YouTube. Also use when user wants to transcribe or get captions/subtitles from a YouTube video.
using-superpowers
obra
Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Skill tool before announcing usage, following brainstorming before coding, and creating TodoWrite todos for checklists
browser-automation
browserbase
Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications. Triggers include "browse", "navigate to", "go to website", "extract data from webpage", "screenshot", "web scraping", "fill out form", "click on", "search for on the web". When taking actions be as specific as possible.