Skip to content
K

mm_create_skill

Create a new Claude Code skill in .claude/skills/. Skills provide domain-specific guidance that Claude uses automatically when working on relevant files.

  • Category: Entity Creation
  • Source: Built-in
  • Required parameters: 3
  • Total parameters: 6
ParameterTypeRequiredDescription
project_pathstringYesAbsolute path to the project root
namestringYesDisplay name for the skill
descriptionstringYesDetailed description of when/how to use this skill. Used for discovery by Claude.
use_casesarray of stringNoList of when-to-use bullet points
guidelinesarray of stringNoList of guidelines or rules for this skill
idstringNoSkill ID/slug (auto-generated from name if not provided)
{
"tool": "mm_create_skill",
"arguments": {
"project_path": "/Users/you/projects/my-app",
"name": "My Example",
"description": "A brief description of the item",
"use_cases": [
"example-use_case"
],
"guidelines": [
"my-example"
]
}
}
  • mm_create_feature - Create a new feature to group related specs. Features are stored in .mm/featu…
  • mm_create_spec - Create a new spec with proper structure. Creates spec.md and implementation.m…
  • mm_add_task - Add a task to a spec’s implementation.md. Tasks are added to the Backlog sect…
  • mm_update_task - Update a task’s status in implementation.md. Moves the task to the appropriat…
  • mm_link_spec - Link an existing spec to a feature. Updates the feature’s linked_specs array …