Save Skill Command

VerifiedSafe

Save behavior patterns and procedures from conversations as skills. Analyzes conversation history and creates a skill file in .claude/skills/.

Sby Skills Guide Bot
ProductivityIntermediate
107/28/2026
Claude Code
#skill-management#workflow-automation#pattern-capture#development

Recommended for

Our review

Saves conversation-derived action patterns and procedures as a reusable skill file.

Strengths

  • Automates capture of complex workflows into structured files
  • Generates clear, ready-to-use documentation
  • Promotes reuse and sharing of best practices

Limitations

  • Requires a conversation rich in examples for relevant extraction
  • May inadvertently include sensitive information if not reviewed
  • Quality depends on clarity of previous exchanges
When to use it

When you have executed a successful sequence of steps you want to reuse or document.

When not to use it

For one-off tasks or when the procedure changes frequently.

Security analysis

Safe
Quality score80/100

This skill is a meta-documentation generator that creates skill files from conversation patterns. It does not execute any harmful commands or operations, and includes a caution to avoid including secrets. No immediate security concerns.

No concerns found

Examples

Save a deployment workflow
Save the steps we just used to deploy the app as a skill called 'deploy-app'.
Create a code review skill
I've been doing code reviews with a consistent checklist. Save that pattern as a skill named 'code-review'.

スキル保存コマンド

会話中の行動パターンや手順をスキルとして保存します。

引数

  • $ARGUMENTS: スキル名(必須)

処理フロー

1. スキル名の確認

引数からスキル名を取得します。引数がない場合はユーザーに確認します。

2. 保存対象の特定

会話履歴から以下を分析:

  • 実行した手順・コマンド
  • 使用したツールとパターン
  • 判断基準・条件分岐
  • 注意事項・エラーハンドリング

3. スキルファイルの作成

.claude/skills/{スキル名}.md に以下の形式で保存:

# {スキル名}スキル

{スキルの説明}

## 前提条件

- {必要な環境・ツール}

## 実行手順

### 1. {ステップ1}
{詳細説明}

### 2. {ステップ2}
{詳細説明}

## 注意事項

- {注意点1}
- {注意点2}

## 使用例

{具体的な使用例}

4. 完了報告

作成したスキルファイルのパスと内容サマリを報告。

出力形式

スキル「{スキル名}」を保存しました。
  ファイル: .claude/skills/{スキル名}.md

  内容サマリ:
  - {手順1の概要}
  - {手順2の概要}
  ...

注意事項

  • 既存のスキルと重複がないか確認
  • 機密情報(トークン、パスワード等)は含めない
  • 汎用的に使えるよう、具体的な値は変数化
  • 日本語でドキュメント作成
Related skills