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

Skillforge

skill-thrillmade-agent-skills-skillforge · by thrillmade

Create or update a reusable agent skill. Use when you notice a repeated pattern, when a workflow should be persisted for future sessions, or when asked to forge/create/scaffold a new skill.

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

Install

$ agentstack add skill-thrillmade-agent-skills-skillforge

✓ 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-thrillmade-agent-skills-skillforge)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo 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 Skillforge? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

SkillForge

Create well-formed, spec-compliant skills from observed patterns.

When to Forge

Forge when:

  • You've done the same sequence 2-3 times in a session
  • A project convention isn't documented anywhere
  • You solved a hard problem with a reusable solution
  • Someone asks you to create a skill

Don't forge when:

  • It's a one-time task
  • An existing skill already covers it (update instead)
  • The "skill" is just a single command (use a script alias)

Steps

1. Name the pattern

  • What problem does this skill solve?
  • What triggers it? (be specific — the description field is the discovery surface)
  • What are the inputs and outputs?

2. Choose a name

  • kebab-case, 1-64 characters
  • Verb-led when possible: deploy-preview, scaffold-component, triage-bug
  • One responsibility per skill

3. Create the skill directory

mkdir -p .skills/

4. Write SKILL.md

Use this skeleton:

---
name: 
description: . Use when .
metadata:
  forged-by: 
  forged-from: 
  forged-reason: ""
---

# 

## Inputs
- ...

## Steps
1. ...
2. ...

## Conventions
- Project-specific patterns that apply

## Edge Cases
- Known gotchas or special handling

5. Add scripts (optional)

If the skill involves file generation or automation:

.skills//
├── SKILL.md
├── scripts/
│   └── run.sh         # Executable automation
└── references/
    └── conventions.md # Detailed reference (keeps SKILL.md lean)

6. Register the skill

Update .skills-registry.md at the project root (same level as .skills/). Create it if it doesn't exist:

|  | local |  | 1 |  |

If the project uses the machine-readable registry (.skills-registry.json), update it too — skdd forge handles both formats automatically.

Updating an Existing Skill

When you use a skill and encounter something it doesn't cover:

  1. Add the new edge case or step to the existing SKILL.md
  2. If the skill is getting too long (>200 lines), split it
  3. Update last-used and increment usage-count in the registry

Quality Checklist

Before committing a new skill:

  • [ ] name is kebab-case, ≤64 chars
  • [ ] description includes what it does AND when to use it
  • [ ] Steps are numbered and actionable
  • [ ] No hardcoded paths, secrets, or environment-specific values
  • [ ] SKILL.md is under 200 lines (move details to references/)
  • [ ] Registered in .skills-registry.md

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.