Explore

Find agent skills by outcome

122,840 skills indexed with the new KISS metadata standard.

Showing 24 of 122,840Categories: Cursor-rules, Openclaw, General, Communication, Creative, Coding & Debugging, Research & Learning
General
PromptBeginner5 minmarkdown

- **Stuck / Hung Commands**: You can use the timeout setting when using a tool if you suspect it might hang. If you provide a `timeout` parameter

the tool will stop tracking the command after that duration and return the output collected so far.

0
General
PromptBeginner5 minmarkdown

- **Package validation:** If exports or public types change

also run the repository's package-validation scripts if they exist (for example package-json lint

0
General
PromptBeginner5 minmarkdown

- **Analysis:** Use `read_file`

`grep_search`

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Code Manipulation:** Read before editing

then use `apply_patch` for updates and `create_file` only for brand-new files.

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Always do things according to modern best practices and patterns. Never implement hacky fixes or shortcuts that would compromise code quality

maintainability

0
Coding & Debugging
PromptBeginner5 minmarkdown

- NEVER CHEAT or take shortcuts that would compromise code quality

maintainability

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Prioritize code quality

maintainability

0
General
PromptBeginner5 minmarkdown

- Avoid `any` type; use `unknown` with type guards

precise generics

0
General
PromptBeginner5 minmarkdown

- Deliver fixes that handle edge cases

include error handling

0
Creative
PromptBeginner5 minmarkdown

- Take the time needed for careful design

testing

0
General
PromptBeginner5 minmarkdown

- Follow current

supported patterns and best practices; propose migrations when older or deprecated approaches are encountered.

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Always prioritize code quality

maintainability

0
General
PromptBeginner5 minmarkdown

- Sometimes you may need to take other steps that aren't explicitly requests (running tests

checking for type errors

0
Coding & Debugging
PromptBeginner5 minmarkdown

- When finishing a task or request

review everything from the lens of code quality

0
General
PromptBeginner5 minmarkdown

- Break down PostCSS traversal logic into small

testable utility functions.

0
General
PromptBeginner5 minmarkdown

- **Error Handling:** When parsing weird syntax

fail gracefully. Do not crash the linter process.

0
General
PromptBeginner5 minmarkdown

- **Utility Usage:** Before writing a helper function

check whether the standard library

0
General
PromptBeginner5 minmarkdown

- **Custom Syntax Awareness:** When a rule depends on syntax that does not exist in plain CSS

scope it carefully and document the expected `customSyntax` or file context.

0
General
PromptBeginner5 minmarkdown

- **Fixers:** Only mark a rule as `meta.fixable = true` when the fix is deterministic and safe across supported syntaxes. If a fix is risky

report only.

0
General
PromptBeginner5 minmarkdown

3. Edge cases (nested rules

comments

0
General
PromptBeginner5 minmarkdown

- Use built-in TypeScript utility types first

and use installed utility-type libraries only when they clearly improve intent and match repository conventions.

0
General
PromptBeginner5 minmarkdown

- **AST Traversal:** Use the narrowest viable PostCSS walk (`walkDecls`

`walkRules`

0
General
PromptBeginner5 minmarkdown

- **Performance First:** Stylelint rules run on every save and often across large generated stylesheets. Avoid repeated whole-root rescans

repeated reparsing of selector/value strings

0
General
PromptBeginner5 minmarkdown

- `dist/`

coverage outputs

0