원클릭으로
trusted-skill-import
Review a skill obtained from a trusted external provider before admitting it to a local AutoVault.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review a skill obtained from a trusted external provider before admitting it to a local AutoVault.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
Audit, install, verify, and sync AutoVault for the current agent profile.
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 | trusted-skill-import |
| version | 0.1.0 |
| description | Review a skill obtained from a trusted external provider before admitting it to a local AutoVault. |
| license | MIT |
| tags | ["provenance","trusted-provider","import","autovault"] |
| agents | ["claude-code","codex"] |
| category | provenance |
| tools_required | ["Read"] |
| capabilities | {"network":false,"filesystem":"readonly","tools":["Read"]} |
| source | {"provider":"Anthropic","reference":"https://docs.claude.com/en/docs/agents-and-tools/agent-skills"} |
Use this skill when a user has a skill from a trusted external source and wants an agent to inspect it before local admission. It demonstrates the AutoVault review path for third-party skills without turning the public examples page into a marketplace.
SKILL.md before suggesting install.The user gets a clear provenance note, a local gate result, and a command they can run themselves:
tmpdir=$(mktemp -d)
trap 'rm -rf "$tmpdir"' EXIT
curl -fsSL https://example.com/trusted-provider/SKILL.md -o "$tmpdir/SKILL.md"
autovault add "$tmpdir" --source local --sync-profiles --yes
Do not install or execute any provider-supplied scripts until the user has reviewed the declared capability surface.