Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

HysSkills

يحتوي HysSkills على 22 من skills المجمعة من SilentUniverse، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
22
Stars
2
محدث
2026-07-13
Forks
0
التغطية المهنية
5 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

improve-codebase-architecture
مطوّرو البرمجيات

Find deepening opportunities in a codebase, informed by the domain language in CONTEXT.md and the decisions in docs/adr/.

2026-07-13
tdd
مطوّرو البرمجيات

Test-driven development with red-green-refactor loop. Four invocation forms — `/tdd <issue-path>` runs one issue (mode chosen by frontmatter `status:`); bare `/tdd` drains every ready-for-agent issue serially in dependency order; `/tdd <feat>` drains just that feature; a natural-language ask without an issue falls back to interview-driven flow. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.

2026-07-13
code-review
محللو ضمان جودة البرمجيات والمختبرون

Two-axis review of the diff since a fixed point (commit, branch, tag, merge-base) — Standards (house coding standards + a Fowler code-smell baseline) and Spec (does the diff faithfully implement the originating issue / PRD?). Runs the two axes as parallel sub-agents so neither pollutes the other, then reports them side by side. Use when the user wants to review a branch / PR / work-in-progress, asks to "review since X", or when an orchestrator (e.g. /ship) needs a pre-merge gate.

2026-07-11
resolving-merge-conflicts
مطوّرو البرمجيات

Resolve an in-progress git merge or rebase conflict by understanding each side's original intent, then preserving both where possible. Use when a merge/rebase is mid-conflict, when the user asks to resolve conflicts, or after a /ship merge-back was aborted and they want to finish the merge by hand.

2026-07-11
ship
المهن الحاسوبية الأخرى

Orchestrate a feature's ready-for-agent issues to completion. Reads the dependency DAG from frontmatter, topologically sorts, dispatches independent issues to subagents running /tdd (same-module work serialized, cross-module parallelized), enforces a build+test verification gate before each commit, and collects ready-for-human issues into a hands-on checklist.

2026-07-11
to-issues
مطوّرو البرمجيات

Break a plan, spec, or PRD into independently-grabbable issues using vertical slices. For a change that touches existing code, first runs an impact-detection pass (blast radius + regression risk) before slicing. When a PRD is re-run after revision, produces a reconciliation report against existing issues (kept / redo / edit / delete / new).

2026-07-11
to-prd
مطوّرو البرمجيات

Turn the current conversation context into a PRD and write it under .scratch/<feat>/. Detects existing related PRDs first; if found, defaults to writing a superseding PRD-vN.md rather than editing the old one.

2026-07-11
write-a-skill
المهن الحاسوبية الأخرى

Create new agent skills with proper structure, progressive disclosure, and bundled resources.

2026-07-11
grilling
متخصصو إدارة المشاريع

Interview the user relentlessly about a plan or design. Use when the user wants to stress-test a plan before building, or uses any 'grill' trigger phrases.

2026-07-06
diagnose
محللو ضمان جودة البرمجيات والمختبرون

Disciplined diagnosis loop for hard bugs and performance regressions. Build a feedback loop → reproduce → minimise → hypothesise → instrument → fix → regression-test. Use when user says "diagnose this" / "debug this", reports a bug, says something is broken/throwing/failing, or describes a performance regression.

2026-06-26
hys-setup
المهن الحاسوبية الأخرى

Sets up an `## Agent skills` block in AGENTS.md/CLAUDE.md and `docs/agents/` so the engineering skills know this repo's issue tracker (local markdown by default), state vocabulary, and domain doc layout. Run before first use of `to-issues`, `to-prd`, `tdd`, `diagnose`, `improve-codebase-architecture`, or `zoom-out` — or if those skills appear to be missing context about the issue tracker, states, or domain docs.

2026-06-26
zoom-out
مطوّرو البرمجيات

Tell the agent to zoom out and give broader context or a higher-level perspective. Use when you're unfamiliar with a section of code or need to understand how it fits into the bigger picture. Can optionally persist the structural map to CODEBASE.md so future sessions don't re-explore.

2026-06-26
handoff
المهن الحاسوبية الأخرى

Compact the current conversation into a handoff document for another agent to pick up. Use before /clear, when context is nearly full, or to checkpoint a long multi-session task.

2026-06-26
codebase-design
مطوّرو البرمجيات

Shared vocabulary for designing deep modules. Use when the user wants to design or improve a module's interface, find deepening opportunities, decide where a seam goes, make code more testable or AI-navigable, or when another skill needs the deep-module vocabulary.

2026-06-25
tidy
مطوّرو البرمجيات

Garbage-collect a feature's issue directory — archive done issues, regenerate SUMMARY.md from completion records, audit for zombie/duplicate tests, and flag orphan issues with no PRD or refines link. Use when a feature's done issues pile up (≈8+), when the working set feels cluttered, or after a redo to clean up superseded tests.

2026-06-25
resume
مطوّرو البرمجيات

Resume work from the most recent handoff. Finds the active handoff under .scratch/ by frontmatter, verifies the git baseline still matches, then executes its 开机动作序列. Use at the start of a new session to continue a multi-session task without hunting for the handoff file.

2026-06-25
domain-modeling
مطوّرو البرمجيات

Build and sharpen a project's domain model. Use when the user wants to pin down domain terminology or a ubiquitous language, record an architectural decision, or when another skill needs to maintain the domain model.

2026-06-20
grill-with-docs
مطوّرو البرمجيات

A relentless interview to sharpen a plan or design that also keeps the domain model current — writing CONTEXT.md glossary terms and ADRs inline as decisions crystallise.

2026-06-20
grill-me
مطوّرو البرمجيات

A relentless interview to sharpen a plan or design before building.

2026-06-20
migrate-to-shoehorn
مطوّرو البرمجيات

Migrate test files from `as` type assertions to @total-typescript/shoehorn. Use when user mentions shoehorn, wants to replace `as` in tests, or needs partial test data.

2026-06-17
git-guardrails-claude-code
مطوّرو البرمجيات

Set up Claude Code hooks to block dangerous git commands (push, reset --hard, clean, branch -D, etc.) before they execute. Use when user wants to prevent destructive git operations, add git safety hooks, or block git push/reset in Claude Code.

2026-06-11
caveman
الكتّاب التقنيون

Compressed Chinese output mode. Cuts ~70% token usage by dropping filler, pleasantries, and hedging while keeping full technical accuracy. Use when user says "极简模式" / "caveman" / "精简点" / "少废话" / "be brief" / "less tokens", or invokes /caveman.

2026-06-11