AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Skill Author

skill-joshrotenberg-skillet-skill-author · by joshrotenberg

Authoring skills for skillet. Covers the skill format, discovery via suggest, and project manifests.

No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add skill-joshrotenberg-skillet-skill-author

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-joshrotenberg-skillet-skill-author)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Skill Author? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill Authoring Guide

Skill Format

A skill is a directory with a required SKILL.md file:

owner/skill-name/
  SKILL.md         # the skill prompt with YAML frontmatter (required)
  scripts/         # optional executable scripts
  references/      # optional reference docs
  assets/          # optional templates, configs

SKILL.md

Agent Skills spec-compatible markdown with YAML frontmatter for metadata:

---
name: my-skill
description: What this skill does and when to use it.
version: 2026.02.27
trigger: When to activate this skill
license: MIT
author: Your Name
categories:
  - development
tags:
  - rust
  - testing
---

## My Skill

Instructions for the agent...

Frontmatter fields: name, description, version, trigger, license, author, categories, tags. All optional -- skillet infers what it can from the directory name, git remote, and content.

Zero-config mode: a directory with only a bare SKILL.md (no frontmatter) is still discoverable. Frontmatter improves search results.

Extra Files

  • scripts/ -- executable scripts the skill references
  • references/ -- reference documentation for context
  • assets/ -- templates, configs, or other static files

Scaffolding

skillet init-skill owner/skill-name
skillet init-skill owner/skill-name --description "My skill" --category development --tags "rust,testing"

Discovery via Suggest

Use [[suggest]] in your repo's skillet.toml to create a decentralized discovery graph. Each suggest entry points to another repo that skillet can traverse to find more skills:

[[suggest]]
url = "https://github.com/org/their-skills.git"
description = "Skills from org"

This lets users discover skills across repos without a central authority.

Project Manifest

Embed skills in any repository with skillet.toml:

skillet init-project path --skill     # single inline skill
skillet init-project path --multi     # multi-skill directory
skillet init-project path --registry  # repo configuration
[project]
name = "my-tool"
description = "A CLI tool"

# Single inline skill (SKILL.md at project root)
[skill]
name = "my-tool-usage"
description = "How to use my-tool"

# Or multiple skills in a subdirectory
[skills]
path = ".skillet"
members = ["api", "debug"]

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.