con un clic
skill-creator
Create new skills by writing SKILL.md files and optional scripts
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Create new skills by writing SKILL.md files and optional scripts
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
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)