Save Skill

VerifiedSafe

Save action patterns and procedures from conversations as skills.

Sby Skills Guide Bot
DevelopmentBeginner
107/24/2026
Claude Code
#skill-saving#workflow-automation#claude-skills#command

Recommended for

Our review

Saves the actions and procedures from a conversation as a reusable skill in a Markdown file.

Strengths

  • Automates the creation of structured skill files
  • Captures steps, conditions, and error handling comprehensively
  • Generates a summary of the saved content automatically

Limitations

  • Only works with Claude Code's skill system
  • May accidentally include sensitive information if not reviewed
  • Duplicate detection is basic
When to use it

When you have manually performed a complex sequence of steps that you want to reuse later.

When not to use it

For very simple or one-off instructions that don't need to be persisted.

Security analysis

Safe
Quality score85/100

The skill only writes markdown files to a designated skills directory based on conversation analysis. No external commands or network access are used, and it explicitly warns against including secrets.

No concerns found

Examples

Save deployment workflow as skill
Save the steps I just used to deploy the app as a skill called 'deploy-app'

スキル保存コマンド

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

引数

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

処理フロー

1. スキル名の確認

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

2. 保存対象の特定

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

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

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

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

# {スキル名}スキル

{スキルの説明}

## 前提条件

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

## 実行手順

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

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

## 注意事項

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

## 使用例

{具体的な使用例}

4. 完了報告

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

出力形式

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

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

注意事項

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