ソース情報
- リポジトリ
- Olshansk/agent-skills
- ソースの最終更新活動
- 2026年4月2日 21:27
- 検出された SKILL.md の言語
- 英語
- スター
- 8
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Olshansk/agent-skills --skill cmd-latest-msgコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Review a repository's Makefile foundation and propose approval-gated improvements to its helpers, templates, tests, and documentation. Use when iterating on Makefile conventions or the cmd-makefile skill itself.
Create or improve Makefiles with minimal complexity. Templates available: base, python-uv, python-fastapi, postgres, nodejs, go, chrome-extension, flutter, electron, static-site.
Proofread posts before publishing for spelling, grammar, syntax, punctuation, word usage, repetition, logic, weak arguments, clarity, structure, broken links, and image/text consistency. Use this whenever a user asks to proofread, edit, review, or improve a post, essay, article, or other publishable writing, even if they only mention grammar or typos.
SOC 職業分類に基づく
SKILL.md を表示中
| name | cmd-latest-msg |
| description | Store or retrieve the latest agent message to /tmp/agents/{agent}/ |
| disable-model-invocation | false |
Persist the last agent message to disk for cross-agent visibility.
Parse the user's input after /cmd-latest-msg.
help (or no argument) — print usage and stop:
Usage:
/cmd-latest-msg save — save your last message
/cmd-latest-msg use — read latest from the current agent
/cmd-latest-msg use <agent> — read latest from claude|codex|gemini
/cmd-latest-msg help — show this usage
save — save the last assistant message:
a. Determine which agent you are from runtime context:
claudecodexgeminicodexb. Create the output directory:
mkdir -p /tmp/agents/<agent>
c. Capture your last assistant message — the response you gave immediately before the user invoked this skill.
d. Write it to two files using the Write tool:
/tmp/agents/<agent>/latest.md — always overwrite/tmp/agents/<agent>/<unix_timestamp>.md — timestamped copy (use date +%s to get the timestamp)e. Confirm with:
Stored to:
/tmp/agents/<agent>/latest.md
/tmp/agents/<agent>/<timestamp>.md
use — display the latest message for the current agent:
a. Infer the current agent using the same runtime-context rules as save.
b. Read and display /tmp/agents/<agent>/latest.md.
c. If the file doesn't exist, say: No messages found for <agent>.
use <agent> — display another agent's latest message:
a. Validate <agent> is one of: claude, codex, gemini.
b. Read and display /tmp/agents/<agent>/latest.md.
c. If the file doesn't exist, say: No messages found for <agent>.