一键导入
autovault-bootstrap
Audit, install, verify, and sync AutoVault for the current agent profile.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Audit, install, verify, and sync AutoVault for the current agent profile.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Review a skill obtained from a trusted external provider before admitting it to a local AutoVault.
Apply the AutoVault brand system across web SVG, terminal ASCII, illustrated mascot, social asset, and video-oriented surfaces when creating or adapting AutoVault-branded UI, docs, demos, or marketing visuals.
Guide a user through secret-safe setup where credentials stay in host secret stores, not in SKILL.md.
Demonstrate a single canonical skill rendered into Claude Code, Codex, and AutoJack tool vocabularies.
Understand AutoVault-managed skills. AutoVault syncs skills into the agent's normal skill directory, so loaded skills can be used directly without an AutoVault MCP server.
Author a well-formed SKILL.md with valid AutoVault frontmatter, a helpful description, and correct capability declarations. Walks the schema section by section with a template and checklist.
| name | autovault-bootstrap |
| version | 0.1.0 |
| description | Audit, install, verify, and sync AutoVault for the current agent profile. |
| license | MIT |
| disable-model-invocation | true |
| allowed-tools | ["Bash(uname:*)","Bash(command -v autovault:*)","Bash(mktemp:*)","Bash(curl -fsSL https://autovault.sh -o *)","Bash(wc -c *)","Bash(sed -n *)","Bash(sh *)","Bash(autovault doctor:*)","Bash(autovault sync-profiles --discover:*)","Read","Write"] |
| tools_required | ["http.fetch","shell.run","fs.read","fs.write"] |
| transformations | {"claude-code":{"http.fetch":"WebFetch","shell.run":"Bash","fs.read":"Read","fs.write":"Write"},"codex":{"http.fetch":"web","shell.run":"exec_command","fs.read":"exec_command","fs.write":"apply_patch"}} |
| capabilities | {"network":true,"filesystem":"readwrite","tools":["http.fetch","shell.run","fs.read","fs.write"]} |
| agents | ["claude-code","codex"] |
Use this skill when the user asks to install, configure, repair, or verify AutoVault for the current agent environment.
Detect the host and current state:
uname -a
command -v autovault
If autovault already exists, run verification first:
autovault doctor
autovault sync-profiles --discover
Report the result and stop unless verification fails.
If AutoVault is missing, stage the installer for review:
tmpdir="$(mktemp -d "${TMPDIR:-/tmp}/autovault-installer.XXXXXX")"
installer="$tmpdir/install.sh"
curl -fsSL https://autovault.sh -o "$installer"
wc -c "$installer"
sed -n '1,160p' "$installer"
Summarize what the staged script appears to do. Include install location, profile changes, network calls, and any commands that modify the filesystem.
Ask the user for explicit approval before running:
sh "$installer"
After an approved install, verify and sync:
autovault doctor
autovault sync-profiles --discover
If anything fails, explain the blocked step, likely permission or network cause, and the exact command the user can run manually.
The current machine should have a working autovault command, a healthy ~/.autovault folder, and discovered agent profiles refreshed through AutoVault.