— 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
✓ PassedNo 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 claimAbout
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_commandfor 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
- Analyze the gap: identify what capability is missing
- Plan the skill: name, category, scripts, pip dependencies
- Call
create_skillwith:
name— short, snake_case (e.g.,pdf_summarizer)description— one-line summaryinstructions— full Markdown bodycategory— e.g.,data,dev,web,automationresources— dict mapping filenames to source codedependencies— list of pip packages
- Activate:
use_skill(skill_name="") - 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.jsonunderskills. - 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_skillto 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.
- Author: ericwang915
- Source: ericwang915/PythonClaw
- License: MIT
- Homepage: https://github.com/ericwang915/PythonClaw
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.