Skill forge author
Skill luigipascal/skill-forge/.cursor/skills/skill-forge-author
CLI to validate, scaffold, and install Agent Skills for Cursor and agentskills.io-compatible agents
npx -y skills add luigipascal/skill-forge --skill skill-forge-authorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Validates and scaffolds Agent Skills using the skill-forge CLI in this repo. Use when creating, linting, or converting Cursor rules to SKILL.md format.
SKILL.md
1.1 KB, 245 tokens by cl100k_base, as published. Nobody here has run it
Skill Forge Author
This repo is skill-forge — toolkit for agentskills.io compatible skills.
Commands (from repo root)
npm run dev validate examples .cursor/skills
npm run dev init my-new-skill --desc "What it does and when to use it"
npm run dev convert D:\path\to\project
npm run dev install-curated
npm run setup
Skill layout
my-skill/
├── SKILL.md # required — YAML frontmatter + instructions
├── reference.md # optional
└── scripts/ # optional helpers
Required frontmatter
---
name: my-skill # lowercase, hyphens, max 64 chars
description: ... # WHAT + WHEN, max 1024 chars
---
Cursor locations
| Scope | Path |
|---|---|
| Personal | ~/.cursor/skills/<name>/ |
| Project | .cursor/skills/<name>/ |
Never write to ~/.cursor/skills-cursor/ (Cursor internal).