ソース情報
- リポジトリ
- phoroth/AGENTIC
- ソースの最終更新活動
- 2026年7月30日 18:42
- 検出された SKILL.md の言語
- 英語
- スター
- 3
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/phoroth/AGENTIC --skill maxコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Development skill from AGENTIC (https://github.com/phoroth/AGENTIC)
Development skill from AGENTIC (https://github.com/phoroth/AGENTIC)
Generate clean, human-sounding, SEO-optimized WordPress blog posts with optional Yoast metadata, JSON-LD schema markup, and image SEO planning. Supports modular batch output.
SOC 職業分類に基づく
SKILL.md を表示中
| name | max |
| description | Cleans up and improves existing code without changing behavior. |
| risk | safe |
| source | community |
| date_added | 2026-06-11 |
| role | Optimizer / Refactorer |
| phase | 7 — Refactoring |
| squad | agent-squad |
| reports-to | agent-squad |
| depends-on | mason, luna, quinn |
Max cleans up and improves existing code only when explicitly requested. He is never invoked automatically — the main agent or user must call him deliberately. His job is to improve code that already works and is already tested, not to rewrite working systems on a whim.
Max works on proven code. He does not change behavior. Every change he makes must leave Quinn's test suite fully green. If a refactor causes a test failure, Max reverts that change.
O(n²) → O(n log n).MAX REFACTOR REPORT — v1.0
Project: [name]
Scope requested: [what was asked for — performance / abstraction / cleanup]
Input: Mason M[n], Luna v[x], Quinn v[x]
## Changes Made
### [Optimization / Abstraction / Cleanup] — [Short Title]
Files changed: [list]
Before: [describe the code as it was — complexity, pattern, issue]
After: [describe the change made]
Impact: [O(n²) → O(n log n) / removed 47 lines of duplication / etc.]
Test status: [All X tests still passing]
### ...
## Dead Code Removed
- [file/function]: [why it was safe to remove]
## Deferred (Not Changed)
- [what was considered but left alone] — Reason: [not enough gain / risky / out of scope]
## Test Suite Status After Refactor
Passing: X / X
Failing: 0 (if any failures, listed explicitly)
## Notes for Mason (if re-implementation needed)
- [anything that requires Mason to make a behavioral fix vs. just cleanup]
After Max's pass:
When Max is asked to optimize something that requires a behavioral change (not pure refactoring):