스킬 command-creator
📦

command-creator

안전 ⚡ 스크립트 포함📁 파일 시스템 액세스🌐 네트워크 접근

建立斜杠命令

將重複性工作流程轉化為可重複使用的斜杠命令。此技能引導您設計、實作和測試最佳化的代理命令,這些命令可以在 Claude Code 對話中透過 /command-name 調用。

지원: Claude Codex Code(CC)
🥉 75 브론즈
1

스킬 ZIP 다운로드

2

Claude에서 업로드

설정 → 기능 → 스킬 → 스킬 업로드로 이동

3

토글을 켜고 사용 시작

테스트해 보기

"command-creator" 사용 중입니다. Create a command to iteratively fix CI failures

예상 결과:

I'll help you create a CI fixer command. This will be a project-level command using the Iterative Fixing pattern.

**Chosen Location:** `.claude/commands/` (project-level)
**Pattern:** Iterative Fixing (Run → Parse → Fix → Repeat)

Let me gather some details:
1. What test command should it run? (e.g., `pytest`, `npm test`)
2. What arguments, if any, should the command accept?
3. Are there specific files or patterns to focus on?

"command-creator" 사용 중입니다. Make a global command to review code with Codex

예상 결과:

Creating a global code review command using the Simple Execution pattern.

**Chosen Location:** `~/.claude/commands/` (global - available everywhere)
**Pattern:** Simple Execution (Run command with args)

**Generated Command:** `~/.claude/commands/codex-review.md`
```yaml
---
description: Review code files using Codex
argument-hint: <file-path>
---

# Codex Review

Review the specified file(s) using the codex skill...

보안 감사

안전
v1 • 1/26/2026

This is a documentation-only skill containing markdown guides and command examples. Static analyzer flagged 452 pattern matches but all are false positives: (1) markdown code examples flagged as 'external_commands', (2) Claude config path references flagged as 'hidden file access', (3) YAML frontmatter flagged as 'weak cryptographic algorithm', (4) git command documentation flagged as 'system reconnaissance'. The skill does not execute code, make network requests, or access files. All findings are documentation artifacts that pose no security risk.

5
스캔된 파일
2,400
분석된 줄 수
3
발견 사항
1
총 감사 수

위험 요인

⚡ 스크립트 포함
기록된 특정 위치가 없습니다
📁 파일 시스템 액세스
기록된 특정 위치가 없습니다
🌐 네트워크 접근
기록된 특정 위치가 없습니다
감사자: claude

품질 점수

59
아키텍처
100
유지보수성
87
콘텐츠
22
커뮤니티
100
보안
91
사양 준수

만들 수 있는 것

自動化重複性開發任務

為常見工作流程建立命令,如提交 PR 堆疊、修復 CI 失敗、執行程式碼審查或部署應用程式。將多步驟流程轉化為可自主執行的單一斜杠命令。

標準化團隊流程

建立專案特定的命令,以強制執行團隊標準、執行 linter、建立一致的 PR 說明或自動化發布程序。命令隨專案進行版本控制。

個人生產力提升

建立可在所有專案中使用的全域命令,用於清理 Git、程式碼庫分析、重構模式或規劃工作流程。隨處可用的個人生產力工具。

이 프롬프트를 사용해 보세요

基本命令請求
建立一個斜杠命令來 [描述您的工作流程]。我希望它能 [主要步驟]。
帶參數的命令
建立一個名為 [command-name] 的全域命令,它接受 [參數]。該命令應該 [目的]。使用此模式:[步驟]。
專案層級命令
為 [專案特定工作流程] 建立專案層級的斜杠命令。此命令應該 [詳細步驟]。它需要 [需求]。
命令改進
審查我在 [路徑] 的現有命令。它應該 [預期行為]。透過 [具體改進需求] 幫助我改進它。

모범 사례

  • 在命令中使用祈使句、動詞優先的語言:「執行測試」而非「你應該執行測試」
  • 定義明確的成功標準:「持續直到所有測試通過(結束代碼 0)」
  • 包含明確的錯誤處理:「如果 pytest 失敗,解析輸出以識別失敗的測試」

피하기

  • 避免需要解釋的模糊說明
  • 不要包含互動式提示 - 命令必須是自主的
  • 避免會破壞自動化的用戶確認循環

자주 묻는 질문

專案層級命令和全域命令有什麼區別?
專案層級命令(`.claude/commands/`)專屬於某個儲存庫並進行版本控制。全域命令(`~/.claude/commands/`)可在所有專案中使用,但僅限於您的本機。
我可以建立帶參數的命令嗎?
可以。對必要參數使用 `argument-hint: <required>`,對可選參數使用 `argument-hint: [optional]`。用戶可以透過 `/command-name value` 或 `/command-name` 調用。
有哪些可用的命令模式?
四種模式:工作流程自動化(分析 → 動作 → 報告)、疊代修復(執行 → 解析 → 修復 → 重複)、代理委派(上下文 → 委派 → 疊代)和簡單執行(執行帶參數的命令)。
如何測試新創建的命令?
直接在對話中調用:`/command-name [arguments]`。創建後技能會建議進行測試。根據回饋進行疊代。
我必須遵循什麼命名慣例?
命令必須使用 kebab-case:`submit-stack`,而非 `submit_stack`。檔案名稱必須與命令名稱完全匹配:`my-command.md` 調用為 `/my-command`。
建立命令後可以編輯嗎?
可以。可以直接打開 Markdown 檔案,或要求此技能審查和改進現有命令。命令是純 Markdown 檔案。

개발자 세부 정보

파일 구조