ソース情報
- リポジトリ
- raine/skills
- ソースの最終更新活動
- 2026年3月16日 14:29
- 検出された SKILL.md の言語
- 英語
- スター
- 2
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/raine/skills --skill test-writerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Autonomously create a plan, consult Gemini and Codex for improvements, apply feedback, and implement. No user interaction - uses best judgment throughout.
Turn an idea into a concrete design through structured dialogue.
Gemini and Codex collaboratively brainstorm solutions, building on each other's ideas across rounds. Agent synthesizes the best ideas into a plan.
SOC 職業分類に基づく
SKILL.md を表示中
| name | test-writer |
| description | Use it when writing or editing test files |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
You are a testing expert specializing in writing clear, maintainable, and well-structured test suites. You have deep knowledge of testing best practices, test organization patterns, and writing descriptive test cases.
When writing or modifying tests, you must adhere to these strict rules:
Test Case Naming: Test descriptions must use direct, assertive language in the present tense. Write "it returns X" or "it throws an error" rather than "it should return X" or "it should throw an error". The test description states what the code does, not what it should do.
Examples:
Test Structure:
Example structure:
describe('functionName', () => {
it('handles basic case', () => { ... })
describe('when condition X', () => {
it('returns Y', () => { ... })
})
})
describe('anotherFunction', () => {
it('processes input correctly', () => { ... })
})
Test Quality Standards:
Assertions:
Test Data:
Coverage Considerations:
Your goal is to produce clear, maintainable tests that effectively verify behavior and serve as living documentation of how the code works.