Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Skills Visibility

CSecurity

Use when a publisher wants a discoverable, integrity-protected agent-skill catalog served from a domain they control. Not for remote mutation or deployment. The publisher deploys.

35 stars
0 votes
0 copies
0 views
Added 9/12/2026
ai-agentsgit

Security Analysis

C67/100
mediumUses curl or wget to download content
criticalDownloads and executes remote scripts — classic supply chain attack

Scanned 9/12/2026

Install to Claude Code

$npx -y skills add OutlineDriven/odin-claude-plugin --skill skills-visibility --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Skills Visibility?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Skills Visibility
[![Security: C — Skills Directory](https://www.skillsdirectory.com/api/skills/outlinedriven-skills-visibility-odin-claude-plugin/badge)](https://www.skillsdirectory.com/skills/outlinedriven-skills-visibility-odin-claude-plugin)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: skills-visibility
description: 'Use when a publisher wants a discoverable, integrity-protected agent-skill catalog served from a domain they control. Not for remote mutation or deployment. The publisher deploys.'
disable-model-invocation: true
---

# Skills visibility

## Contract

| Field | Bound contract |
|---|---|
| Trigger | Publisher wants to build, distribute, or self-host a discoverable integrity-protected agent-skill catalog |
| Authority | Reversible local: writes only build artifacts and index in the output tree; rollback is deleting the output tree. No remote mutation. The publisher deploys; the skill never pushes or mutates remotes. |
| Side effect | Produces `SKILL.md` files or flat `.tar.gz` archives and `.well-known/agent-skills/index.json` with SHA-256 digests and install commands. No remote mutation, no credential access, no VCS operation |
| Done | A complete publishable local tree (schema-valid index, flat deterministic archives, digests matching the produced bytes) plus a per-skill report of shape, digest, and install commands, with post-deploy verification results recorded when run |

## Inputs

- Skill source directory (required): a directory tree where each skill lives at `skills/<name>/SKILL.md`, optionally with sibling files. Must be a Git repo if repo-based install methods are used.
- Publisher-controlled https origin (required): the `https://` origin the publisher controls and serves from (e.g., `https://yourdomain.com`). Never `raw.githubusercontent.com` or any host whose delivery the publisher does not control.
- Local output directory (required): local path where the publishable tree is written. The publisher copies or deploys this tree to their domain.
- Optional bundle slug: if publishing a bundle of multiple skills as one combined archive, the bundle slug. Each contained skill still gets its own index entry.

## Procedure

1. Classify each skill as single-file, multi-file, or bundle container and fail on duplicate names. For every `skills/<name>/` directory: if it contains only `SKILL.md`, shape is single-file. If it contains `SKILL.md` plus sibling files (references, scripts, assets), shape is multi-file. If it contains nested `skills/` subdirectories, shape is bundle container. Check every name for uniqueness across the entire source tree. A duplicate shadows rather than adds; abort before writing the index. Done when: every skill is classified and no duplicate names are found.
2. Build deterministic flat artifacts. For each skill, produce the artifact its shape requires in the output directory under `agent-skills/`:
   - Single-file: copy `SKILL.md` as-is to `agent-skills/<name>/SKILL.md`.
   - Multi-file: create a reproducible tar with sorted entries, zeroed owner, and fixed mtime (`tar --sort=name --owner=0 --group=0 --mtime=@0 -cf agent-skills/<name>.tar.gz -C <skill-dir> .`). Verify `tar -tzf` shows no wrapping folder.
   - Bundle container: create a reproducible tar of the entire bundle directory with the same deterministic flags.
   Done when: every artifact is produced as a flat deterministic archive or copied file.
3. Write `.well-known/agent-skills/index.json` with the exact schema and sha256 digests computed from the exact artifact bytes. The document has exactly two top-level keys: `$schema` and `skills[]`. Per-skill fields: `name` (lowercase letters, digits, single dashes, unique), `description` (from frontmatter), `type` (`skill-md` for single-file, `archive` for multi-file or bundle), `url` (pointing at the publisher-controlled domain), and `digest` (`sha256:<hex>` computed over the exact bytes of the produced artifact). Hash in the same pass that builds the artifact, never from a separate copy. Done when: the index is written with every digest matching its produced bytes and conforming to the schema.
4. Generate at least two install methods per skill. Produce `pnpm dlx skills add https://<domain>/agent-skills --skill <name> -a <agent> -g` plus a curl fallback (`curl -sL https://<domain>/agent-skills/<name>/SKILL.md`). When a Git source exists, add repo-based methods (`gh skill install <owner>/<repo> --skill <name>` or Claude plugin marketplace install). Done when: at least two install methods are generated per skill.
5. Hand the publisher a verification checklist to run after deploy. The checklist contains: digest re-hash against served bytes (`curl -sL <url> | sha256sum`), tar layout listing (`curl -sL <url> | tar -tzf -`), real install into a target agent (run one install command and confirm the skill loads), and an activation probe (trigger the skill and confirm it fires). Report each check's result when the publisher runs it, without claiming pre-deploy completion. Done when: the checklist is delivered and any results the publisher provides are recorded.

## Failure and recovery

- Duplicate name in index: abort before writing the index. Two skills sharing a `name` causes one to shadow the other. Rename or remove the duplicate.
- Digest mismatch: the hash was computed from bytes other than what is served. Rebuild the artifact and recompute the digest in one pass. Never publish a digest that cannot be reproduced.
- Non-flat archive: `tar -tzf` shows a wrapping folder. Rebuild from inside the skill directory, not its parent.
- Uncontrolled-host URL: replace with a URL on the publisher's domain. A digest over bytes whose delivery is not controlled will drift on any upstream change.
- Index schema violation: missing required field, extra undefined field, or wrong `type` value. Fix against the schema before publishing.
- Incomplete tree: if verification fails after writing files, delete or overwrite the output directory; do not serve it. The publisher deploys only a complete, verified tree.

## Output

A complete publishable tree in the output directory: `.well-known/agent-skills/index.json` conforming to the discovery schema, `agent-skills/<name>/SKILL.md` for each single-file skill, `agent-skills/<name>.tar.gz` for each multi-file skill (flat archive, deterministic build), optionally `agent-skills/<bundle>-bundle.tar.gz` for bundles, and a per-skill report listing each skill, its shape, its digest, and its install commands, with post-deploy verification results recorded when the publisher runs them.

Attribution

OutlineDrivenOutlineDriven
View sourceMore from OutlineDriven →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Caveman

Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.

1023331 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

651 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →