plugins marketplace
← All plugins

scaffold-skill

v0.1.0

Write, validate, and optionally package Agent Skills inside repositories.

CodexClaude Code1 skill

by backnotprop4updated 1 month ago

Source

git clone https://github.com/backnotprop/scaffold-skill

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

scaffold-skill/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
└── skills/scaffold-skill/SKILL.md

Skills1

scaffold-skillskills/scaffold-skill/SKILL.md

Write, update, validate, and package agent skills inside an existing or new repository. Use when the user asks to scaffold a skill in a repo, write a SKILL.md, add references/scripts/assets by hand, create project-local .agents/skills entries, optionally add skills.sh/Claude/Codex packaging, or validate skill files before use or publishing.

Manifests2

.codex-plugin/plugin.json
{
  "name": "scaffold-skill",
  "version": "0.1.0",
  "description": "Write, validate, and optionally package Agent Skills inside repositories.",
  "author": {
    "name": "backnotprop"
  },
  "homepage": "https://github.com/backnotprop/scaffold-skill",
  "repository": "https://github.com/backnotprop/scaffold-skill",
  "keywords": [
    "skills",
    "agent-skills",
    "scaffold",
    "claude",
    "codex"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Scaffold Skill",
    "shortDescription": "Write in-repo agent skills",
    "longDescription": "Knowledge skill for writing, validating, and optionally packaging Agent Skills inside existing or new repositories.",
    "developerName": "backnotprop",
    "category": "Productivity",
    "capabilities": [
      "Write"
    ],
    "defaultPrompt": [
      "Use $scaffold-skill to write or validate an agent skill in this repo."
    ]
  }
}
.claude-plugin/plugin.json
{
  "name": "scaffold-skill",
  "skills": [
    "./skills/scaffold-skill"
  ]
}