Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

pixsaur

pixsaur 收录了来自 IIIvan37 的 8 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
8
Stars
7
更新
2026-07-05
Forks
0
职业覆盖
2 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

new-feature-hexa
软件开发工程师

Build a NEW vertical slice (use-case + ports + pure core) OUTSIDE-IN — start from the consumer's need (a use-case / acceptance test), let it pull the domain into existence, then wire the adapter. Use when adding a genuinely new feature capability. For carving an EXISTING component/atom into a use-case, use extract-use-case instead.

2026-07-05
quality-gate
软件质量保证分析师与测试员

Run the pixsaur quality guardrails (typecheck + comprehensive typecheck + biome & custom guards + tests with coverage + knip dead-code + jscpd duplication + Stryker on the pure core) and report. Use before declaring any change done, before a commit, or before opening a PR. Unlike a greenfield gate, pixsaur is a mature codebase mid-refactor — some detectors are ratcheted (report-only baseline), not zero-tolerance. Know which is which before you act.

2026-07-05
react-doctor
软件质量保证分析师与测试员

Use when finishing a feature, fixing a bug, before committing React code, or when the user types `/doctor`, asks to scan, triage, or clean up React diagnostics. Covers lint, accessibility, bundle size, architecture. Includes a regression check and a full local-triage workflow that fetches the canonical playbook.

2026-07-05
react-testing-patterns
软件质量保证分析师与测试员

React component and hook testing idiom for pixsaur (Testing Library + Vitest + happy-dom). Use when writing or reviewing any *.spec.tsx — component rendering, user interaction, async assertions, renderHook. Complements tdd-cycle (which owns red-green-refactor); this skill owns HOW the React tests are written in this repo.

2026-07-05
session-report
软件开发工程师

Close a refactor step with a resumable session report. Use at the end of every step/PR of the clean-archi refactor so a fresh session can pick up exactly where this one left off. Updates the canonical docs/refactor/STATUS.md and appends a dated report under docs/refactor/sessions/.

2026-07-05
tdd-cycle
软件质量保证分析师与测试员

Drive a change through strict red-green-refactor TDD. Use for ANY change to the pure core (src/libs/** and src/domain/**) or any pure logic — write the failing test first, the minimal code to pass, then refactor under green. Enforces one-assertion-per-test and triangulation.

2026-07-05
extract-use-case
软件开发工程师

Strangler-fig recipe to extract business orchestration out of a React component or Jotai atom into a pure, testable use-case with light ports. Use when refactoring a feature toward the use-cases + ports architecture (see docs in src/<feature>/application/README.md). Forces reuse of existing ports and deletion of the old code path — no parallel duplicates.

2026-06-13
refactor-preflight
软件开发工程师

Run the refactor guardrails (typecheck + knip dead-code + jscpd duplication) and report before opening a refactor PR. Use after extracting a use-case or before pushing any strangler-fig refactor branch, to confirm no dead code lingers and no copy-paste was introduced.

2026-06-13