Skip to content

Commit 8ff38ad

Browse files
masseaterclaude
andcommitted
refactor(mutils): rename setup commands for consistency
- setup-mutils.md → setup.md - setup-project.md → init-project.md - Update references in README.md and check-context-version.ts - Bump version to 0.6.6 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 405455a commit 8ff38ad

6 files changed

Lines changed: 10 additions & 12 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"name": "mutils",
99
"source": "./plugins/mutils",
1010
"description": "masseater's utils",
11-
"version": "0.6.5"
11+
"version": "0.6.6"
1212
},
1313
{
1414
"name": "sdd",

plugins/mutils/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/plugin install mutils
1010
```
1111

12-
初回インストール後は `/mutils:setup-mutils` でセットアップを実行してください。
12+
初回インストール後は `/mutils:setup` でセットアップを実行してください。
1313

1414
---
1515

@@ -43,8 +43,8 @@
4343
| `/mutils:recommended` | おすすめの設定・プラグイン・MCPサーバーを紹介 |
4444
| `/mutils:refactor-context-file <ファイルパス>` | コンテキストファイルをClaude Code機能に分解 |
4545
| `/mutils:self-review [ファイルパス]` | 成果物に対してセルフレビューを実施 |
46-
| `/mutils:setup-mutils` | 初回セットアップ |
47-
| `/mutils:setup-project` | techstackに合わせてプロジェクトをセットアップ |
46+
| `/mutils:setup` | 初回セットアップ |
47+
| `/mutils:init-project` | techstackに合わせてプロジェクトをセットアップ |
4848
| `/mutils:update-markdown <ファイルパス>` | Markdownファイルのセクション別レビュー・更新 |
4949

5050
---

plugins/mutils/assets/AGENTS.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,16 @@ DONT USE `any`. NEVER USE `any`.
4444

4545
Readツールを使用する時は必ずファイルの全行を読み込むこと。
4646

47-
全てのmcpサーバーをmodular-mcpにまとめています。積極的に使用すること。
48-
mcp**modular-mcp**get-modular-tools でさまざまな MCP ツールを取得できます。
49-
取得したツールは mcp**modular-mcp**call-modular-tools で使用できます。
50-
5147
スクリプトを作成する時は Bun で実行可能な TypeScript ファイルとして作成し、シェバンを設定して単体で実行可能にすること。
5248

5349
NG: bun run hoge.ts
5450
OK: ./hoge.ts
5551

5652
Your context window will be automatically compacted as it approaches its limit, allowing you to continue working indefinitely from where you left off. Therefore, do not stop tasks early due to token budget concerns. As you approach your token budget limit, save your current progress and state to memory before the context window refreshes. Always be as persistent and autonomous as possible and complete tasks fully, even if the end of your budget is approaching. Never artificially stop any task early regardless of the context remaining.
5753

54+
- 括弧書きで補足説明をつけない
55+
- 無駄に \*\* で強調しない
56+
5857
## typescript development
5958

6059
- interface ではなく type を使用すること。既存のライブラリの型を拡張した時など、明確な理由がある時のみ interface を使用して良い。interface を使用する時は必ずコメントに残すこと。
@@ -103,16 +102,14 @@ global .gitignore に追加しているのでコミットされない。無理
103102
## markdown のフォーマット
104103

105104
- 無駄に表にしない
106-
- 無駄に \*\* で強調しない
107105
- 見出しに数字をつけない
108-
- 括弧書きで補足説明をつけない
109106

110107
## mutils's skills
111108

112109
- cc-hooks-ts: TypeScriptで型安全なClaude Code Hooksを作成する時に使用
113110
- claude-code-features: Commands/Skills/Agents/Hooks/Rulesの違いと使い分け基準
114111
- progress-files: 過去のセッションの進捗ファイルを参照して作業コンテキストを継続する時に使用
115-
- semtools: 自然言語でファイルの中身をセマンティック検索したい時に使用
112+
- semtools: 自然言語でファイルの中身をセマンティック検索したい時に使用。非常に高速なのでローカルを検索する際には積極的に使用すること。
116113

117114
## Fundamental Principles (Absolute Rules)
118115

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ mutilsプラグインの推奨設定をユーザー環境に適用します。
2626

2727
- Bun がインストールされているか確認する。
2828
- `suggest-knowledge-file.ts` フックが生成する `*.mutils_knowledge.md` ファイルがglobalのgitignoreに入っているか確認する。入っていなかったらユーザーの許可を得た上で追記すること。
29+
- `~/.gitignore` が必ず global ignore になるわけではない。必ず `git config --global core.excludesfile` を行い、実際のファイルを特定すること。
2930

3031
### 完了報告
3132

plugins/mutils/hooks/check-context-version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const hook = defineHook({
105105
The following files reference an old mutils version:
106106
${outdated.join("\n")}
107107
108-
Run \`/mutils:setup-mutils\` to update the references.`;
108+
Run \`/mutils:setup\` to update the references.`;
109109

110110
logger.info(`Returning outdated warning message`);
111111
return context.json({

0 commit comments

Comments
 (0)