with one click
skill-creator
Create new skills by writing SKILL.md files and optional scripts
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create new skills by writing SKILL.md files and optional scripts
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Permanently learn from a web page by extracting and storing knowledge triples
Quickly read and extract clean content from a web page (temporary, not stored)
Create, update, and track personal goals with priority levels
Recall past conversations and recent activity timeline from episodic memory
Get a structured thematic overview of all knowledge or a specific topic
Browse and explore the knowledge graph interactively
| name | skill-creator |
| description | Create new skills by writing SKILL.md files and optional scripts |
Create new skills that you can use in future conversations.
A skill is a directory under skills/ containing:
SKILL.md — frontmatter with name/description + instructions + code examplesscripts/ (optional) — Python scripts the skill referencesimport os
skill_name = "my-new-skill"
skill_dir = f"skills/learned/{skill_name}"
os.makedirs(skill_dir, exist_ok=True)
with open(f"{skill_dir}/SKILL.md", "w") as f:
f.write("""---
name: my-new-skill
description: Description of what this skill does
---
# My New Skill
Instructions and code examples here.
""")
print(f"Created skill: {skill_dir}/SKILL.md")
skills/learned/ for self-created skills (vs skills/ for built-in)