一键导入
using-hyper
Use when starting any conversation - establishes mandatory workflows for finding and using skills
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when starting any conversation - establishes mandatory workflows for finding and using skills
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use to audit test quality with Google Fellow SRE scrutiny - identifies tautological tests, coverage gaming, weak assertions, missing corner cases. Creates bd epic with tasks for improvements, then runs SRE task refinement on each.
Use when creating or developing anything, before writing code - refines rough ideas into bd epics with immutable requirements
Use when creating Claude Code hooks - covers hook patterns, composition, testing, progressive enhancement from simple to advanced
Use when encountering bugs or test failures - systematic debugging using debuggers, internet research, and agents to find root cause before fixing
Use when facing 3+ independent failures that can be investigated without shared state or dependencies - dispatches multiple agents to investigate and fix independent problems concurrently
Execute entire bd epic autonomously via subagent-per-task dispatch loop. Setup, dispatch subagent per task, end-of-epic review, branch completion.
| name | using-hyper |
| description | Use when starting any conversation - establishes mandatory workflows for finding and using skills |
<kimi_compat> This skill was ported to Kimi Code CLI. In Kimi:
/skill:name or let the model invoke them automatically.SetTodoList tool.Agent tool.Agent calls with run_in_background=true.IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.
This is not negotiable. This is not optional. You cannot rationalize your way out of this. </EXTREMELY_IMPORTANT>
<skill_overview> Skills are proven workflows; if one exists for your task, using it is mandatory, not optional. </skill_overview>
<rigidity_level> HIGH FREEDOM - The meta-process (check for skills, read the skill file, announce usage) is rigid, but each individual skill defines its own rigidity level. </rigidity_level>
<quick_reference> Before responding to ANY user message:
SKILL.md file from diskSkill has checklist? Create a checklist section in your response and track each item.
Finding a relevant skill = mandatory to use it. </quick_reference>
<when_to_use> This skill applies at the start of EVERY conversation and BEFORE every task:
Applies to: Literally any task that might have a corresponding skill. </when_to_use>
<the_process>
Before responding to ANY user message, complete this checklist:
SKILL.md file from diskResponding WITHOUT completing this checklist = automatic failure.
Always read the skill file from disk. Never rely on memory.
Example path:
.kimi-code/skills/test-driven-development/SKILL.md
If the repo doesn't have .kimi-code/skills, check user-level skills:
~/.kimi-code/skills/test-driven-development/SKILL.md
Why:
Before using a skill, announce it:
Format: "I'm using [Skill Name] to [what you're doing]."
Examples:
Why: Transparency helps user understand your process and catch errors early. Confirms you actually read the skill.
Before writing ANY code:
When implementing:
When debugging:
User instructions describe WHAT to do, not HOW. "Add X" means use brainstorming, TDD, verification. Not permission to skip workflows.
If a skill has a checklist, YOU MUST create a checklist section in your response for EACH item.
Don't:
Why: Checklists without explicit tracking = steps get skipped. Every time. The overhead is tiny compared to missing steps.
Example:
Skill has verification checklist:
- [ ] All tests pass
- [ ] No linter warnings
- [ ] bd task updated
Checklist items:
1. Run all tests and verify they pass
2. Run linter and verify no warnings
3. Update bd task with completion status
</the_process>
User asks to implement a new feature
User: "Add a user profile page with avatar upload"
Claude (without using-hyper):
"Sure! Let me start implementing the user profile page..."
[Starts writing code immediately without brainstorming or planning]
<why_it_fails>
Claude: "I'm using /skill:brainstorming to refine your requirements into a complete design."
[Read .kimi-code/skills/brainstorming/SKILL.md]
[Asks Socratic questions about avatar size limits, formats, storage, etc.]
[Creates refined requirements]
Claude: "Now I'm using /skill:writing-plans to create a detailed implementation plan."
[Read .kimi-code/skills/writing-plans/SKILL.md]
[Creates bd epic with tasks]
Claude: "Now I'm using /skill:executing-plans to implement the tasks iteratively."
[Read .kimi-code/skills/executing-plans/SKILL.md]
[Implements with TDD, commits incrementally]
What you gain:
User: "Users can't log in after password reset"
Claude (without using-hyper):
"Let me check the password reset code... I found the issue, it's not updating the password hash. Let me fix that..."
[Makes immediate fix without investigation]
<why_it_fails>
Claude: "I'm using /skill:debugging-with-tools to investigate this systematically."
[Read .kimi-code/skills/debugging-with-tools/SKILL.md]
[Uses debugger, checks logs, searches internet for known issues]
[Identifies root cause: token invalidation timing issue]
Claude: "Now I'm using /skill:fixing-bugs to implement a complete fix."
[Read .kimi-code/skills/fixing-bugs/SKILL.md]
[Creates bd bug issue]
[Writes failing test reproducing bug (RED)]
[Implements minimal fix (GREEN)]
[Runs full test suite via test-runner agent]
[Verifies fix and closes bd issue]
What you gain:
User: "This validation logic is duplicated, can you extract it?"
Claude (without using-hyper):
"Sure, let me extract that into a shared function..."
[Changes 5 files at once, then runs tests]
[Tests fail]
"Hmm, let me fix these test failures..."
<why_it_fails>
Claude: "I'm using /skill:refactoring-safely to extract this validation logic incrementally."
[Read .kimi-code/skills/refactoring-safely/SKILL.md]
Step 1: Verify tests pass BEFORE refactoring Step 2: Create bd refactoring task Step 3: Extract validation from first file → test → commit Step 4: Extract validation from second file → test → commit Step 5: Create shared validator → test → commit Step 6: Final verification → close bd task
What you gain:
<critical_rules>
All of these mean: STOP. Check for and use the relevant skill.
<understanding_rigidity>
These have LOW FREEDOM - follow the exact process:
These have HIGH FREEDOM - adapt core principles to context:
The skill itself tells you its rigidity level. Check <rigidity_level> section.
</understanding_rigidity>
<instructions_vs_workflows>
User says: "Add user authentication" This means: Use brainstorming → writing-plans → executing-plans → TDD → verification
User says: "Fix this bug" This means: Use debugging-with-tools → fixing-bugs → TDD → verification
User says: "Refactor this code" This means: Use refactoring-safely (change→test→commit cycle)
User instructions are the GOAL, not permission to skip workflows.
Red flags that you're rationalizing:
Why workflows matter MORE when instructions are specific:
<verification_checklist> Before completing ANY task:
Can't check all boxes? You skipped critical steps. Review and fix. </verification_checklist>
**This skill calls:** - ALL other skills (meta-skill that triggers appropriate skill usage)This skill is called by:
Critical workflows this establishes:
When unsure if skill applies: