mergegate/.miyabi
Shunsuke Hayashi 5222abdef8 feat: Add agent specifications for autonomous tasks
- code-reviewer: Code quality and security review
- bug-fixer: Bug diagnosis and fixing
- docs-generator: Documentation generation
- refactorer: Code improvement and restructuring
- test-writer: Comprehensive test creation

Each spec includes system prompts, tool permissions, and triggers.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 23:19:43 +09:00
..
agents/specs feat: Add agent specifications for autonomous tasks 2025-11-22 23:19:43 +09:00
prompts docs: Add project documentation and Miyabi config 2025-11-22 22:23:43 +09:00
templates docs: Add project documentation and Miyabi config 2025-11-22 22:23:43 +09:00
config.toml docs: Add project documentation and Miyabi config 2025-11-22 22:23:43 +09:00
README.md docs: Add project documentation and Miyabi config 2025-11-22 22:23:43 +09:00

.miyabi Directory

Miyabi CLI設定ディレクトリ

構造

.miyabi/
├── agents/
│   └── specs/          # Agent仕様定義
├── commands/           # カスタムコマンド
├── prompts/            # 再利用可能プロンプト
├── templates/          # テンプレート
├── sessions/           # 保存されたセッション
└── config.toml         # 設定ファイル

設定ファイル

config.toml で設定をカスタマイズ:

[api]
model = "claude-sonnet-4-20250514"
max_tokens = 8192

[ui]
theme = "tokyo-night"
vim_mode = false

[session]
auto_save = true

[tools]
enable_bash = true

カスタムコマンド

commands/ 配下に *.md ファイルを作成してカスタムコマンドを定義。

セッション管理

# セッション一覧
miyabi sessions

# Markdownエクスポート
miyabi sessions -m <session-id>

# 削除
miyabi sessions -d <session-id>

使い方

# TUI起動
miyabi

# バージョン情報
miyabi version

# ヘルプ
miyabi --help