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

svelte-rs-2

svelte-rs-2 收录了来自 MrWaip 的 13 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

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

这个仓库中的 skills

add-test
软件质量保证分析师与测试员

Use whenever adding an e2e compiler-output test (our JS vs the reference compiler) — a new cluster case under `tasks/compiler_tests/`.

2026-07-06
dig-better
软件质量保证分析师与测试员

🧩 PARITY · Turn one divergence from the Original into a test per affected case (does not fix).

2026-07-06
required
软件开发工程师

Use when starting any compiler task or session before touching parser/analyze/transform/ast/codegen/css/diagnostics code, before proposing a design or writing code, and when the task grows into a new layer and you need its PRD invariants.

2026-07-06
verdict-directed
软件开发工程师

🔪 SDT · verdict-directed review of backend codegen/transform. Use when auditing codegen/transform for smart-analyzer / dumb-codegen violations, or when porting a transform/codegen visitor from the Original.

2026-07-06
write-unit-test
软件质量保证分析师与测试员

The required unit-test format for `crates/**/src/**` — use when writing or reviewing a Rust `#[test]`, a test helper, or an `assert_*`. Not for `tasks/compiler_tests/` (use add-test) or `tasks/diagnostic_tests/` (use add-diagnostic-test).

2026-07-06
writing-docs
软件开发工程师

PRD editorial standard for docs/. Use when writing a new PRD, extending one, or reviewing changes under docs/ — and when another skill needs the PRD rules.

2026-07-06
add-diagnostic-test
软件质量保证分析师与测试员

Create a new diagnostic parity test case. Use when the user asks to add a diagnostic test, create a new `tasks/diagnostic_tests/cases/<name>` case, or capture a false positive/false negative against npm `svelte/compiler` before implementation.

2026-07-05
dump-ast
软件开发工程师

Parse JS code through OXC and display ESTree JSON AST. Use proactively when implementing codegen, transforms, or debugging to understand how OXC represents a specific JS/TS construct in its AST. MUST use this skill before writing any new AST node construction in builder.rs, before implementing a new codegen visitor, or when unsure how OXC represents a JS pattern (destructuring, spread, optional chaining, etc.). Also use when debugging AST mismatch issues or when porting a new Svelte feature that involves JS expression handling.

2026-07-05
profile
软件开发工程师

Compiler profiling and hotspot analysis.

2026-07-05
rust-style
软件开发工程师

Rust style rules for any .rs change.

2026-07-05
update-svelte
软件开发工程师

Bump the pinned Svelte version across the whole repo — pin, vendored `original/`, docs, README, playground import map — then regenerate expected outputs and run the checks. Manual launch only via `/update-svelte`.

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

Use when you have an ad-hoc Svelte component or `.svelte.js`/`.svelte.ts` module (pasted inline, scratch file, or a single existing file) and need a one-shot parity check against `svelte/compiler` without registering a persistent case.

2026-06-22
legacy-conventions
软件开发工程师

MUST consult before writing any code related to Svelte 4 legacy features. Contains mandatory naming conventions, doc-comment format, and isolation rules for legacy code. Use this skill whenever touching on:directive, bind:this legacy syntax, Svelte 4 deprecated features, code marked LEGACY(svelte4), or when porting/implementing any feature that has both a Svelte 5 and a Svelte 4 variant. Failure to follow these conventions creates tech debt that blocks future cleanup.

2026-03-28