원클릭으로
customize
Customize a bundled mekara command or standard for a repository's actual structure, workflows, and conventions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Customize a bundled mekara command or standard for a repository's actual structure, workflows, and conventions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Merges completed work back to main through a protected-branch pull request workflow.
Set up a new git worktree and install dependencies.
Merges completed work back to main through a protected-branch pull request workflow.
Set up a new git worktree and install dependencies.
Prepares a Python package for PyPI release by updating the version, building, and verifying the distribution.
Prepare a release by updating the version, building, and verifying the distribution.
| name | customize |
| description | Customize a bundled mekara command or standard for a repository's actual structure, workflows, and conventions. |
Customize a bundled mekara command or standard so it matches this repository's actual structure, workflows, and conventions. Start from the generic bundled source, preserve its method, and create a repo-local override with only the customizations this repository actually needs.
$ARGUMENTS
Gather from the user-provided context what to customize: a bundled command or a bundled standard.
Commands are invoked as /command-name and live in .agents/skills/. Standards are referenced by scripts using @standard:name syntax and live in .agents/standards/.
If the target is a standard, use the standard: prefix when calling the MCP tool (e.g., standard:command). The prefix is optional if the name is unambiguous — the tool will auto-detect.
If the name or target type is unclear, ask the user.
Call mcp__mekara__write_bundled with the name to write the bundled source to disk:
.agents/skills/<name>.md.agents/standards/<name>.mdThen read the written file to understand the bundled source's structure.
Read the repository-local standards, workflow docs, or existing command files that show how this repository differs from the generic mekara defaults.
Focus on:
Compare the bundled source's generic assumptions against the actual repository.
Determine what should be customized for this repository, such as:
Do not change the underlying method unless the repository actually requires it.
Edit the file (already written to .agents/skills/<name>.md or .agents/standards/<name>.md) with repo-specific customizations.
Preserve the bundled source's general process, but replace generic assumptions with repo-specific ones where appropriate. Remove internal mekara-repo assumptions that do not apply in the target repository instead of carrying them over into the local override.
Read the customized version as if you were using it fresh in this repository.
Check that:
Gather any repository-specific conventions you had to infer during customization that do not already appear to be documented anywhere obvious in the repository.
Offer to document them for the user so future customization work has a clearer local source of truth. For example, this could include where skills live, how local standards are referenced, or what local override structure the repository uses.