AgentStack
SKILL verified MIT Self-run

Skill Creator

skill-ericwang915-pythonclaw-skill-creator · by ericwang915

>

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

Install

$ agentstack add skill-ericwang915-pythonclaw-skill-creator

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

Are you the author of Skill Creator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill Creator

When to Use

  • [ ] The user asks for something no installed skill covers
  • [ ] An existing skill is too limited and needs a better replacement
  • [ ] A recurring task would benefit from a dedicated, reusable skill

When NOT to Use

  • [ ] One-off tasks that existing tools can handle (e.g., run_command for shell)
  • [ ] Skills too specific to be reused — generalize first
  • [ ] Don't hardcode user-specific values (names, URLs, topics) — use parameters

Setup

Uses the create_skill tool. No API keys or external setup required.

Usage/Commands

  1. Analyze the gap: identify what capability is missing
  2. Plan the skill: name, category, scripts, pip dependencies
  3. Call create_skill with:
  • name — short, snake_case (e.g., pdf_summarizer)
  • description — one-line summary
  • instructions — full Markdown body
  • category — e.g., data, dev, web, automation
  • resources — dict mapping filenames to source code
  • dependencies — list of pip packages
  1. Activate: use_skill(skill_name="")
  2. Run it: follow the loaded instructions

Design Principles

  • Generic over specific — parameterize everything; avoid hardcoded topics/recipients
  • Single responsibility — one skill, one purpose
  • Parameterized — use CLI args, not hardcoded values
  • Config-driven credentials — read from pythonclaw.json under skills.
  • Minimal dependencies — only add pip packages when truly needed
  • Reusable — ask: "Would this help someone with a different task?"

SKILL.md Body Template

## Instructions

### Prerequisites

### Usage
1. 
2. Call: `python context/skills///.py `
3. 

### Examples
**Example:** 

## Resources
| File | Description |
|------|-------------|
| script.py |  |

Notes

  • Design for reuse: generalize queries, recipients, URLs
  • Write production-quality Python with error handling and docstrings
  • After creation, call use_skill to load the new instructions before running

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.